SAP TB_LIMIT_SUMS_DEQUEUE Function Module for Unlock Totals Record for Single Transaction Check
TB_LIMIT_SUMS_DEQUEUE is a standard tb limit sums dequeue SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Unlock Totals Record for Single Transaction Check 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 sums dequeue FM, simply by entering the name TB_LIMIT_SUMS_DEQUEUE into the relevant SAP transaction such as SE37 or SE38.
Function Group: TBL0
Program Name: SAPLTBL0
Main Program: SAPLTBL0
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TB_LIMIT_SUMS_DEQUEUE 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_SUMS_DEQUEUE'"Unlock Totals Record for Single Transaction Check.
EXPORTING
* I_SLA = "Limit Type
* I_RLV = "Limit Key
* I_SLH = "Hierarchy Level
* I_SLI = "Status
* I_DLI = "Determination Date
* I_VLI = "Validity Date
IMPORTING Parameters details for TB_LIMIT_SUMS_DEQUEUE
I_SLA - Limit Type
Data type: VTBLIS-SLAOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RLV - Limit Key
Data type: VTBLIS-RLVOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SLH - Hierarchy Level
Data type: VTBLIS-SLHOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SLI - Status
Data type: VTBLIS-SLIOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DLI - Determination Date
Data type: VTBLIS-DLIOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VLI - Validity Date
Data type: VTBLIS-VLIOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for TB_LIMIT_SUMS_DEQUEUE 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 VTBLIS-SLA, " | |||
| lv_i_rlv | TYPE VTBLIS-RLV, " | |||
| lv_i_slh | TYPE VTBLIS-SLH, " | |||
| lv_i_sli | TYPE VTBLIS-SLI, " | |||
| lv_i_dli | TYPE VTBLIS-DLI, " | |||
| lv_i_vli | TYPE VTBLIS-VLI. " |
|   CALL FUNCTION 'TB_LIMIT_SUMS_DEQUEUE' "Unlock Totals Record for Single Transaction Check |
| EXPORTING | ||
| I_SLA | = lv_i_sla | |
| I_RLV | = lv_i_rlv | |
| I_SLH | = lv_i_slh | |
| I_SLI | = lv_i_sli | |
| I_DLI | = lv_i_dli | |
| I_VLI | = lv_i_vli | |
| . " TB_LIMIT_SUMS_DEQUEUE | ||
ABAP code using 7.40 inline data declarations to call FM TB_LIMIT_SUMS_DEQUEUE
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 VTBLIS INTO @DATA(ld_i_sla). | ||||
| "SELECT single RLV FROM VTBLIS INTO @DATA(ld_i_rlv). | ||||
| "SELECT single SLH FROM VTBLIS INTO @DATA(ld_i_slh). | ||||
| "SELECT single SLI FROM VTBLIS INTO @DATA(ld_i_sli). | ||||
| "SELECT single DLI FROM VTBLIS INTO @DATA(ld_i_dli). | ||||
| "SELECT single VLI FROM VTBLIS INTO @DATA(ld_i_vli). | ||||
Search for further information about these or an SAP related objects