SAP TB_LIMITS_MAINTAIN_SINGLE Function Module for Individual Maintenance of Limits
TB_LIMITS_MAINTAIN_SINGLE is a standard tb limits maintain single SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Individual Maintenance 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 limits maintain single FM, simply by entering the name TB_LIMITS_MAINTAIN_SINGLE 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 Warning: Undefined array key "UPDATE" in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 212
Update:

Function TB_LIMITS_MAINTAIN_SINGLE 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. Warning: Undefined variable $struct in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 258 Warning: Trying to access array offset on value of type null in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 258 Warning: Trying to access array offset on value of type null in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 267 Warning: Trying to access array offset on value of type null in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 296 Warning: Undefined variable $px in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 337 Warning: Undefined variable $pxdet in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 338 Warning: Undefined variable $ax in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 339 Warning: Trying to access array offset on value of type null in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 267 Warning: Trying to access array offset on value of type null in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 296 Warning: Undefined variable $pc in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 319 Warning: Undefined variable $pcdet in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 320 Warning: Undefined variable $ac in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 321 Warning: Undefined variable $pe in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 312 Warning: Undefined variable $pedet in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 313 Warning: Undefined variable $ae in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 314 Warning: Trying to access array offset on value of type null in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 267 Warning: Trying to access array offset on value of type null in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 296 Warning: Undefined variable $pattern in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 347 Warning: Undefined variable $abapcall in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 349CALL FUNCTION 'TB_LIMITS_MAINTAIN_SINGLE'"Individual Maintenance of Limits.
IMPORTING
E_CHANGED = "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
CHANGING
C_VTBLSP = "
C_VTBLV0 = "Limits: Editing Structure
EXCEPTIONS
ENQUEUE = 1 AUTHORITY = 2
Warning: Undefined variable $idoc in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 395 Warning: Undefined variable $exitfms in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 397 Warning: Undefined variable $custfunc in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 399 Warning: file(/customers/3/8/f/se80.co.uk/httpd.www/sap/fms/tb_limits_maintain_single/tb_limits_maintain_single.txt): Failed to open stream: No such file or directory in /customers/3/8/f/se80.co.uk/httpd.www/page/php/functions-noconn.php on line 575 Warning: foreach() argument must be of type array|object, bool given in /customers/3/8/f/se80.co.uk/httpd.www/page/php/functions-noconn.php on line 595 Warning: Undefined variable $endtag in /customers/3/8/f/se80.co.uk/httpd.www/page/php/functions-noconn.php on line 859
EXPORTING Parameters details for TB_LIMITS_MAINTAIN_SINGLE
E_CHANGED - Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEOptional: No
Call by Reference: Yes
CHANGING Parameters details for TB_LIMITS_MAINTAIN_SINGLE
C_VTBLSP -
Data type: TRLM_VTBLSPOptional: No
Call by Reference: Yes
C_VTBLV0 - Limits: Editing Structure
Data type: VTBLV0Optional: No
Call by Reference: Yes
EXCEPTIONS details
ENQUEUE -
Data type:Optional: No
Call by Reference: Yes
AUTHORITY -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for TB_LIMITS_MAINTAIN_SINGLE 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_enqueue | TYPE STRING, " | |||
| lv_c_vtblsp | TYPE TRLM_VTBLSP, " | |||
| lv_e_changed | TYPE BOOLE-BOOLE, " | |||
| lv_c_vtblv0 | TYPE VTBLV0, " | |||
| lv_authority | TYPE VTBLV0. " |
|   CALL FUNCTION 'TB_LIMITS_MAINTAIN_SINGLE' "Individual Maintenance of Limits |
| IMPORTING | ||
| E_CHANGED | = lv_e_changed | |
| CHANGING | ||
| C_VTBLSP | = lv_c_vtblsp | |
| C_VTBLV0 | = lv_c_vtblv0 | |
| EXCEPTIONS | ||
| ENQUEUE = 1 | ||
| AUTHORITY = 2 | ||
| . " TB_LIMITS_MAINTAIN_SINGLE | ||
ABAP code using 7.40 inline data declarations to call FM TB_LIMITS_MAINTAIN_SINGLE
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 BOOLE FROM BOOLE INTO @DATA(ld_e_changed). | ||||
Search for further information about these or an SAP related objects