SAP HRSFI_COMP_GET_MPFD_INFO Function Module for Get Information for an Activation Field









HRSFI_COMP_GET_MPFD_INFO is a standard hrsfi comp get mpfd info SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Information for an Activation Field 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 hrsfi comp get mpfd info FM, simply by entering the name HRSFI_COMP_GET_MPFD_INFO into the relevant SAP transaction such as SE37 or SE38.

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



Function HRSFI_COMP_GET_MPFD_INFO 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 'HRSFI_COMP_GET_MPFD_INFO'"Get Information for an Activation Field
EXPORTING
* IV_ACTIVATION_TYPE = "Activation Type for Importing Compensation Data from SFSF
* IV_FIELD_MAPPING = "Field Mapping for Importing Compensation Data from SFSF
IV_INT_FIELD = "Internal ID for Activation Field

IMPORTING
ES_FIELD_INFO = "Field Information for Compensation Activation BAdI

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for HRSFI_COMP_GET_MPFD_INFO

IV_ACTIVATION_TYPE - Activation Type for Importing Compensation Data from SFSF

Data type: HRSFI_COMP_IMPORT_ACT_TYPE
Optional: Yes
Call by Reference: Yes

IV_FIELD_MAPPING - Field Mapping for Importing Compensation Data from SFSF

Data type: HRSFI_COMP_IMPORT_MAPPING
Optional: Yes
Call by Reference: Yes

IV_INT_FIELD - Internal ID for Activation Field

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

EXPORTING Parameters details for HRSFI_COMP_GET_MPFD_INFO

ES_FIELD_INFO - Field Information for Compensation Activation BAdI

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

EXCEPTIONS details

NOT_FOUND - The specified field was not found

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HRSFI_COMP_GET_MPFD_INFO 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_not_found  TYPE STRING, "   
lv_es_field_info  TYPE HRSFI_S_COMP_BADI_FIELDS, "   
lv_iv_activation_type  TYPE HRSFI_COMP_IMPORT_ACT_TYPE, "   
lv_iv_field_mapping  TYPE HRSFI_COMP_IMPORT_MAPPING, "   
lv_iv_int_field  TYPE HRSFI_COMP_IMPORT_FIELD_ID. "   

  CALL FUNCTION 'HRSFI_COMP_GET_MPFD_INFO'  "Get Information for an Activation Field
    EXPORTING
         IV_ACTIVATION_TYPE = lv_iv_activation_type
         IV_FIELD_MAPPING = lv_iv_field_mapping
         IV_INT_FIELD = lv_iv_int_field
    IMPORTING
         ES_FIELD_INFO = lv_es_field_info
    EXCEPTIONS
        NOT_FOUND = 1
. " HRSFI_COMP_GET_MPFD_INFO




ABAP code using 7.40 inline data declarations to call FM HRSFI_COMP_GET_MPFD_INFO

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!