SAP EXIT_SAPLHRPADINA1_008 Function Module for Customer exit for saving additional info claims
EXIT_SAPLHRPADINA1_008 is a standard exit saplhrpadina1 008 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Customer exit for saving additional info claims 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 exit saplhrpadina1 008 FM, simply by entering the name EXIT_SAPLHRPADINA1_008 into the relevant SAP transaction such as SE37 or SE38.
Function Group: XPADINRAP
Program Name: SAPLXPADINRAP
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPLHRPADINA1_008 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 'EXIT_SAPLHRPADINA1_008'"Customer exit for saving additional info claims.
EXPORTING
_IFTY015 = "Header Line of Infotype 15
_IFTY267 = "Header Line of Infotype 267 for offcycle
CHANGING
_CLAIM = "Additional Information (Customer Fields) For Claims
EXCEPTIONS
CUSTOMER_ERROR = 1
Related Function Modules
Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.HR_IN_CALC_CFWD_EXIT Carry forward dates
HR_IN_CALC_ELAMT Calculate eligibility amount - customer exit
HR_IN_CALC_ELIG_EXIT To calculate the eligibility amount/number through exit
HR_IN_CALC_ELNUM Calculate eligibility amount - customer exit
HR_IN_GET_ALGRP Get pay scale grouping for allowances(New)
HR_IN_GET_ALGRP_AMT Amt for a specified wage type for an employee
HR_IN_GET_ALGRP_CONV Conv. Amt for a specified wage type for an employee
HR_IN_GET_ALGRP_ELIG Get eligibility structure for pay scale grouping for alllowances
HR_IN_GET_ALGRP_NUM Number for a specified wage type for an employee
HR_IN_GET_ALGRP_WT Amount for a specified wagetype for an employee
HR_IN_GET_AL_WT_AMT Amt for a specified wage type for an employee
HR_IN_GET_EE_DELIM_DT Get employee characteristics delimit date
HR_IN_GET_WT_SPLIT To Find wage type splits for a taxcode for a employee
HR_IN_GET_WT_SPLIT_PMT To Find wage type splits for a taxcode for a employee
HR_IN_GET_WT_SPLIT_PY To Find wage type splits for a taxcode for a employee
HR_IN_GET_WT_SPLIT_VAL To Find wage type splits for a taxcode for a employee
HR_IN_INVALD_EXIT To calculate basis amount for INVAL D
HR_IN_PRINT_ADINFO_EXIT Save Additional Info for claims
HR_IN_SAVE_ADINFO_EXIT Save Additional Info for claims
HR_IN_SPA_FACTORIZATION Salary packaging: Factorization of salary components
HR_IN_SPA_FACTORIZATION1 Salary packaging: Indirect valuation Inval
HR_IN_SPA_INDIA_VALUATION Salary packaging: Indirect valuation Inval
HR_IN_SPA_INDIA_VALUATION1 Salary packaging: Indirect valuation Inval
HR_IN_SPA_SET_IV_FLAG Setting indirect evaluation indicator
HR_IN_WT_DATE_GET_AMT FM to get amount based on ALGRP, WT & Date
HR_SPA_BDC_IT0589 Salary packaging: Update infotype for individual reimbursements [IT0589]
HR_SPA_FILL_IT0589_STRUCTURE Fill salary components into individual reimbursements infotype
HR_SPA_RETRIEVE_FROM_IT0589 Retrieve salary component data from individual reimbursements infotype
IMPORTING Parameters details for EXIT_SAPLHRPADINA1_008
_IFTY015 - Header Line of Infotype 15
Data type: P0015Optional: No
Call by Reference: No ( called with pass by value option)
_IFTY267 - Header Line of Infotype 267 for offcycle
Data type: P0267Optional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for EXIT_SAPLHRPADINA1_008
_CLAIM - Additional Information (Customer Fields) For Claims
Data type: PINCLOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CUSTOMER_ERROR - Customer Error
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for EXIT_SAPLHRPADINA1_008 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__claim | TYPE PINCL, " | |||
| lv__ifty015 | TYPE P0015, " | |||
| lv_customer_error | TYPE P0015, " | |||
| lv__ifty267 | TYPE P0267. " |
|   CALL FUNCTION 'EXIT_SAPLHRPADINA1_008' "Customer exit for saving additional info claims |
| EXPORTING | ||
| _IFTY015 | = lv__ifty015 | |
| _IFTY267 | = lv__ifty267 | |
| CHANGING | ||
| _CLAIM | = lv__claim | |
| EXCEPTIONS | ||
| CUSTOMER_ERROR = 1 | ||
| . " EXIT_SAPLHRPADINA1_008 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLHRPADINA1_008
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.Search for further information about these or an SAP related objects