Hi,
is there a function module which will display the data selected in the selection screen on the list output?....I mean
in the selection screen
Company code = 1000
contract = 6
the above selections are made.
-
in the list op
company code 1000.
contract 6
should be displayed.
i am looking for the FM because there are many fields of the screen selection which needs to be displayed in my requirement.
Please help. Thanx in advance.
I dont think there is any FM module for your requirement, write your custom code for that.
hi Pramod,
Check <b>RS_COVERPAGE_SELECTIONS</b>
CALL FUNCTION 'RS_COVERPAGE_SELECTIONS' EXPORTING REPORT = V_REPID VARIANT = SY-SLSET * NO_IMPORT = ' ' TABLES INFOTAB = INFOTAB * EXCEPTIONS * ERROR_MESSAGE = 1 * VARIANT_NOT_FOUND = 2 * OTHERS = 3 . IF SY-SUBRC <> 0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF.
Regards,
Santosh
Message was edited by:
Santosh Kumar Patha
Use RS_REFRESH_FROM_SELECTOPTIONS to get your selection and build your header in top of page processing
regards.
Add a comment