ROIGMM00 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 ROIGMM00 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
O4M5 - Vehicle Meter Reconciliation
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: VARIANT = D Variant name
Selection Text: P_TIME = Time to
Selection Text: P_RTIME = D Meter Rec. Time
Selection Text: P_RDATE = D Meter Rec. Date
Selection Text: MODE =
Selection Text: K_TUNR = D Transport unit
Selection Text: K_SEQNR = D Meter Seq.Number
Selection Text: K_METNR = D Vehicle Meter
Selection Text: K_DATE = D Date
Title: Vehicle Meter Reconciliation
Text Symbol: T14 = M
Text Symbol: T15 = S
Text Symbol: T16 = Shipment
Text Symbol: T17 = Rec. Date
Text Symbol: T18 = Rec. Time
Text Symbol: U01 = Selected Meters:
Text Symbol: U02 = Period:
Text Symbol: U03 = to
Text Symbol: U04 = of
Text Symbol: U05 = Reconciliation successfull
Text Symbol: U06 = No records for reconciliation !
Text Symbol: U07 = Reconciliation failed -> Error
Text Symbol: V01 = Meter Readings
Text Symbol: V02 = Meter Readings Differences
Text Symbol: V03 = Protocol
Text Symbol: T13 = Quantity
Text Symbol: M01 = proposed Reconciliation Date/Time changed to
Text Symbol: M02 = No Reconciliation possible: Meter only saved - not confirmed!
Text Symbol: R01 = Reconciliation Old:
Text Symbol: R02 = New:
Text Symbol: R03 = Meter:
Text Symbol: R04 = TU:
Text Symbol: R05 = UoM:
Text Symbol: R10 = Total Quantity
Text Symbol: R11 = Total Difference
Text Symbol: S01 = Meter
Text Symbol: S02 = Assignment
Text Symbol: S03 = Period
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
OIL_LAST_DAY_OF_PREVIOUS_MONTH CALL FUNCTION 'OIL_LAST_DAY_OF_PREVIOUS_MONTH' EXPORTING i_date_old = sy-datum IMPORTING e_date_new = sel-rec_date.
FLTP_CHAR_CONVERSION CALL FUNCTION 'FLTP_CHAR_CONVERSION' EXPORTING decim = pi_decs expon = 0 input = pi_quantity ivalu = true * MASKN = ' ' IMPORTING flstr = po_quantity_c.
OIL_LAST_DAY_OF_PREVIOUS_MONTH CALL FUNCTION 'OIL_LAST_DAY_OF_PREVIOUS_MONTH' EXPORTING i_date_old = sy-datum IMPORTING e_date_new = g_meter_tab-rec_date_n.
GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' EXPORTING tabname = table_name IMPORTING rc = rc_subrc TABLES fieldtab = fieldtab.
GET_PRINT_PARAMETERS * CALL FUNCTION 'GET_PRINT_PARAMETERS' * EXPORTING * line_size = line_size * layout = ld_layout * IMPORTING * out_parameters = ld_params * out_archive_parameters = ld_arparams * valid = ld_valid.
DEQUEUE_E_OIGCM CALL FUNCTION 'DEQUEUE_E_OIGCM' EXPORTING tu_metnmbr = g_meter_tab-tu_metnmbr.
ENQUEUE_E_OIGCM CALL FUNCTION 'ENQUEUE_E_OIGCM' EXPORTING tu_metnmbr = u_oigcmh_tab-tu_metnmbr.
OIGCM_H_UPDATE * call function 'OIGCM_H_UPDATE' in update task * exporting l_date = l_date * l_time = l_time * tables u_oigcmh_tab = u_oigcmh_tab.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_bypassing_buffer = abap_true "Prevents Buffering i_buffer_active = abap_false i_callback_program = gv_repid is_layout = ls_layo it_fieldcat = gt_fcat it_events = lt_evts is_print = ls_print i_suppress_empty_data = lv_suppress TABLES t_outtab = gt_oigcmh_temp EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gv_repid i_structure_name = gc_oigcmh i_bypassing_buffer = abap_true CHANGING ct_fieldcat = ct_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.