|
The space between the D and E should not matter - at least it doesn't for
me.
Anyway, Steve:
How you validate a date depends on what you have defined on the screen. If
it's a numeric field, you need to tell TEST(DE) what that format is. That
goes in factor 1.
This is how I validate an 8-digit numeric date (MMDDYYYY) on screen in a
service program I wrote (I'm testing for a range of yeas from 1900 to 2899
because we store our dates in 7 byte numeric fields, whose range is Jan. 1,
1900 to Dec. 31, 2899 - if you are storing dates in a native date field, you
don't need to have the year range check).
The field Date_Good is an indicator. Indate is an 8, 0 screen field.
Test(De) *USA Indate;
If Not %ERROR And (%SUBDT(%DATE(Indate:*USA):*YEARS) < 1900 Or
%SUBDT(%DATE(Indate:*USA):*YEARS) > 2899);
Date_Good = *OFF;
Else;
Date_Good = (Not %ERROR);
Endif;
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of RPower@xxxxxxxxxx
Sent: Friday, March 17, 2006 8:14 AM
To: RPG programming on the AS400 / iSeries
Subject: Re: date & Test still not working
Remove the space between the d and e.. ie: test(de)
Ron Power
Programmer
Information Services
City Of St. John's, NL
P.O. Box 908
St. John's, NL
A1C 5M2
709-576-8132
rpower@xxxxxxxxxx
http://www.stjohns.ca/
___________________________________________________________________________
Success is going from failure to failure without a loss of enthusiasm. - Sir
Winston Churchill
steema@xxxxxxxxxxxxx
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
2006/03/17 10:14 AM
Please respond to
RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx>
To
"RPG programming on the AS400 / iSeries" <rpg400-l@xxxxxxxxxxxx>
cc
Subject
Re: date & Test still not working
I am trying to do a simple date check. but it won't compile.
038300 c move datef datefield
038400 c test (D E) datefield --22--
======> a
*RNF5055 20 a 038400 The E operation extender cannot be specified
when a
indicator is specified.
038500 c eval *in22 = *on
038600 c
038700 c iter
More...
> Earlier this week, I was asking about date validity, I was given several
> suggestions on use of TEST but none seem to work, that is the program
> won't compile.
>
> I simply want to move my screen date field into D spec defined field
> called Datefield and have that field TESTed. So what is my C spec to
look
> like?
>
> Thank you,
> Steve
> --
> This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing
list
> To post a message email: RPG400-L@xxxxxxxxxxxx
> To subscribe, unsubscribe, or change list options,
> visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
> or email: RPG400-L-request@xxxxxxxxxxxx
> Before posting, please take a moment to review the archives
> at http://archive.midrange.com/rpg400-l.
>
>
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.