‎2008 Apr 12 6:17 AM
hello friends
i want to convert my date format
01.01.2008
INTO
January 01, 2008
how can i do this
hlep me
regards
‎2008 Apr 12 6:23 AM
do this way ..
DATA : V_DATE(12).
CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'
EXPORTING
INPUT = SY-DATUM
IMPORTING
OUTPUT = V_DATE.
WRITE : V_DATE.
‎2008 Apr 12 6:25 AM
Hi,
Use the FM : CONVERSION_EXIT_LDATE_OUTPUT
Usage:
DATA ldate(20).
CALL FUNCTION 'CONVERSION_EXIT_LDATE_OUTPUT'
EXPORTING
input = sy-datum
IMPORTING
OUTPUT = ldate.
Input : 20081212
output : 12.December.2008
reward if helpful
raam
‎2008 Apr 12 6:55 AM
Hi saathi,
Use table T247.
This gives the month number with text for every country's language.
Also FM :CALL FUNCTION 'CONVERSION_EXIT_IDATE_OUTPUT'
will need input : date (format YYMMDD)
output : 12 april 2008( DD-MM-YY)
Hope it helps
Regards,
Gayathri