Hi ., can anyone tell me how to select Month in the selection screen.
POPUP_TO_SELECT_MONTH is displaying both <b>month</b> and the <b>year</b> in the selection-screen.
but i want only month to be displayed in the selection-screen. i.e., like October, december...
my code is like this
parameters : s_month like isellist-month.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_MONTH.
CALL FUNCTION 'POPUP_TO_SELECT_MONTH'
EXPORTING
ACTUAL_MONTH = '200510'
FACTORY_CALENDAR = ''
HOLIDAY_CALENDAR = ' '
LANGUAGE = SY-LANGU
START_COLUMN = 8
START_ROW = 5
IMPORTING
SELECTED_MONTH = S_MONTH
RETURN_CODE = S_CODE