SAP OIB_QCI_GET_DENSITY_FORMAT Function Module for Get Density Type Format to Convert the Gravity / relative Density /Density









OIB_QCI_GET_DENSITY_FORMAT is a standard oib qci get density format SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Density Type Format to Convert the Gravity / relative Density /Density 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 density format FM, simply by entering the name OIB_QCI_GET_DENSITY_FORMAT into the relevant SAP transaction such as SE37 or SE38.

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



Function OIB_QCI_GET_DENSITY_FORMAT 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_DENSITY_FORMAT'"Get Density Type Format to Convert the Gravity / relative Density /Density
EXPORTING
I_DNTYP = "

IMPORTING
E_BDICHT = "
E_DCMAXDEC = "
E_DCMAXEXP = "
E_DCMINEXP = "
E_DTMAXDEC = "
E_DTMAXEXP = "
E_DTMINEXP = "
E_FDICHT = "
E_TDICHT = "
.



IMPORTING Parameters details for OIB_QCI_GET_DENSITY_FORMAT

I_DNTYP -

Data type: OIB01-DNTYP
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for OIB_QCI_GET_DENSITY_FORMAT

E_BDICHT -

Data type: OIB_A08-BDICHT
Optional: No
Call by Reference: No ( called with pass by value option)

E_DCMAXDEC -

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

E_DCMAXEXP -

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

E_DCMINEXP -

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

E_DTMAXDEC -

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

E_DTMAXEXP -

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

E_DTMINEXP -

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

E_FDICHT -

Data type: OIB_A08-FDICHT
Optional: No
Call by Reference: No ( called with pass by value option)

E_TDICHT -

Data type: OIB_A08-TDICHT
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for OIB_QCI_GET_DENSITY_FORMAT 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:
lv_i_dntyp  TYPE OIB01-DNTYP, "   
lv_e_bdicht  TYPE OIB_A08-BDICHT, "   
lv_e_dcmaxdec  TYPE OIB_A08, "   
lv_e_dcmaxexp  TYPE OIB_A08, "   
lv_e_dcminexp  TYPE OIB_A08, "   
lv_e_dtmaxdec  TYPE OIB_A08, "   
lv_e_dtmaxexp  TYPE OIB_A08, "   
lv_e_dtminexp  TYPE OIB_A08, "   
lv_e_fdicht  TYPE OIB_A08-FDICHT, "   
lv_e_tdicht  TYPE OIB_A08-TDICHT. "   

  CALL FUNCTION 'OIB_QCI_GET_DENSITY_FORMAT'  "Get Density Type Format to Convert the Gravity / relative Density /Density
    EXPORTING
         I_DNTYP = lv_i_dntyp
    IMPORTING
         E_BDICHT = lv_e_bdicht
         E_DCMAXDEC = lv_e_dcmaxdec
         E_DCMAXEXP = lv_e_dcmaxexp
         E_DCMINEXP = lv_e_dcminexp
         E_DTMAXDEC = lv_e_dtmaxdec
         E_DTMAXEXP = lv_e_dtmaxexp
         E_DTMINEXP = lv_e_dtminexp
         E_FDICHT = lv_e_fdicht
         E_TDICHT = lv_e_tdicht
. " OIB_QCI_GET_DENSITY_FORMAT




ABAP code using 7.40 inline data declarations to call FM OIB_QCI_GET_DENSITY_FORMAT

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.

"SELECT single DNTYP FROM OIB01 INTO @DATA(ld_i_dntyp).
 
"SELECT single BDICHT FROM OIB_A08 INTO @DATA(ld_e_bdicht).
 
 
 
 
 
 
 
"SELECT single FDICHT FROM OIB_A08 INTO @DATA(ld_e_fdicht).
 
"SELECT single TDICHT FROM OIB_A08 INTO @DATA(ld_e_tdicht).
 


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!