SAP HR_CA_CHECK_OVERLAPPING_ROE_CE Function Module for Check overlapped ROEs for CE









HR_CA_CHECK_OVERLAPPING_ROE_CE is a standard hr ca check overlapping roe ce SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check overlapped ROEs for CE 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 hr ca check overlapping roe ce FM, simply by entering the name HR_CA_CHECK_OVERLAPPING_ROE_CE into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRPAYCA_ROE_CE
Program Name: SAPLHRPAYCA_ROE_CE
Main Program: SAPLHRPAYCA_ROE_CE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_CA_CHECK_OVERLAPPING_ROE_CE 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 'HR_CA_CHECK_OVERLAPPING_ROE_CE'"Check overlapped ROEs for CE
EXPORTING
IM_PERSONID = "External Person ID
IM_FSTDT = "First Day Worked
IM_LSTDT = "Last Day For Which Paid
IM_BUSNM = "Business number

IMPORTING
EX_OVERLAPPED_ROE = "Record of Employment (ROE) History for Concurrent Employment

EXCEPTIONS
INVALID_IMPORT_PARAM = 1 OVERLAPPED_ROE_FOUND = 2
.



IMPORTING Parameters details for HR_CA_CHECK_OVERLAPPING_ROE_CE

IM_PERSONID - External Person ID

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

IM_FSTDT - First Day Worked

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

IM_LSTDT - Last Day For Which Paid

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

IM_BUSNM - Business number

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

EXPORTING Parameters details for HR_CA_CHECK_OVERLAPPING_ROE_CE

EX_OVERLAPPED_ROE - Record of Employment (ROE) History for Concurrent Employment

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

EXCEPTIONS details

INVALID_IMPORT_PARAM - Invalid import parameter

Data type:
Optional: No
Call by Reference: Yes

OVERLAPPED_ROE_FOUND - Overlapped ROE found

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HR_CA_CHECK_OVERLAPPING_ROE_CE 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_im_personid  TYPE PERSONID_EXT, "   
lv_ex_overlapped_roe  TYPE T5KR4, "   
lv_invalid_import_param  TYPE T5KR4, "   
lv_im_fstdt  TYPE PCA_ROE_FSTDT, "   
lv_overlapped_roe_found  TYPE PCA_ROE_FSTDT, "   
lv_im_lstdt  TYPE PCA_ROE_LSTDT, "   
lv_im_busnm  TYPE PCA_BUSNM. "   

  CALL FUNCTION 'HR_CA_CHECK_OVERLAPPING_ROE_CE'  "Check overlapped ROEs for CE
    EXPORTING
         IM_PERSONID = lv_im_personid
         IM_FSTDT = lv_im_fstdt
         IM_LSTDT = lv_im_lstdt
         IM_BUSNM = lv_im_busnm
    IMPORTING
         EX_OVERLAPPED_ROE = lv_ex_overlapped_roe
    EXCEPTIONS
        INVALID_IMPORT_PARAM = 1
        OVERLAPPED_ROE_FOUND = 2
. " HR_CA_CHECK_OVERLAPPING_ROE_CE




ABAP code using 7.40 inline data declarations to call FM HR_CA_CHECK_OVERLAPPING_ROE_CE

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



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!