ROIGMASS 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 ROIGMASS 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: Include ROIGMASS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
OIGI_DELETE_SHIPMENT_RFC CALL FUNCTION 'OIGI_DELETE_SHIPMENT_RFC' EXPORTING PI_SHIPMENT_NUMBER = l_number_selected_shipment PI_NO_COMMIT = TRUE.
OIGI_CHANGE_SHIPMENT_RFC CALL FUNCTION 'OIGI_CHANGE_SHIPMENT_RFC' EXPORTING PI_OIGIS = L_OIGIS PI_CONFIRM = L_CONFIRM PI_NO_COMMIT = TRUE "do NOT commit work PI_LEAVE_TRS = L_LEAVE_TRS IMPORTING PO_SHNUMBER = l_number_selected_shipment TABLES PI_OIGISV = L_OIGISV PI_OIGISVD = L_OIGISVD PI_OIGISI = L_OIGISI PI_OIGISIQ = L_OIGISIQ PI_OIGISVMQ = L_OIGISVMQ PI_OIGISE = L_OIGISE PI_OIGISET = L_OIGISET EXCEPTIONS NOT_CALLED_FOR_CHANGE = 1 ERROR_MESSAGE = 99 OTHERS = 2.
OIGI_LOADING_CREATE CALL FUNCTION 'OIGI_LOADING_CREATE' EXPORTING I_SUBRC = 20 "save,confirm,commit 2step only I_SHNUMBER = l_number_selected_shipment I_VEHICLE = IT_LOADING_HEADER-VEHICLE I_LDPLT = IT_LOADING_HEADER-LDPLT I_LDDATE = IT_LOADING_HEADER-LDDATE I_LDTIME = IT_LOADING_HEADER-LDTIME I_LDCDAT = IT_LOADING_HEADER-LDCDAT I_LOAD_AS_SCHEDULED = IT_LOADING_HEADER-LOAD_AS_SCHEDULED I_VEH_NR = IT_LOADING_HEADER-VEH_NR I_ROLLBACK = TRUE IMPORTING O_SUBRC = L_SUBRC TABLES T_OIGISVMQ = IT_OIGISVMQ T_OIGISVMQ2 = IT_OIGISVMQ2 EXCEPTIONS ERROR_MESSAGE = 99.
OIGI_DEL_CONF_CREATE CALL FUNCTION 'OIGI_DEL_CONF_CREATE' EXPORTING I_SUBRC = 10 "save, confirm, NO commit I_SHNUMBER = l_number_selected_shipment I_VEHICLE = IT_DELIVERY_HEADER-VEHICLE I_DLDATE = IT_DELIVERY_HEADER-DLDATE I_DLTIME = IT_DELIVERY_HEADER-DLTIME I_DDCDAT = IT_DELIVERY_HEADER-DDCDAT I_RAPID_CONFIRM = IT_DELIVERY_HEADER-RAPID_CONFIRM I_VEH_NR = IT_DELIVERY_HEADER-VEH_NR I_PART_DC = IT_DELIVERY_HEADER-PART_DC I_VCLOSE = IT_DELIVERY_HEADER-VCLOSE I_GLPST = IT_DELIVERY_HEADER-GLPST I_RC_MGAIN = IT_DELIVERY_HEADER-RC_MGAIN I_RC_MLOSS = IT_DELIVERY_HEADER-RC_MLOSS I_RC_VGAIN = IT_DELIVERY_HEADER-RC_VGAIN I_RC_VLOSS = IT_DELIVERY_HEADER-RC_VLOSS I_ROLLBACK = TRUE IMPORTING O_SUBRC = L_SUBRC TABLES T_OIGISVMQ = IT_OIGISVMQ T_OIGISVMQ2 = IT_OIGISVMQ2 EXCEPTIONS ERROR_MESSAGE = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.