BSHOWF01_ALV is a standard ABAP INCLUDE 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 BSHOWF01_ALV 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REPL_LIST_HEADS_READ CALL FUNCTION 'REPL_LIST_HEADS_READ' EXPORTING PI_DATE_BEGIN = SO_DATE-LOW PI_DATE_END = SO_DATE-HIGH PI_LAST_INCL = P_LASTV TABLES PE_T_WBBH = G_T_WBBH PI_SO_STORE = SO_STORE PI_SO_BBTYP = SO_BBTYP PI_SO_VKORG = SO_VKORG PI_SO_VTWEG = SO_VTWEG.
REPL_LIST_GROUP_READ CALL FUNCTION 'REPL_LIST_GROUP_READ' TABLES PI_T_WBBH = G_T_WBBH PE_T_WBBL = G_T_WBBL EXCEPTIONS NO_GROUPS = 01.
ASL_MIX_VERSION_POSITIONS_GET CALL FUNCTION 'ASL_MIX_VERSION_POSITIONS_GET' TABLES PI_T_WBBL = PI_T_WBBL PE_T_WBBP_MIX = PI_T_WBBP.
REPL_LIST_DISPLAY_ALV CALL FUNCTION 'REPL_LIST_DISPLAY_ALV' EXPORTING PI_INCL_HEADER = PI_INCL_HEADER PI_READ_POSITIONS = PE_READ_POS IMPORTING PE_OK_CODE = PI_OK_CODE TABLES PI_T_WBBH = PI_T_WBBH PI_T_WBBL = PI_T_WBBL PI_T_WBBP = PI_T_WBBP.
ASL_TREE_MIX_VERSION_INSERT CALL FUNCTION 'ASL_TREE_MIX_VERSION_INSERT' EXPORTING PI_LOCNR = PI_I_CNODE-LOCNR PI_BBTYP = PI_I_CNODE-BBTYP IMPORTING PE_I_WBBH_MIX = PI_I_WBBH_MIX TABLES PE_T_NODES = PE_T_NODES PE_T_WBBL_MIX = PI_T_WBBL_MIX EXCEPTIONS NO_VERSION = 1 OTHERS = 2.
ASSORT_LIST_VERSIONS_MIX_SAVE CALL FUNCTION 'ASSORT_LIST_VERSIONS_MIX_SAVE' EXPORTING PI_LOCNR = PI_I_CNODE-LOCNR PI_BBTYP = PI_I_CNODE-BBTYP IMPORTING PE_I_WBBH = PI_I_WBBH EXCEPTIONS NO_VERSION = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.