SAP TB_LIMIT_CHGPTR_CREATE Function Module for Set Change Pointer for Data Export of Limits









TB_LIMIT_CHGPTR_CREATE is a standard tb limit chgptr create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Set Change Pointer for Data Export of Limits 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 chgptr create FM, simply by entering the name TB_LIMIT_CHGPTR_CREATE into the relevant SAP transaction such as SE37 or SE38.

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



Function TB_LIMIT_CHGPTR_CREATE 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_CHGPTR_CREATE'"Set Change Pointer for Data Export of Limits
EXPORTING
* I_NEW_VTBLS = "Limits: Mapping Logical - Physical Keys
* I_OLD_VTBLS = "Limits: Mapping Logical - Physical Keys
* I_VTBLSKEY_UPDATE = "Flag for VTBLS Key Update
* I_NEW_VTBLV = "Limits
* I_OLD_VTBLV = "Limits
* I_NEW_VTBLVIL = "Interim Limits for Limits
* I_OLD_VTBLVIL = "Interim Limits for Limits
* IT_LS_NEW = "Limit Key - New
I_MODUS = "Change Indicator

EXCEPTIONS
VTBLSKEY = 1
.



IMPORTING Parameters details for TB_LIMIT_CHGPTR_CREATE

I_NEW_VTBLS - Limits: Mapping Logical - Physical Keys

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

I_OLD_VTBLS - Limits: Mapping Logical - Physical Keys

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

I_VTBLSKEY_UPDATE - Flag for VTBLS Key Update

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

I_NEW_VTBLV - Limits

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

I_OLD_VTBLV - Limits

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

I_NEW_VTBLVIL - Interim Limits for Limits

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

I_OLD_VTBLVIL - Interim Limits for Limits

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

IT_LS_NEW - Limit Key - New

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

I_MODUS - Change Indicator

Data type: JBD_DTE_CDCHGIND
Optional: No
Call by Reference: Yes

EXCEPTIONS details

VTBLSKEY - Generated Table Not Found

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for TB_LIMIT_CHGPTR_CREATE 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_vtblskey  TYPE STRING, "   
lv_i_new_vtbls  TYPE VTBLS, "   
lv_i_old_vtbls  TYPE VTBLS, "   
lv_i_vtblskey_update  TYPE JBD_DTE_CDCHGIND, "   
lv_i_new_vtblv  TYPE VTBLV, "   
lv_i_old_vtblv  TYPE VTBLV, "   
lv_i_new_vtblvil  TYPE VTBLVIL, "   
lv_i_old_vtblvil  TYPE VTBLVIL, "   
lv_it_ls_new  TYPE TRLM_T_LS, "   
lv_i_modus  TYPE JBD_DTE_CDCHGIND. "   

  CALL FUNCTION 'TB_LIMIT_CHGPTR_CREATE'  "Set Change Pointer for Data Export of Limits
    EXPORTING
         I_NEW_VTBLS = lv_i_new_vtbls
         I_OLD_VTBLS = lv_i_old_vtbls
         I_VTBLSKEY_UPDATE = lv_i_vtblskey_update
         I_NEW_VTBLV = lv_i_new_vtblv
         I_OLD_VTBLV = lv_i_old_vtblv
         I_NEW_VTBLVIL = lv_i_new_vtblvil
         I_OLD_VTBLVIL = lv_i_old_vtblvil
         IT_LS_NEW = lv_it_ls_new
         I_MODUS = lv_i_modus
    EXCEPTIONS
        VTBLSKEY = 1
. " TB_LIMIT_CHGPTR_CREATE




ABAP code using 7.40 inline data declarations to call FM TB_LIMIT_CHGPTR_CREATE

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.

 
 
 
 
 
 
 
 
 
 


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!