LQLIBT04 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 LQLIBT04 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!
QLIB_LOT_SELECT CALL FUNCTION 'QLIB_LOT_SELECT' EXPORTING I_DATUV = %_II_DATUV I_EKORG = %_II_EKORG I_LIFNR = %_II_LIFNR I_HERKUNFT = %_II_HERKUNFT TABLES T_QSS_ML = %_OT_QSS_ML EXCEPTIONS NO_LOT_FOUND = 001.
QLIB_LOT_SELECT CALL FUNCTION 'QLIB_LOT_SELECT' DESTINATION DESTI EXPORTING I_DATUV = %_II_DATUV I_EKORG = %_II_EKORG I_LIFNR = %_II_LIFNR I_HERKUNFT = %_II_HERKUNFT TABLES T_QSS_ML = %_OT_QSS_ML EXCEPTIONS NO_LOT_FOUND = 001.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'I_DATUV' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_II_DATUV.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'I_EKORG' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_II_EKORG.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'I_LIFNR' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_II_LIFNR.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'I_HERKUNFT' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_II_HERKUNFT.
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'T_QSS_ML' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_IT_QSS_ML[].
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'T_QSS_ML' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_OT_QSS_ML[].
RS_COMPLEX_OBJECT_EDIT CALL FUNCTION 'RS_COMPLEX_OBJECT_EDIT' EXPORTING OBJECT_NAME = 'T_QSS_ML' MODE = P_MODE INSERT_TAB = 'X' UPPER_CASE = P_UPPER CHANGING OBJECT = %_VT_QSS_ML[].
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.