HANDLE_DATA_MODIFICATION SAP Method Handle data modification









Below is documentation, parameters and attributes of ABAP Method HANDLE_DATA_MODIFICATION within SAP class IF_HRPAYFR_N4DS_CORR_INTEG_MGR. 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_HRPAYFR_N4DS_CORR_INTEG_MGR 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 HANDLE_DATA_MODIFICATION can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method HANDLE_DATA_MODIFICATION

.

NameTypeData TypeDescriptionDefault Value
IO_HRPAYFR_N4DSImportingTYPE REF TO
IF_HRPAYFR_N4DS
N4DS declaration
IO_N4DS_DAQImportingTYPE REF TO
IF_HRPAYFR_N4DS_DAQ
DAQ implementation for N4DS
IS_P3340ImportingTYPE
P3340
HR master record for infotype 3340
IS_SECTNImportingTYPE
P99SD_SECTN
IS_T5FITCORRImportingTYPE
T5FITCORR
IT presettings for corrections
IT_DFIESImportingTYPE
DFIES_TABLE
Table for defined entries
ET_HR_MSGExportingTYPE
HR99S_MSG_TAB
EV_IS_OKExportingTYPE
XFELD
Recording modified
EV_NB_FIELD_MODExportingTYPE
I
Num. modified fields
EV_NB_MODExportingTYPE
I
Num. mod. record. (sections)
CS_INFTY_DYN_DATAChangingTYPE
ANY
Infotype 3340 dynamic data
CS_SECTN_DATAChangingTYPE
ANY
CT_VALUEChangingTYPE
P99SD_TAB_VALUE



Exceptions of Method HANDLE_DATA_MODIFICATION

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_HRPAYFR_N4DS_CORR_INTEG_MGR.
DATA: lv_CS_INFTY_DYN_DATA TYPE ANY,
lv_CS_SECTN_DATA TYPE ANY,
lv_CT_VALUE TYPE P99SD_TAB_VALUE,
lv_ET_HR_MSG TYPE HR99S_MSG_TAB,
lv_EV_IS_OK TYPE XFELD,
lv_EV_NB_FIELD_MOD TYPE I,
lv_EV_NB_MOD TYPE I,
lv_IO_HRPAYFR_N4DS TYPE IF_HRPAYFR_N4DS,
lv_IO_N4DS_DAQ TYPE IF_HRPAYFR_N4DS_DAQ,
lv_IS_P3340 TYPE P3340,
lv_IS_SECTN TYPE P99SD_SECTN,
lv_IS_T5FITCORR TYPE T5FITCORR,
lv_IT_DFIES TYPE DFIES_TABLE,
lv_other TYPE c.

CALL METHOD lo_class=>HANDLE_DATA_MODIFICATION(
EXPORTING
IO_HRPAYFR_N4DS = lv_IO_HRPAYFR_N4DS
IO_N4DS_DAQ = lv_IO_N4DS_DAQ
IS_P3340 = lv_IS_P3340
IS_SECTN = lv_IS_SECTN
IS_T5FITCORR = lv_IS_T5FITCORR
IT_DFIES = lv_IT_DFIES
IMPORTING
ET_HR_MSG = lv_ET_HR_MSG
EV_IS_OK = lv_EV_IS_OK
EV_NB_FIELD_MOD = lv_EV_NB_FIELD_MOD
EV_NB_MOD = lv_EV_NB_MOD
CHANGING
CS_INFTY_DYN_DATA = lv_CS_INFTY_DYN_DATA
CS_SECTN_DATA = lv_CS_SECTN_DATA
CT_VALUE = lv_CT_VALUE ).

Links to Related Class(s)

IF_HRPAY...
Full list of available SAP object classes

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!