Description
Returns the Gregorian/common date for the supplied JD Edwards-formatted date.
The JD Edwards "Julian" date format stores dates in a string field (5 or 6 characters, depending on the year) in the format (Y)YYDDD:
So, July 4, 2010 (07/04/2010) is represented in JDE format as 110185.
Syntax
JULIANDATEJDE2DATE ( julian_date_jde )
Parameter | Description |
---|---|
julian_date_jde | The JDE-formatted date to be converted to common date format. |
Examples
The following function returns the common date for the JDE-formatted date 110183 as "07/02/2010":
JULIANDATEJDE2DATE (110183)
To return the JDE-formatted date stored in source field S9, enter the function as:
JULIANDATEJDE2DATE( S9 )
See also