RSNAST0D is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RSNAST0D 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: P_DIALOG = Overview list
Selection Text: P_GRID = Display using Grid Control
Selection Text: P_MODE = Selection type
Selection Text: S_KAPPL = Application
Selection Text: S_KSCHL = Output type
Selection Text: S_NACHA = Transmission medium
Selection Text: S_OBJKY = Object key
Title: Generic output issue
Text Symbol: 001 = Selection criteria
Text Symbol: 002 = Parameter for calling up the processing programs
Text Symbol: 003 = Editing options
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
WFMC_MESSAGES_SELECT_ALL_FALSE CALL FUNCTION 'WFMC_MESSAGES_SELECT_ALL_FALSE' EXPORTING PI_APPLICATION = ' ' pi_vsztp = ' ' TABLES ri_medium = S_NACHA ri_type = S_KSCHL ri_object = S_OBJKY tx_messages = GT_MSG RI_APPLICATION = S_KAPPL.
WFMC_MESSAGES_SELECT CALL FUNCTION 'WFMC_MESSAGES_SELECT' EXPORTING PI_PROCESSING = P_MODE PI_PRINTER = P_PRINT TABLES RI_MEDIUM = S_NACHA RI_TYPE = S_KSCHL RI_OBJECT = S_OBJKY RI_APPLICATION = S_KAPPL TX_MESSAGES = GT_MSG .
WFMC_MESSAGES_PROCESS CALL FUNCTION 'WFMC_MESSAGES_PROCESS' EXPORTING PI_DISPLAY_ID = 'NALIGENERIC_1st' PI_NO_DIALOG = P_DIALOG PI_VERMO = P_MODE * PI_NO_COMMIT = ' ' * PI_NO_ENQUEUE = ' ' PI_USE_GRID_CONTROL = p_grid TABLES TX_MESSAGES = GT_MSG TX_DISPLAY = GT_DISP1 .
WFMC_MESSAGES_PROCESS CALL FUNCTION 'WFMC_MESSAGES_PROCESS' EXPORTING PI_DISPLAY_ID = 'NALIGENERIC' PI_NO_DIALOG = P_DIALOG pi_Vermo = p_mode * PI_NO_COMMIT = ' ' * PI_NO_ENQUEUE = ' ' PI_USE_GRID_CONTROL = p_grid TABLES TX_MESSAGES = GT_MSG TX_DISPLAY = GT_DISP .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.