LINK_DELTA_DOCUMENTS SAP Method Export of FPM Delta Documents and Transfer of FM Documents
Below is documentation, parameters and attributes of ABAP Method LINK_DELTA_DOCUMENTS within SAP class IF_EX_HRFPM_DIFFERENCE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_HRFPM_DIFFERENCE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method LINK_DELTA_DOCUMENTS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method LINK_DELTA_DOCUMENTS
.| Name | Type | Data Type | Description | Default Value |
| FLT_VAL | Importing | TYPE HRFPM_DI_FILTER | Filter Value of Method LINK_DELTA_DOCUMENTS | |
| IP_PCS_TYPE_ID | Importing | TYPE HRFPM_PCS_TYPE_ID | Relevance Type ID for Personnel Cost Savings | |
| I_BEGDA | Importing | TYPE BEGDA | Valid from Date | |
| I_ENDDA | Importing | TYPE ENDDA | Valid To Date | |
| I_RUNID | Importing | TYPE HRFPM_RUNID | FPM: Individual ID of a Commitment Run | |
| I_S_DELTA_DOCUMENT | Importing | TYPE HRFPM_FPM_DELTA_DOC_POS | Current Object in Commitment Run | |
| E_T_POSITIONS | Exporting | TYPE HRFPM_ACC_IF_IT | Docs to be created for Pers. Cost Savings in HRFPM_FM_POS | |
| E_T_POSITIONS_CHANGE | Exporting | TYPE HRFPM_ACC_IF_IT | Docs to be changed for Pers. Cost Savings in HRFPM_FM_POS |
Exceptions of Method LINK_DELTA_DOCUMENTS
CX_HRFPM - Exception Class for Module 'Administrator'Example ABAP coding
DATA: lo_class TYPE REF TO IF_EX_HRFPM_DIFFERENCE.
DATA: lv_E_T_POSITIONS TYPE HRFPM_ACC_IF_IT,
lv_E_T_POSITIONS_CHANGE TYPE HRFPM_ACC_IF_IT,
lv_FLT_VAL TYPE HRFPM_DI_FILTER,
lv_IP_PCS_TYPE_ID TYPE HRFPM_PCS_TYPE_ID,
lv_I_BEGDA TYPE BEGDA,
lv_I_ENDDA TYPE ENDDA,
lv_I_RUNID TYPE HRFPM_RUNID,
lv_I_S_DELTA_DOCUMENT TYPE HRFPM_FPM_DELTA_DOC_POS,
lv_other TYPE c.
CALL METHOD lo_class=>LINK_DELTA_DOCUMENTS(
EXPORTING
FLT_VAL = lv_FLT_VAL
IP_PCS_TYPE_ID = lv_IP_PCS_TYPE_ID
I_BEGDA = lv_I_BEGDA
I_ENDDA = lv_I_ENDDA
I_RUNID = lv_I_RUNID
I_S_DELTA_DOCUMENT = lv_I_S_DELTA_DOCUMENT
IMPORTING
E_T_POSITIONS = lv_E_T_POSITIONS
E_T_POSITIONS_CHANGE = lv_E_T_POSITIONS_CHANGE ).
Links to Related Class(s)
IF_EX_HR...Full list of available SAP object classes
Search for further information about these or an SAP related objects