RSVARDYN is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report converts report-specific selections in variants to dynamic selections...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSVARDYN into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: REP_NAME = Program Name
Selection Text: VAR_NAME = Variants
Title: ABAP/4 Variants: Report Selections -> Dynamic Selections
Text Symbol: 001 = Dynamic selections for
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_SELSCREEN_EXISTS CALL FUNCTION 'RS_SELSCREEN_EXISTS' EXPORTING REPORT = REP_NAME IMPORTING ANSWER = I_ANSWER.
RS_VARIANT_CONVERT_TO_DYNAMIC CALL FUNCTION 'RS_VARIANT_CONVERT_TO_DYNAMIC' EXPORTING CURR_REPORT = REP_NAME TABLES VARIANT_NAMES = VAR_NAME.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.