Google Search - Blog...........

ABAP - Function Module To Find The Week Days - 'WEEKDAY_GET'.

report .

data:WEEKDAY type T246 .


parameters:p_test type sy-subrc .

data: it_WEEKDAY type t246 occurs 0 with header line .

CALL FUNCTION 'WEEKDAY_GET'
EXPORTING
LANGUAGE = SY-LANGU
IMPORTING
RETURN_CODE = p_test
TABLES
weekday = it_WEEKDAY .

write:/ it_weekday-LANGT .

No comments:

Post a Comment