ROIGFQS1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report deletes shipment cost documents if the document item quantity assignments are missing for the appropriate shpiment...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter ROIGFQS1 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.
Selection Text: MTEST = Test mode - no DB update
Selection Text: SFKNUM = Shipment cost number
Title: TD-F Repair report for SCD's created from TD shipments
Text Symbol: 001 = No shipment cost documents specified
Text Symbol: 002 = No shipment cost document selected
Text Symbol: 003 = SCD no.
Text Symbol: 004 = : Error at reading
Text Symbol: 005 = : ok
Text Symbol: 006 = : missing doc. item qty assign. - no DB update
Text Symbol: 007 = : Error at locking
Text Symbol: 008 = : Error at reading
Text Symbol: 009 = : Can not be deleted
Text Symbol: 010 = : Error at update
Text Symbol: 011 = : Deleted
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SD_SCD_VIEW CALL FUNCTION 'SD_SCD_VIEW' EXPORTING I_FKNUM = G_VFKK_TAB-FKNUM I_T180 = L_T180 I_LANGU = SY-LANGU I_OPT_AUTH_CHECK = ' ' I_OPT_TVTFT = ' ' I_OPT_REFOBJ = 'X' I_OPT_REFOBJ_LOCK = 'X' * importing * e_tvtft = CHANGING C_SCD = L_SCD_WA C_REFOBJ_TAB = L_SHP_TAB EXCEPTIONS SCD_NOT_FOUND = 1 * no_authority = 2 TVTF_TYPE_NOT_VALID = 3 * tvft_type_not_valid = 4 * refobj_lock = 5 * refobj_not_found = 6 * delivery_missing = 7 ERROR_MESSAGE = 98 OTHERS = 99.
SD_SCD_DELETE CALL FUNCTION 'SD_SCD_DELETE' CHANGING C_SCD_WA = L_SCD_WA EXCEPTIONS ITEM_NOT_DELETABLE = 1 SCD_NOT_DELETABLE = 2 OTHERS = 3.
SD_SCD_CHANGE CALL FUNCTION 'SD_SCD_CHANGE' CHANGING C_SCD_WA = L_SCD_WA C_SCD_TAB = L_SCD_TAB.
SD_SCDS_SAVE CALL FUNCTION 'SD_SCDS_SAVE' EXPORTING I_T180 = L_T180 I_OPT_UPDATE_TASK = 'X' I_REFOBJ_TAB = L_SHP_TAB CHANGING C_SCD_TAB = L_SCD_TAB EXCEPTIONS NO_CHANGE = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
ROIGFQS1 - TD-F Repair report for SCD's created from TD shipments ROIGFQS1 - TD-F Repair report for SCD's created from TD shipments ROIGFQS0 - TD Check shipment costing relevant tables ROIGFQS0 - TD Check shipment costing relevant tables ROIGDISPCH - Display Vehicle Changes (TD shipment) ROIGDISPCH - Display Vehicle Changes (TD shipment)