RIDEPLOT_DIS01 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 RIDEPLOT_DIS01 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: SO_VKONT = D .
Selection Text: SO_OPBEL = D .
Selection Text: SO_KEYZ1 = D .
Selection Text: SO_GPART = D .
Selection Text: SO_DRBEL = D .
Selection Text: SO_BUDAT = D .
Selection Text: SO_BCBLN = D .
Selection Text: SO_AGGBU = D .
Selection Text: P_XPRDC = D .
Selection Text: P_SP = D .
Selection Text: P_LAYO = D .
Selection Text: P_FSP = D .
Selection Text: SO_VKAGG = Aggregated Contract Account
Selection Text: SO_AZBEL = Aggregated Payment Document
Title: Evaluation of Distribution Lot
Text Symbol: 010 = Select Print Document
Text Symbol: 006 = Function Not Released
Text Symbol: 005 = Layout
Text Symbol: 004 = Distribution Lots Are Selected
Text Symbol: 003 = End Customer Level
Text Symbol: 002 = Aggregated Level
Text Symbol: 001 = General Selections
INCLUDE RIDEPLOT_DIS01_TOP . " GLOBAL DATA
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 20 text = text-004.
ISU_CONVERT_SERVICEID_10_TO_40 CALL FUNCTION 'ISU_CONVERT_SERVICEID_10_TO_40' EXPORTING i_recid_10 = lt_fa_sp[] i_senid_10 = lt_sp[] IMPORTING e_recid_40 = gt_recid_40[] e_senid_40 = gt_senid_40[].
ISU_DB_DIST_LOT_READ CALL FUNCTION 'ISU_DB_DIST_LOT_READ' EXPORTING i_sp = gt_senid_40[] i_fa_sp = gt_recid_40[] i_bcbln = so_bcbln[] i_azbel = so_azbel[] i_drbel = so_drbel[] i_vkagg = so_vkagg[] i_aggbu = so_aggbu[] i_opbel = so_opbel[] i_vkont = so_vkont[] i_gpart = so_gpart[] i_budat = so_budat[] i_keyz1 = so_keyz1[] x_proof_selection = co_true x_printdoc = p_xprdc IMPORTING e_dist_lot_head = lt_dist_lot_head e_dist_lot_pos = lt_dist_lot_pos EXCEPTIONS invalid_selection = 1 no_selection_criteria = 2 OTHERS = 3.
ISU_DISPLAY_DIST_LOT CALL FUNCTION 'ISU_DISPLAY_DIST_LOT' EXPORTING i_dist_lot_head = lt_dist_lot_head i_dist_lot_pos = lt_dist_lot_pos i_layout = p_layo.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.