SAP TB_LIMIT_EXPOSURE_WRITE_INIT Function Module for Initialization of Limit Management Update









TB_LIMIT_EXPOSURE_WRITE_INIT is a standard tb limit exposure write init SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Initialization of Limit Management Update 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 tb limit exposure write init FM, simply by entering the name TB_LIMIT_EXPOSURE_WRITE_INIT into the relevant SAP transaction such as SE37 or SE38.

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



Function TB_LIMIT_EXPOSURE_WRITE_INIT 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 'TB_LIMIT_EXPOSURE_WRITE_INIT'"Initialization of Limit Management Update
EXPORTING
* I_DLI = SY-DATUM "Evaluation Date
IT_SLE = "Determination Procedure
* IR_SLI = "Status to be Deleted on Evaluation Date
* I_UPDATE_DB = "
* I_CONTROL = "Control Values for Default Risk and Limit System

EXCEPTIONS
ERROR_CALL = 1 ERROR_ENQUEUE = 2 ERROR_INSERT = 3 ERROR_ONLINE24 = 4
.



IMPORTING Parameters details for TB_LIMIT_EXPOSURE_WRITE_INIT

I_DLI - Evaluation Date

Data type: VTBLIL-DLI
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_SLE - Determination Procedure

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

IR_SLI - Status to be Deleted on Evaluation Date

Data type: TRLM_T_R_SLI
Optional: Yes
Call by Reference: Yes

I_UPDATE_DB -

Data type: C
Optional: Yes
Call by Reference: Yes

I_CONTROL - Control Values for Default Risk and Limit System

Data type: KLCONTROL
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

ERROR_CALL - Invalid Call

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

ERROR_ENQUEUE -

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

ERROR_INSERT - Error during Insert

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

ERROR_ONLINE24 - Error in Online Operations

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for TB_LIMIT_EXPOSURE_WRITE_INIT 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_dli  TYPE VTBLIL-DLI, "   SY-DATUM
lv_error_call  TYPE VTBLIL, "   
lv_it_sle  TYPE TRLM_T_SLE, "   
lv_error_enqueue  TYPE TRLM_T_SLE, "   
lv_ir_sli  TYPE TRLM_T_R_SLI, "   
lv_error_insert  TYPE TRLM_T_R_SLI, "   
lv_i_update_db  TYPE C, "   
lv_error_online24  TYPE C, "   
lv_i_control  TYPE KLCONTROL. "   

  CALL FUNCTION 'TB_LIMIT_EXPOSURE_WRITE_INIT'  "Initialization of Limit Management Update
    EXPORTING
         I_DLI = lv_i_dli
         IT_SLE = lv_it_sle
         IR_SLI = lv_ir_sli
         I_UPDATE_DB = lv_i_update_db
         I_CONTROL = lv_i_control
    EXCEPTIONS
        ERROR_CALL = 1
        ERROR_ENQUEUE = 2
        ERROR_INSERT = 3
        ERROR_ONLINE24 = 4
. " TB_LIMIT_EXPOSURE_WRITE_INIT




ABAP code using 7.40 inline data declarations to call FM TB_LIMIT_EXPOSURE_WRITE_INIT

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 DLI FROM VTBLIL INTO @DATA(ld_i_dli).
DATA(ld_i_dli) = SY-DATUM.
 
 
 
 
 
 
 
 
 


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!