PPIOB000 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 PPIOB000 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: Order Info System: Picking Report
Text Symbol: 001 = Confirmation prompt
Text Symbol: 002 = A picking list
Text Symbol: 003 = was created.
Text Symbol: 004 = Do you want to pick components?
Text Symbol: 006 = Post goods movements
Text Symbol: 010 = Goods movements with errors
Text Symbol: 011 = Incorrect goods movements can be
Text Symbol: 012 = corrected, in any case
Text Symbol: 013 = they are not booked
Text Symbol: 014 = Do you want to correct the errors?
Text Symbol: 020 = You may lose your data.
Text Symbol: 021 = Do you want to
Text Symbol: 022 = cancel configuration?
Text Symbol: 025 = Reservations are partially locked
Text Symbol: 026 = Some of the selected
Text Symbol: 027 = reservations are locked.
Text Symbol: 028 = Do you want to pick
Text Symbol: 029 = the remaining reservations?
Text Symbol: KBA = Picking list for batch
Text Symbol: KOM = Picking list
Text Symbol: MIS = Pick list: Wrong components
INCLUDE PPIOBTOP.
INCLUDE LCOBADICON.
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-006. " Warenbewegung buchen
V51S_HU_LGORT CALL FUNCTION 'V51S_HU_LGORT' EXPORTING if_lgort = tmp_comp_tab-lgort if_werks = tmp_comp_tab-werks IMPORTING ef_hu_managed = l_flg_hupf EXCEPTIONS lgort_not_exist = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = space.
CM_F_INITIALIZE CALL FUNCTION 'CM_F_INITIALIZE' EXPORTING aplid = 'PPCO' EXCEPTIONS message_type_not_valid = 01 unknown_aplid = 02 unknown_object_id = 03.
CO_BT_RESB_READ_WITH_KEY CALL FUNCTION 'CO_BT_RESB_READ_WITH_KEY' EXPORTING rsart_imp = imseg_tab-rsart rsnum_imp = imseg_tab-rsnum rspos_imp = imseg_tab-rspos no_read_from_db = yx IMPORTING resbd_exp = ls_resbd EXCEPTIONS OTHERS = 1.
CM_F_MESSAGE CALL FUNCTION 'CM_F_MESSAGE' EXPORTING append_same_msg = yx arbgb = 'RU' msgnr = '119' msgty = 'I' msgv1 = imseg_tab-matnr msgv2 = imseg_tab-aufnr msgv3 = ls_resbd-posnr EXCEPTIONS mesage_type_not_valid = 01 no_sy_message = 02.
CM_F_MESSAGE CALL FUNCTION 'CM_F_MESSAGE' EXPORTING append_same_msg = yx arbgb = emseg_tab-msgid msgnr = emseg_tab-msgno msgty = emseg_tab-msgty msgv1 = emseg_tab-msgv1 msgv2 = emseg_tab-msgv2 msgv3 = emseg_tab-msgv3 msgv4 = emseg_tab-msgv4 EXCEPTIONS mesage_type_not_valid = 0 no_sy_message = 0.
CM_F_ANALYSIS CALL FUNCTION 'CM_F_ANALYSIS' EXPORTING aplid = 'PPCO' headline = text-010 EXCEPTIONS not_active = 0.
CM_F_INITIALIZE CALL FUNCTION 'CM_F_INITIALIZE' EXPORTING aplid = 'PPCO' msg_on_screen = yx EXCEPTIONS message_type_not_valid = 0 unknown_aplid = 0 unknown_object_id = 0 OTHERS = 0.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING diagnosetext1 = text-011 diagnosetext2 = text-012 diagnosetext3 = text-013 textline1 = text-014 titel = text-010 IMPORTING answer = antwort.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-006. "Warenbewegung buchen
V51S_HU_LGORT CALL FUNCTION 'V51S_HU_LGORT' EXPORTING if_lgort = tmp_comp_tab-lgort if_werks = tmp_comp_tab-werks IMPORTING ef_hu_managed = l_flg_hupf EXCEPTIONS lgort_not_exist = 1 OTHERS = 2.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = space.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.