SAP AIPJ_GET_SIZECL Function Module for









AIPJ_GET_SIZECL is a standard aipj get sizecl SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 aipj get sizecl FM, simply by entering the name AIPJ_GET_SIZECL into the relevant SAP transaction such as SE37 or SE38.

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



Function AIPJ_GET_SIZECL 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 'AIPJ_GET_SIZECL'"
EXPORTING
I_OBART = "
I_WAERS = "
I_WERT = "

IMPORTING
E_SIZECL = "

EXCEPTIONS
WRONG_OBART = 1 SIZE_NOT_FOUND = 2
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLAIPJ_001 Inv. Prog. Drilldowns: Read Texts for User-Defined Characteristics
EXIT_SAPLAIPJ_002 Inv. Prog. Drilldowns: Check Values for User-Defined Characteristics
EXIT_SAPLAIPJ_003 App. Req. Drilldown: Read Texts for User-Defined Characteristics
EXIT_SAPLAIPJ_004 App. Req. Drilldown: Check Values for User-Defined Characteristics
EXIT_SAPLAIPJ_005 IM Summarization: Read Texts for User-Defined Characteristics
EXIT_SAPLAIPJ_006 IM Summarization: Check Values for User-Defined Characteristics

IMPORTING Parameters details for AIPJ_GET_SIZECL

I_OBART -

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

I_WAERS -

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

I_WERT -

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

EXPORTING Parameters details for AIPJ_GET_SIZECL

E_SIZECL -

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

EXCEPTIONS details

WRONG_OBART -

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

SIZE_NOT_FOUND -

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

Copy and paste ABAP code example for AIPJ_GET_SIZECL 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_obart  TYPE TAIGW-OBART, "   
lv_e_sizecl  TYPE TAIGW-SIZECL, "   
lv_wrong_obart  TYPE TAIGW, "   
lv_i_waers  TYPE TAIGW-WAERS, "   
lv_size_not_found  TYPE TAIGW, "   
lv_i_wert  TYPE TAIGW-WERTUGR. "   

  CALL FUNCTION 'AIPJ_GET_SIZECL'  "
    EXPORTING
         I_OBART = lv_i_obart
         I_WAERS = lv_i_waers
         I_WERT = lv_i_wert
    IMPORTING
         E_SIZECL = lv_e_sizecl
    EXCEPTIONS
        WRONG_OBART = 1
        SIZE_NOT_FOUND = 2
. " AIPJ_GET_SIZECL




ABAP code using 7.40 inline data declarations to call FM AIPJ_GET_SIZECL

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 OBART FROM TAIGW INTO @DATA(ld_i_obart).
 
"SELECT single SIZECL FROM TAIGW INTO @DATA(ld_e_sizecl).
 
 
"SELECT single WAERS FROM TAIGW INTO @DATA(ld_i_waers).
 
 
"SELECT single WERTUGR FROM TAIGW INTO @DATA(ld_i_wert).
 


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!