SDPACKDR 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 SDPACKDR 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.
Title: Label Printing for Packages
INCLUDE PALIDATA.
INCLUDE RVADTABL.
INCLUDE RVADOPFO.
No SAP DATABASE tables are accessed within this REPORT code!
SD_PACKING_PRINT_VIEW_SINGLE CALL FUNCTION 'SD_PACKING_PRINT_VIEW_SINGLE' EXPORTING COMWA = VBCO3 IMPORTING VBPLK_WA = LVBPLK VBPLA_WA = LVBPLA VBADR_TVST = LVBADR "n_916660 TABLES VBPLP_TAB = LVBPLP EXCEPTIONS SHIPPING_UNIT_NOT_UNIQUE = 1 SHIPPING_UNIT_NOT_FOUND = 2 OTHERS = 3 .
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING ELEMENT = 'DUMMY' EXCEPTIONS OTHERS = 1.
CLOSE_FORM CALL FUNCTION 'CLOSE_FORM' EXCEPTIONS OTHERS = 1.
NAST_PROTOCOL_UPDATE CALL FUNCTION 'NAST_PROTOCOL_UPDATE' EXPORTING MSG_ARBGB = SY-MSGID MSG_NR = SY-MSGNO MSG_TY = SY-MSGTY MSG_V1 = SY-MSGV1 MSG_V2 = SY-MSGV2 MSG_V3 = SY-MSGV3 MSG_V4 = SY-MSGV4 EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.