SAP OIB_QCI_MOVE_STRUC_TO_ITAB Function Module for Move parameter from structure to QCI-itab









OIB_QCI_MOVE_STRUC_TO_ITAB is a standard oib qci move struc to itab SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Move parameter from structure to QCI-itab 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 move struc to itab FM, simply by entering the name OIB_QCI_MOVE_STRUC_TO_ITAB 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_MOVE_STRUC_TO_ITAB 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_MOVE_STRUC_TO_ITAB'"Move parameter from  structure to QCI-itab
EXPORTING
I_STRUCTURE = "
I_DDIC_REFERENCE = "

TABLES
T_OIB_A10 = "

EXCEPTIONS
FIELD_TYPE_NOT_VALID = 1 STRUCTURE_NOT_EXISTS = 2 INCONSISTENT_CUSTOMIZING = 3
.



IMPORTING Parameters details for OIB_QCI_MOVE_STRUC_TO_ITAB

I_STRUCTURE -

Data type:
Optional: No
Call by Reference: Yes

I_DDIC_REFERENCE -

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

TABLES Parameters details for OIB_QCI_MOVE_STRUC_TO_ITAB

T_OIB_A10 -

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

EXCEPTIONS details

FIELD_TYPE_NOT_VALID -

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

STRUCTURE_NOT_EXISTS -

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

INCONSISTENT_CUSTOMIZING -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for OIB_QCI_MOVE_STRUC_TO_ITAB 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_oib_a10  TYPE STANDARD TABLE OF OIB_A10, "   
lv_i_structure  TYPE OIB_A10, "   
lv_field_type_not_valid  TYPE OIB_A10, "   
lv_i_ddic_reference  TYPE X031L-TABNAME, "   
lv_structure_not_exists  TYPE X031L, "   
lv_inconsistent_customizing  TYPE X031L. "   

  CALL FUNCTION 'OIB_QCI_MOVE_STRUC_TO_ITAB'  "Move parameter from structure to QCI-itab
    EXPORTING
         I_STRUCTURE = lv_i_structure
         I_DDIC_REFERENCE = lv_i_ddic_reference
    TABLES
         T_OIB_A10 = lt_t_oib_a10
    EXCEPTIONS
        FIELD_TYPE_NOT_VALID = 1
        STRUCTURE_NOT_EXISTS = 2
        INCONSISTENT_CUSTOMIZING = 3
. " OIB_QCI_MOVE_STRUC_TO_ITAB




ABAP code using 7.40 inline data declarations to call FM OIB_QCI_MOVE_STRUC_TO_ITAB

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 TABNAME FROM X031L INTO @DATA(ld_i_ddic_reference).
 
 
 


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!