SAP TB_LIMITS_UPDATE_ALL Function Module for Update of Limit Keys and Limits
TB_LIMITS_UPDATE_ALL is a standard tb limits update all SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Update of Limit Keys and 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 limits update all FM, simply by entering the name TB_LIMITS_UPDATE_ALL into the relevant SAP transaction such as SE37 or SE38.
Function Group: TBL1
Program Name: SAPLTBL1
Main Program: SAPLTBL1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function TB_LIMITS_UPDATE_ALL 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_LIMITS_UPDATE_ALL'"Update of Limit Keys and Limits.
EXPORTING
I_SLA = "Limit Type
* IT_LS_OLD = "Limit Key - Old
* IT_LS_NEW = "Limit Key - New
* IT_LV_OLD = "Limits - Old
* IT_LV_NEW = "Limits - New
* IT_LVIL_OLD = "Interim Limits - Old
* IT_LVIL_NEW = "Interim Limits - New
EXCEPTIONS
UPDATE_LS = 1 UPDATE_LV = 2 UPDATE_LVIL = 3 CALL_LS = 4 CALL_LV = 5 CALL_LVIL = 6
IMPORTING Parameters details for TB_LIMITS_UPDATE_ALL
I_SLA - Limit Type
Data type: VTBLV-SLAOptional: No
Call by Reference: No ( called with pass by value option)
IT_LS_OLD - Limit Key - Old
Data type: TRLM_T_LSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_LS_NEW - Limit Key - New
Data type: TRLM_T_LSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_LV_OLD - Limits - Old
Data type: TRLM_T_LVOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_LV_NEW - Limits - New
Data type: TRLM_T_LVOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_LVIL_OLD - Interim Limits - Old
Data type: TRLM_T_LVILOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_LVIL_NEW - Interim Limits - New
Data type: TRLM_T_LVILOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
UPDATE_LS - Database Change VTBLS Failed
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UPDATE_LV - Database Change VTBLV Failed
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UPDATE_LVIL - Database Change VTBLVIL Failed
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CALL_LS - Wrong Call for Key Update
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CALL_LV - Wrong Call for Limits Update
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CALL_LVIL - Wrong Call for Interim Update
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TB_LIMITS_UPDATE_ALL 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_sla | TYPE VTBLV-SLA, " | |||
| lv_update_ls | TYPE VTBLV, " | |||
| lv_it_ls_old | TYPE TRLM_T_LS, " | |||
| lv_update_lv | TYPE TRLM_T_LS, " | |||
| lv_it_ls_new | TYPE TRLM_T_LS, " | |||
| lv_update_lvil | TYPE TRLM_T_LS, " | |||
| lv_call_ls | TYPE TRLM_T_LS, " | |||
| lv_it_lv_old | TYPE TRLM_T_LV, " | |||
| lv_call_lv | TYPE TRLM_T_LV, " | |||
| lv_it_lv_new | TYPE TRLM_T_LV, " | |||
| lv_call_lvil | TYPE TRLM_T_LV, " | |||
| lv_it_lvil_old | TYPE TRLM_T_LVIL, " | |||
| lv_it_lvil_new | TYPE TRLM_T_LVIL. " |
|   CALL FUNCTION 'TB_LIMITS_UPDATE_ALL' "Update of Limit Keys and Limits |
| EXPORTING | ||
| I_SLA | = lv_i_sla | |
| IT_LS_OLD | = lv_it_ls_old | |
| IT_LS_NEW | = lv_it_ls_new | |
| IT_LV_OLD | = lv_it_lv_old | |
| IT_LV_NEW | = lv_it_lv_new | |
| IT_LVIL_OLD | = lv_it_lvil_old | |
| IT_LVIL_NEW | = lv_it_lvil_new | |
| EXCEPTIONS | ||
| UPDATE_LS = 1 | ||
| UPDATE_LV = 2 | ||
| UPDATE_LVIL = 3 | ||
| CALL_LS = 4 | ||
| CALL_LV = 5 | ||
| CALL_LVIL = 6 | ||
| . " TB_LIMITS_UPDATE_ALL | ||
ABAP code using 7.40 inline data declarations to call FM TB_LIMITS_UPDATE_ALL
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 SLA FROM VTBLV INTO @DATA(ld_i_sla). | ||||
Search for further information about these or an SAP related objects