SAP CBIH_LB13_FAID_DRAW_CUSTOMIZED Function Module for









CBIH_LB13_FAID_DRAW_CUSTOMIZED is a standard cbih lb13 faid draw customized 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 cbih lb13 faid draw customized FM, simply by entering the name CBIH_LB13_FAID_DRAW_CUSTOMIZED into the relevant SAP transaction such as SE37 or SE38.

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



Function CBIH_LB13_FAID_DRAW_CUSTOMIZED 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 'CBIH_LB13_FAID_DRAW_CUSTOMIZED'"
EXPORTING
I_FATYPE = "
* I_FLG_WITH_MESSAGE = ESP1_TRUE "

IMPORTING
E_FAID = "

EXCEPTIONS
FATYPE_NOT_COMPLETE = 1 NUMBER_RANGE_NOT_FOUND = 2 NUMBER_RANGE_NOT_INTERNAL = 3 INTERVAL_NOT_FOUND = 4 INTERVAL_OVERFLOW = 5 QUANTITY_IS_0 = 6 INTERNAL_ERROR = 7
.



IMPORTING Parameters details for CBIH_LB13_FAID_DRAW_CUSTOMIZED

I_FATYPE -

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

I_FLG_WITH_MESSAGE -

Data type: ESP1_BOOLEAN
Default: ESP1_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for CBIH_LB13_FAID_DRAW_CUSTOMIZED

E_FAID -

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

EXCEPTIONS details

FATYPE_NOT_COMPLETE -

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

NUMBER_RANGE_NOT_FOUND -

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

NUMBER_RANGE_NOT_INTERNAL -

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

INTERVAL_NOT_FOUND -

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

INTERVAL_OVERFLOW -

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

QUANTITY_IS_0 -

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

INTERNAL_ERROR -

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

Copy and paste ABAP code example for CBIH_LB13_FAID_DRAW_CUSTOMIZED 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_e_faid  TYPE CCIHT_FAL-FAID, "   
lv_i_fatype  TYPE CCIHC_FATYPE-FATYPE, "   
lv_fatype_not_complete  TYPE CCIHC_FATYPE, "   
lv_i_flg_with_message  TYPE ESP1_BOOLEAN, "   ESP1_TRUE
lv_number_range_not_found  TYPE ESP1_BOOLEAN, "   
lv_number_range_not_internal  TYPE ESP1_BOOLEAN, "   
lv_interval_not_found  TYPE ESP1_BOOLEAN, "   
lv_interval_overflow  TYPE ESP1_BOOLEAN, "   
lv_quantity_is_0  TYPE ESP1_BOOLEAN, "   
lv_internal_error  TYPE ESP1_BOOLEAN. "   

  CALL FUNCTION 'CBIH_LB13_FAID_DRAW_CUSTOMIZED'  "
    EXPORTING
         I_FATYPE = lv_i_fatype
         I_FLG_WITH_MESSAGE = lv_i_flg_with_message
    IMPORTING
         E_FAID = lv_e_faid
    EXCEPTIONS
        FATYPE_NOT_COMPLETE = 1
        NUMBER_RANGE_NOT_FOUND = 2
        NUMBER_RANGE_NOT_INTERNAL = 3
        INTERVAL_NOT_FOUND = 4
        INTERVAL_OVERFLOW = 5
        QUANTITY_IS_0 = 6
        INTERNAL_ERROR = 7
. " CBIH_LB13_FAID_DRAW_CUSTOMIZED




ABAP code using 7.40 inline data declarations to call FM CBIH_LB13_FAID_DRAW_CUSTOMIZED

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 FAID FROM CCIHT_FAL INTO @DATA(ld_e_faid).
 
"SELECT single FATYPE FROM CCIHC_FATYPE INTO @DATA(ld_i_fatype).
 
 
DATA(ld_i_flg_with_message) = ESP1_TRUE.
 
 
 
 
 
 
 


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!