‎2007 Mar 15 4:39 PM
Hi all,
How can i format a date field of length 8 to user profile formats such as
(mm-dd-yyyy)
i am using BDC and i have to populate a standard date field in this format.
Please guide me.
Thank U..
Helpful answers will be rewarded...
‎2007 Mar 15 4:42 PM
Hi,
Use the WRITE statement..
DATA: V_CHAR(10).
WRITE SY-DATUM TO V_CHAR.
Thanks,
Naren
‎2007 Mar 15 4:42 PM
Hi,
Use the WRITE statement..
DATA: V_CHAR(10).
WRITE SY-DATUM TO V_CHAR.
Thanks,
Naren
‎2007 Mar 15 4:46 PM
see the system uses date in internal foramt like YYYYMMDD
this assignment is enough .
so u can assign the date
data : date like sy-datum ,
input_Date like sy-datum.
date = input_date.substitute this date to the screen field , this will do .
regards,
vijay