LF80TT07 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 LF80TT07 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!
PRUEFEN_STEUER_STANDORT CALL FUNCTION 'PRUEFEN_STEUER_STANDORT' EXPORTING BUKRS = %_IBUKRS LAND = %_ILAND TXJCD = %_ITXJCD IMPORTING K_SCHEMA = %_OK_SCHEMA STANDORT_OK = %_OSTANDORT_OK STANDORT_TEXT = %_OSTANDORT_TEXT EXCEPTIONS LAND_BUKRS_NOT_COMPATIBLE = 001 NO_KALSM_FOUND = 002 KALSM_HAS_NO_TXJCD = 003.
PRUEFEN_STEUER_STANDORT CALL FUNCTION 'PRUEFEN_STEUER_STANDORT' DESTINATION DESTI EXPORTING BUKRS = %_IBUKRS LAND = %_ILAND TXJCD = %_ITXJCD IMPORTING K_SCHEMA = %_OK_SCHEMA STANDORT_OK = %_OSTANDORT_OK STANDORT_TEXT = %_OSTANDORT_TEXT EXCEPTIONS LAND_BUKRS_NOT_COMPATIBLE = 001 NO_KALSM_FOUND = 002 KALSM_HAS_NO_TXJCD = 003.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'BUKRS' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_IBUKRS.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'LAND' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_ILAND.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'TXJCD' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_ITXJCD.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'K_SCHEMA' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_OK_SCHEMA.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'K_SCHEMA' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_VK_SCHEMA.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'STANDORT_OK' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_OSTANDORT_OK.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'STANDORT_OK' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_VSTANDORT_OK.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'STANDORT_TEXT' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_OSTANDORT_TEXT.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'STANDORT_TEXT' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_VSTANDORT_TEXT.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.