SAP PT_ARQ_ESA_REQUEST_LIST Function Module for ESA List of leaves requests









PT_ARQ_ESA_REQUEST_LIST is a standard pt arq esa request list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ESA List of leaves requests 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 pt arq esa request list FM, simply by entering the name PT_ARQ_ESA_REQUEST_LIST into the relevant SAP transaction such as SE37 or SE38.

Function Group: PT_ARQ_ESA_SERVICES
Program Name: SAPLPT_ARQ_ESA_SERVICES
Main Program: SAPLPT_ARQ_ESA_SERVICES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function PT_ARQ_ESA_REQUEST_LIST 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 'PT_ARQ_ESA_REQUEST_LIST'"ESA List of leaves requests
EXPORTING
IV_REQUESTER_EMPLOYEE_NUMBER = "Personnel Number
* IT_TEAM_EMPLOYEE_NUMBERS = "Personnel Number
* IV_AS_OF_DATE = "Document ID
* IT_STATUS_RANGE = "SELECT-OPTIONS Table
* IV_DO_COMMIT = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')

IMPORTING
ET_REQUEST_LIST = "Table: ESA List of leaves request

TABLES
ET_MESSAGES = "Leave Request: ESA Message Table
.



IMPORTING Parameters details for PT_ARQ_ESA_REQUEST_LIST

IV_REQUESTER_EMPLOYEE_NUMBER - Personnel Number

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

IT_TEAM_EMPLOYEE_NUMBERS - Personnel Number

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

IV_AS_OF_DATE - Document ID

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

IT_STATUS_RANGE - SELECT-OPTIONS Table

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

IV_DO_COMMIT - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')

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

EXPORTING Parameters details for PT_ARQ_ESA_REQUEST_LIST

ET_REQUEST_LIST - Table: ESA List of leaves request

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

TABLES Parameters details for PT_ARQ_ESA_REQUEST_LIST

ET_MESSAGES - Leave Request: ESA Message Table

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

Copy and paste ABAP code example for PT_ARQ_ESA_REQUEST_LIST 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_et_messages  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_et_request_list  TYPE PTARQ_ESA_REQUEST_LIST_TAB, "   
lv_iv_requester_employee_number  TYPE P_PERNR, "   
lv_it_team_employee_numbers  TYPE PTIM_PERNR_TAB, "   
lv_iv_as_of_date  TYPE SY-DATUM, "   
lv_it_status_range  TYPE RSELOPTION, "   
lv_iv_do_commit  TYPE BOOLE_D. "   

  CALL FUNCTION 'PT_ARQ_ESA_REQUEST_LIST'  "ESA List of leaves requests
    EXPORTING
         IV_REQUESTER_EMPLOYEE_NUMBER = lv_iv_requester_employee_number
         IT_TEAM_EMPLOYEE_NUMBERS = lv_it_team_employee_numbers
         IV_AS_OF_DATE = lv_iv_as_of_date
         IT_STATUS_RANGE = lv_it_status_range
         IV_DO_COMMIT = lv_iv_do_commit
    IMPORTING
         ET_REQUEST_LIST = lv_et_request_list
    TABLES
         ET_MESSAGES = lt_et_messages
. " PT_ARQ_ESA_REQUEST_LIST




ABAP code using 7.40 inline data declarations to call FM PT_ARQ_ESA_REQUEST_LIST

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 DATUM FROM SY INTO @DATA(ld_iv_as_of_date).
 
 
 


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!