SAP RHPE_CCE_CONVERT_QUALIFICATION Function Module for CE/GE Qualifications: Conversion of qualifications
RHPE_CCE_CONVERT_QUALIFICATION is a standard rhpe cce convert qualification SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for CE/GE Qualifications: Conversion of qualifications 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 rhpe cce convert qualification FM, simply by entering the name RHPE_CCE_CONVERT_QUALIFICATION into the relevant SAP transaction such as SE37 or SE38.
Function Group: RHPE_CCE_QUALI_CONVERSION
Program Name: SAPLRHPE_CCE_QUALI_CONVERSION
Main Program: SAPLRHPE_CCE_QUALI_CONVERSION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function RHPE_CCE_CONVERT_QUALIFICATION 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 'RHPE_CCE_CONVERT_QUALIFICATION'"CE/GE Qualifications: Conversion of qualifications.
EXPORTING
LT_OBJECTS = "Objects to be processed
LT_PERNR_CE = "Table of concurrent assignments
LT_CP_P = "Table of persons with their assignments
* L_TEST_RUN = 'X' "Flag: Test run
L_FIRST_PLVAR = "Plan variant of first central person to be processed
L_FIRST_CP = "First central person to be processed
L_LAST_PLVAR = "Plan variant of last central person to be processed
L_LAST_CP = "Last central person to be processed
* L_CLIENT = SY-MANDT "Client ID of Current User
IMPORTING
LT_PROT = "Log table
IMPORTING Parameters details for RHPE_CCE_CONVERT_QUALIFICATION
LT_OBJECTS - Objects to be processed
Data type: HROBJECT_TABOptional: No
Call by Reference: No ( called with pass by value option)
LT_PERNR_CE - Table of concurrent assignments
Data type: RHPE_CCE_HROBJID_TABLEOptional: No
Call by Reference: No ( called with pass by value option)
LT_CP_P - Table of persons with their assignments
Data type: RHPE_CCE_CP_P_TABOptional: No
Call by Reference: No ( called with pass by value option)
L_TEST_RUN - Flag: Test run
Data type: XFELDDefault: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
L_FIRST_PLVAR - Plan variant of first central person to be processed
Data type: PLVAROptional: No
Call by Reference: No ( called with pass by value option)
L_FIRST_CP - First central person to be processed
Data type: HROBJIDOptional: No
Call by Reference: No ( called with pass by value option)
L_LAST_PLVAR - Plan variant of last central person to be processed
Data type: PLVAROptional: No
Call by Reference: No ( called with pass by value option)
L_LAST_CP - Last central person to be processed
Data type: HROBJIDOptional: No
Call by Reference: No ( called with pass by value option)
L_CLIENT - Client ID of Current User
Data type: SY-MANDTDefault: SY-MANDT
Optional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RHPE_CCE_CONVERT_QUALIFICATION
LT_PROT - Log table
Data type: SPROT_U_TABOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RHPE_CCE_CONVERT_QUALIFICATION 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_lt_prot | TYPE SPROT_U_TAB, " | |||
| lv_lt_objects | TYPE HROBJECT_TAB, " | |||
| lv_lt_pernr_ce | TYPE RHPE_CCE_HROBJID_TABLE, " | |||
| lv_lt_cp_p | TYPE RHPE_CCE_CP_P_TAB, " | |||
| lv_l_test_run | TYPE XFELD, " 'X' | |||
| lv_l_first_plvar | TYPE PLVAR, " | |||
| lv_l_first_cp | TYPE HROBJID, " | |||
| lv_l_last_plvar | TYPE PLVAR, " | |||
| lv_l_last_cp | TYPE HROBJID, " | |||
| lv_l_client | TYPE SY-MANDT. " SY-MANDT |
|   CALL FUNCTION 'RHPE_CCE_CONVERT_QUALIFICATION' "CE/GE Qualifications: Conversion of qualifications |
| EXPORTING | ||
| LT_OBJECTS | = lv_lt_objects | |
| LT_PERNR_CE | = lv_lt_pernr_ce | |
| LT_CP_P | = lv_lt_cp_p | |
| L_TEST_RUN | = lv_l_test_run | |
| L_FIRST_PLVAR | = lv_l_first_plvar | |
| L_FIRST_CP | = lv_l_first_cp | |
| L_LAST_PLVAR | = lv_l_last_plvar | |
| L_LAST_CP | = lv_l_last_cp | |
| L_CLIENT | = lv_l_client | |
| IMPORTING | ||
| LT_PROT | = lv_lt_prot | |
| . " RHPE_CCE_CONVERT_QUALIFICATION | ||
ABAP code using 7.40 inline data declarations to call FM RHPE_CCE_CONVERT_QUALIFICATION
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.| DATA(ld_l_test_run) | = 'X'. | |||
| "SELECT single MANDT FROM SY INTO @DATA(ld_l_client). | ||||
| DATA(ld_l_client) | = SY-MANDT. | |||
Search for further information about these or an SAP related objects