‎2008 Feb 26 6:41 AM
How is the date stored in SAP?
YYYYMMDD or DDMMYYYY.
thanks in advance.
‎2008 Feb 26 6:43 AM
hi,
YYYYMMDD only it stores.. if u go in debugging mode u can find that..
reward if useful
regards
karthik.T
‎2008 Feb 26 6:43 AM
hi,
YYYYMMDD only it stores.. if u go in debugging mode u can find that..
reward if useful
regards
karthik.T
‎2008 Feb 26 6:43 AM
Hello Sreenivasa Moorthy,
In SAP, Date will get stored in the format of YYYYMMDD, but while displaying it will be like DDMMYYYY.
You can see the YYYYMMDD format while debugging a report.
Regards
--
Sasidhar Reddy Matli.
‎2008 Feb 26 6:45 AM
‎2008 Feb 26 6:45 AM
Hi,
In YYYYMMDD format
Use the FM : CONVERSION_EXIT_LDATE_OUTPUT to convert the date as desired
Usage:
DATA ldate(20).
CALL FUNCTION 'CONVERSION_EXIT_LDATE_OUTPUT'
EXPORTING
input = sy-datum
IMPORTING
OUTPUT = ldate.
Input : 20080208
output : 08.February2008
Cheers,
Remi
‎2008 Feb 26 6:47 AM
Hi Srinivasa,
SAP stores date in the YYYYMMDD format. But this can be changed in the user masters record.
Edited by: p347633 on Feb 26, 2008 7:47 AM
Edited by: p347633 on Feb 26, 2008 7:48 AM