PPIOBA02 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 PPIOBA02 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: Form Routines: Process Components
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CO_WB_STOCK_DETERMINATION CALL FUNCTION 'CO_WB_STOCK_DETERMINATION' EXPORTING i_operation = lv_operation i_flg_no_dialog = space TABLES t_comp = tmp_comp_tab t_key_stock = lt_key_stock_batch.
CO_WB_BATCH_DETERMINATION CALL FUNCTION 'CO_WB_BATCH_DETERMINATION' EXPORTING i_operation = lv_operation i_flg_no_dialog = 'X' TABLES t_comp = tmp_comp_tab t_key_batch = lt_key_stock_batch.
CO_WB_DATA_RESET CALL FUNCTION 'CO_WB_DATA_RESET'.
MATERIAL_UNIT_CONVERSION CALL FUNCTION 'MATERIAL_UNIT_CONVERSION' EXPORTING input = lt_bdbatch-erfmg kzmeinh = yx matnr = lt_bdbatch-matnr meinh = lt_bdbatch-erfme meins = lt_bdbatch-meins IMPORTING output = l_menge EXCEPTIONS conversion_not_found = 1 input_invalid = 2 material_not_found = 3 meinh_not_found = 4 meins_missing = 5 no_meinh = 6 output_invalid = 7 overflow = 8 OTHERS = 9.
BF_SET_LOC_ENQ_TAB CALL FUNCTION 'BF_SET_LOC_ENQ_TAB' EXPORTING vbeln = tmp_comp_tab-kdauf posnr = tmp_comp_tab-kdpos pspnr = tmp_comp_tab-ps_psp_pnr TABLES l_bdbatch = lt_bdbatch.
CO_WB_MAINTAIN_GOODS_MOVEMENTS CALL FUNCTION 'CO_WB_MAINTAIN_GOODS_MOVEMENTS' TABLES t_comp_tab = tmp_comp_tab CHANGING c_control = tmp_control EXCEPTIONS OTHERS = 0.
BF_RESET_LOC_ENQ_TAB CALL FUNCTION 'BF_RESET_LOC_ENQ_TAB'.
POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING titel = text-020 "Daten können verloren gehen textline1 = text-021 "Möchten Sie die Bearbeitung textline2 = text-022 "wirklich abbrechen.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING diagnosetext1 = text-002 "Eine Kommissionierliste diagnosetext2 = text-003 "wurde erstellt.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.