SAP GET_LIMIT Function Module for
GET_LIMIT is a standard get limit SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 get limit FM, simply by entering the name GET_LIMIT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FITP_INTEGRATION
Program Name: SAPLFITP_INTEGRATION
Main Program: SAPLFITP_INTEGRATION
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function GET_LIMIT 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 'GET_LIMIT'".
EXPORTING
MOREI = "Trip Provision Variant
CATEGORY = "Travel Service Category
PAYED_BY_COMPANY = "Paid by Company
BEGDA = "Validity Start Date
ENDDA = "End of Validity Period
COUNTRY = "Trip Country
PLAN_ACTIVITY = "
IMPORTING
LIMIT_TYP = "
LIMIT = "
CURRENCY = "Currency
MESSAGE_ID = "Message Class
MESSAGE_NUMBER = "Message Number
TABLES
ITEMS = "Request Items
EXCEPTIONS
NOT_FOUND = 1 NO_LIMIT = 2
IMPORTING Parameters details for GET_LIMIT
MOREI - Trip Provision Variant
Data type: T702N-MOREIOptional: No
Call by Reference: No ( called with pass by value option)
CATEGORY - Travel Service Category
Data type: TA22A-CATEGORYOptional: No
Call by Reference: No ( called with pass by value option)
PAYED_BY_COMPANY - Paid by Company
Data type: TA22A-FIRMAOptional: No
Call by Reference: No ( called with pass by value option)
BEGDA - Validity Start Date
Data type: TA22A-BEGDAOptional: No
Call by Reference: No ( called with pass by value option)
ENDDA - End of Validity Period
Data type: TA22A-ENDDAOptional: No
Call by Reference: No ( called with pass by value option)
COUNTRY - Trip Country
Data type: T702O-LAND1Optional: No
Call by Reference: No ( called with pass by value option)
PLAN_ACTIVITY -
Data type: TA20R-ACTICITYOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for GET_LIMIT
LIMIT_TYP -
Data type: T706B2-ATYPEOptional: No
Call by Reference: No ( called with pass by value option)
LIMIT -
Data type: T706B2-BETRGOptional: No
Call by Reference: No ( called with pass by value option)
CURRENCY - Currency
Data type: T706B2-WAERSOptional: No
Call by Reference: No ( called with pass by value option)
MESSAGE_ID - Message Class
Data type: T706B2-MSGIDOptional: No
Call by Reference: No ( called with pass by value option)
MESSAGE_NUMBER - Message Number
Data type: T706B2-MSGNOOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for GET_LIMIT
ITEMS - Request Items
Data type: FTPT_ITEMOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_LIMIT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for GET_LIMIT 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: | ||||
| lt_items | TYPE STANDARD TABLE OF FTPT_ITEM, " | |||
| lv_morei | TYPE T702N-MOREI, " | |||
| lv_limit_typ | TYPE T706B2-ATYPE, " | |||
| lv_not_found | TYPE T706B2, " | |||
| lv_limit | TYPE T706B2-BETRG, " | |||
| lv_category | TYPE TA22A-CATEGORY, " | |||
| lv_no_limit | TYPE TA22A, " | |||
| lv_currency | TYPE T706B2-WAERS, " | |||
| lv_payed_by_company | TYPE TA22A-FIRMA, " | |||
| lv_begda | TYPE TA22A-BEGDA, " | |||
| lv_message_id | TYPE T706B2-MSGID, " | |||
| lv_endda | TYPE TA22A-ENDDA, " | |||
| lv_message_number | TYPE T706B2-MSGNO, " | |||
| lv_country | TYPE T702O-LAND1, " | |||
| lv_plan_activity | TYPE TA20R-ACTICITY. " |
|   CALL FUNCTION 'GET_LIMIT' " |
| EXPORTING | ||
| MOREI | = lv_morei | |
| CATEGORY | = lv_category | |
| PAYED_BY_COMPANY | = lv_payed_by_company | |
| BEGDA | = lv_begda | |
| ENDDA | = lv_endda | |
| COUNTRY | = lv_country | |
| PLAN_ACTIVITY | = lv_plan_activity | |
| IMPORTING | ||
| LIMIT_TYP | = lv_limit_typ | |
| LIMIT | = lv_limit | |
| CURRENCY | = lv_currency | |
| MESSAGE_ID | = lv_message_id | |
| MESSAGE_NUMBER | = lv_message_number | |
| TABLES | ||
| ITEMS | = lt_items | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| NO_LIMIT = 2 | ||
| . " GET_LIMIT | ||
ABAP code using 7.40 inline data declarations to call FM GET_LIMIT
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 MOREI FROM T702N INTO @DATA(ld_morei). | ||||
| "SELECT single ATYPE FROM T706B2 INTO @DATA(ld_limit_typ). | ||||
| "SELECT single BETRG FROM T706B2 INTO @DATA(ld_limit). | ||||
| "SELECT single CATEGORY FROM TA22A INTO @DATA(ld_category). | ||||
| "SELECT single WAERS FROM T706B2 INTO @DATA(ld_currency). | ||||
| "SELECT single FIRMA FROM TA22A INTO @DATA(ld_payed_by_company). | ||||
| "SELECT single BEGDA FROM TA22A INTO @DATA(ld_begda). | ||||
| "SELECT single MSGID FROM T706B2 INTO @DATA(ld_message_id). | ||||
| "SELECT single ENDDA FROM TA22A INTO @DATA(ld_endda). | ||||
| "SELECT single MSGNO FROM T706B2 INTO @DATA(ld_message_number). | ||||
| "SELECT single LAND1 FROM T702O INTO @DATA(ld_country). | ||||
| "SELECT single ACTICITY FROM TA20R INTO @DATA(ld_plan_activity). | ||||
Search for further information about these or an SAP related objects