ROIHPLTR 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 ROIHPLTR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
O4J3 - Two Step Transfer Tracking Report
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: SO_WERKS = D .
Selection Text: SO_USNAM = D .
Selection Text: SO_TRKNR = D .
Selection Text: SO_MATNR = D .
Selection Text: SO_EXTNR = D .
Selection Text: SO_CPUDT = D .
Selection Text: PA_TRKJR = D .
Selection Text: PA_SORT = Sort list by material & plant
Selection Text: PA_ONLGR = Display only GR w/o GI
Selection Text: PA_NOOP = No records w/o movements
Selection Text: PA_NOGL = No records w/o gain or loss
Selection Text: PA_NOFTD = Closed Tracking Numbers only
Selection Text: PA_LOSS = Show only loss exceeding %
Selection Text: PA_GAIN = Show only gain exceeding %
Selection Text: PA_FTIND = Open Tracking Numbes only
Selection Text: PA_ALL = All Tracking Numbers
Title: Tracking Number Report
Text Symbol: 906 = Issue(+)/Receipt(-)
Text Symbol: 905 = Transport Order
Text Symbol: 904 = In-transit Qty
Text Symbol: 903 = Loss (-) Qty
Text Symbol: 902 = Gain (+) Qty
Text Symbol: 901 = Date of Creation
Text Symbol: 900 = Create by
Text Symbol: 400 = Search for transfer postings where only goods receipt has been posted
Text Symbol: 300 = Gain/loss percentage filter
Text Symbol: 200 = Selection of tracking records
Text Symbol: 100 = Restrictions for tracking record status
Text Symbol: 012 = Sum of Gain(+) and Loss(-) Quantity for Material :
Text Symbol: 011 = Total Gain(+) and Loss(-) for Material at all Receiving Plants
Text Symbol: 010 = at Plant :
Text Symbol: 009 = Sum of Gain(+) and Loss(-) Quantity :
Text Symbol: 008 = Total Gain and Loss for Material :
Text Symbol: 007 = * In Transit Quantity against Tracking Number =
Text Symbol: 006 = | Total per Tracking Number
Text Symbol: 005 = Material Number Receiving Plant Gain Handling
Text Symbol: 004 = Reference Number Unit of Measure Price Option Date of Creation
Text Symbol: 003 = Tracking Number Transfer Complete Transfer Sign Created by
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MIGO_DIALOG * CALL FUNCTION 'MIGO_DIALOG' * EXPORTING * i_action = 'A04' * i_refdoc = 'R02' * i_notree = 'X' * i_skip_first_screen = 'X' * i_deadend = 'X' * i_okcode = 'OK_GO' * i_new_rollarea = 'X' * i_mblnr = g_tritab-mblnr * i_mjahr = g_tritab-mjahr * EXCEPTIONS * illegal_combination = 1 * OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = iv_struc CHANGING ct_fieldcat = x_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING i_callback_program = lv_repid i_callback_pf_status_set = gc_pfstatus i_callback_user_command = gc_user_command is_layout = gs_layout it_fieldcat = gt_fcat it_events = gt_evnt i_tabname_header = gc_m_tab i_tabname_item = gc_s_tab is_keyinfo = gs_key is_print = gs_print it_sort = gt_sort TABLES t_outtab_header = gt_alv_m t_outtab_item = gt_alv_s EXCEPTIONS program_error = 1 OTHERS = 2.
MIGO_DIALOG CALL FUNCTION 'MIGO_DIALOG' EXPORTING i_action = 'A04' i_refdoc = 'R02' i_notree = 'X' i_skip_first_screen = 'X' i_deadend = 'X' i_okcode = 'OK_GO' i_new_rollarea = 'X' i_mblnr = lv_mblnr i_mjahr = lv_mjahr EXCEPTIONS illegal_combination = 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.