SAP OIB_QCI_GET_UOM_DATA_RFC Function Module for Retrieve T006 data for external applications









OIB_QCI_GET_UOM_DATA_RFC is a standard oib qci get uom data rfc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Retrieve T006 data for external applications processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for oib qci get uom data rfc FM, simply by entering the name OIB_QCI_GET_UOM_DATA_RFC into the relevant SAP transaction such as SE37 or SE38.

Function Group: OIB_QCI_SERVICES_RFC
Program Name: SAPLOIB_QCI_SERVICES_RFC
Main Program: SAPLOIB_QCI_SERVICES_RFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function OIB_QCI_GET_UOM_DATA_RFC pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'OIB_QCI_GET_UOM_DATA_RFC'"Retrieve T006 data for external applications
EXPORTING
LANGUAGE = "SAP System, current language

TABLES
T_UNITS = "Units of Measurement
T_UNITS_PRESSURE = "Structure for external applications (QCI_SIMPLE): unit text
T_UNITS_DENSITY = "Structure for external applications (QCI_SIMPLE): unit text
T_UNITS_HEATINGVALUE = "Structure for external applications (QCI_SIMPLE): unit text
T_UNITS_OTHERS = "Structure for external applications (QCI_SIMPLE): unit text
ET_RETURN = "Return parameter
T_UNITS_TEXT = "Assign Internal to Language-Dependent Unit
T_UNITS_COMM = "Assignment of commercial to internal unit of measurement
T_UNITS_TECH = "Assignment of external technical to internal unit of measure
T_UNITS_OIL = "Units of Measurement, additional definitions
T_UNITS_MASS = "Structure for external applications (QCI_SIMPLE): unit text
T_UNITS_VOLUME = "Structure for external applications (QCI_SIMPLE): unit text
T_UNITS_ENERGY = "Structure for external applications (QCI_SIMPLE): unit text
T_UNITS_TEMPERATURE = "Structure for external applications (QCI_SIMPLE): unit text
.



IMPORTING Parameters details for OIB_QCI_GET_UOM_DATA_RFC

LANGUAGE - SAP System, current language

Data type: LAISO
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for OIB_QCI_GET_UOM_DATA_RFC

T_UNITS - Units of Measurement

Data type: T006
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_PRESSURE - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_DENSITY - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_HEATINGVALUE - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_OTHERS - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

ET_RETURN - Return parameter

Data type: BAPIRET2
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_TEXT - Assign Internal to Language-Dependent Unit

Data type: T006A
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_COMM - Assignment of commercial to internal unit of measurement

Data type: T006B
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_TECH - Assignment of external technical to internal unit of measure

Data type: T006C
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_OIL - Units of Measurement, additional definitions

Data type: T006_OIB
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_MASS - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_VOLUME - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_ENERGY - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

T_UNITS_TEMPERATURE - Structure for external applications (QCI_SIMPLE): unit text

Data type: OIB_UNITS
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for OIB_QCI_GET_UOM_DATA_RFC Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lt_t_units  TYPE STANDARD TABLE OF T006, "   
lv_language  TYPE LAISO, "   
lt_t_units_pressure  TYPE STANDARD TABLE OF OIB_UNITS, "   
lt_t_units_density  TYPE STANDARD TABLE OF OIB_UNITS, "   
lt_t_units_heatingvalue  TYPE STANDARD TABLE OF OIB_UNITS, "   
lt_t_units_others  TYPE STANDARD TABLE OF OIB_UNITS, "   
lt_et_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lt_t_units_text  TYPE STANDARD TABLE OF T006A, "   
lt_t_units_comm  TYPE STANDARD TABLE OF T006B, "   
lt_t_units_tech  TYPE STANDARD TABLE OF T006C, "   
lt_t_units_oil  TYPE STANDARD TABLE OF T006_OIB, "   
lt_t_units_mass  TYPE STANDARD TABLE OF OIB_UNITS, "   
lt_t_units_volume  TYPE STANDARD TABLE OF OIB_UNITS, "   
lt_t_units_energy  TYPE STANDARD TABLE OF OIB_UNITS, "   
lt_t_units_temperature  TYPE STANDARD TABLE OF OIB_UNITS. "   

  CALL FUNCTION 'OIB_QCI_GET_UOM_DATA_RFC'  "Retrieve T006 data for external applications
    EXPORTING
         LANGUAGE = lv_language
    TABLES
         T_UNITS = lt_t_units
         T_UNITS_PRESSURE = lt_t_units_pressure
         T_UNITS_DENSITY = lt_t_units_density
         T_UNITS_HEATINGVALUE = lt_t_units_heatingvalue
         T_UNITS_OTHERS = lt_t_units_others
         ET_RETURN = lt_et_return
         T_UNITS_TEXT = lt_t_units_text
         T_UNITS_COMM = lt_t_units_comm
         T_UNITS_TECH = lt_t_units_tech
         T_UNITS_OIL = lt_t_units_oil
         T_UNITS_MASS = lt_t_units_mass
         T_UNITS_VOLUME = lt_t_units_volume
         T_UNITS_ENERGY = lt_t_units_energy
         T_UNITS_TEMPERATURE = lt_t_units_temperature
. " OIB_QCI_GET_UOM_DATA_RFC




ABAP code using 7.40 inline data declarations to call FM OIB_QCI_GET_UOM_DATA_RFC

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!