cancel
Showing results for 
Search instead for 
Did you mean: 

smartforms

Former Member
0 Kudos

hi!

pls any one answer my question.

which function module is used to display "10th OCTOBER2007" from the format

10102007 or jutst get atleast "october2007"

thanks..

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

DATA : V_DATE(12).

CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'

EXPORTING

INPUT = SY-DATUM

IMPORTING

OUTPUT = V_DATE.

WRITE : V_DATE.

regards,

Omkar.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

USe the FM MONTH_NAMES_GET

Regards,

Former Member
0 Kudos

You can turn month number into the (language specific) month name using table T015M.

Regards,

Nick