SAP HRPBSINCLAIMS_CLS_MODIFY_TD Function Module for Modify only the transparent data of the request.









HRPBSINCLAIMS_CLS_MODIFY_TD is a standard hrpbsinclaims cls modify td SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Modify only the transparent data of the request. 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 hrpbsinclaims cls modify td FM, simply by entering the name HRPBSINCLAIMS_CLS_MODIFY_TD into the relevant SAP transaction such as SE37 or SE38.

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



Function HRPBSINCLAIMS_CLS_MODIFY_TD 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 'HRPBSINCLAIMS_CLS_MODIFY_TD'"Modify only the transparent data of the request.
EXPORTING
IFD_REFNR = "Request Reference Number
* ITB_MLCNT = "Table to Store Multiple Line Content
* IST_ARPAY = "Structure to Store Payment Details
* IFD_NOCMT = ' ' "Checkbox
IFD_WCDAC = "What Cluster Data Changed
IST_TRANS = "Structure for Transaction Data
* IST_HEADR = "Structure to Store Standard Header Content
* ITB_ADREP = "Table to Store Payment / Repayment Details
* ITB_DEPDT = "Table to Store Dependant Data
* ITB_RQRMK = "Table to Store Remarks Data
* ITB_FDATA = "Table to Send Attachments Data to ESS
* ITB_INFDT = "Table to Store Infotype Data
* IST_HAEDC = "Structure to Store Dynamic Header Content

IMPORTING
EFD_REFNR = "System generated Reference Number
EFD_ERRFG = "General Flag
ETB_ERRTB = "Error Messages
.



IMPORTING Parameters details for HRPBSINCLAIMS_CLS_MODIFY_TD

IFD_REFNR - Request Reference Number

Data type: PIN_REFNR
Optional: No
Call by Reference: No ( called with pass by value option)

ITB_MLCNT - Table to Store Multiple Line Content

Data type: HRESSINML_CONTENT
Optional: Yes
Call by Reference: No ( called with pass by value option)

IST_ARPAY - Structure to Store Payment Details

Data type: PIN_CLAIMS_AGAINST_ADVANCE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IFD_NOCMT - Checkbox

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IFD_WCDAC - What Cluster Data Changed

Data type: PIN_WCDAC
Optional: No
Call by Reference: No ( called with pass by value option)

IST_TRANS - Structure for Transaction Data

Data type: PIN_CLTRAN_DATA
Optional: No
Call by Reference: No ( called with pass by value option)

IST_HEADR - Structure to Store Standard Header Content

Data type: PIN_HEADER_SF
Optional: Yes
Call by Reference: No ( called with pass by value option)

ITB_ADREP - Table to Store Payment / Repayment Details

Data type: HRESSINADV_REPAY
Optional: Yes
Call by Reference: No ( called with pass by value option)

ITB_DEPDT - Table to Store Dependant Data

Data type: HRESSINDEP_DATA
Optional: Yes
Call by Reference: No ( called with pass by value option)

ITB_RQRMK - Table to Store Remarks Data

Data type: HRESSINREMARKS
Optional: Yes
Call by Reference: No ( called with pass by value option)

ITB_FDATA - Table to Send Attachments Data to ESS

Data type: HRESSIN_FILE_DATA
Optional: Yes
Call by Reference: No ( called with pass by value option)

ITB_INFDT - Table to Store Infotype Data

Data type: HRESSIN_INFTY
Optional: Yes
Call by Reference: No ( called with pass by value option)

IST_HAEDC - Structure to Store Dynamic Header Content

Data type: PIN_HLCU_FIELD
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for HRPBSINCLAIMS_CLS_MODIFY_TD

EFD_REFNR - System generated Reference Number

Data type: PIN_REFNR
Optional: No
Call by Reference: No ( called with pass by value option)

EFD_ERRFG - General Flag

Data type: FLAG
Optional: No
Call by Reference: No ( called with pass by value option)

ETB_ERRTB - Error Messages

Data type: BAPIRET2_TAB
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for HRPBSINCLAIMS_CLS_MODIFY_TD 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_efd_refnr  TYPE PIN_REFNR, "   
lv_ifd_refnr  TYPE PIN_REFNR, "   
lv_itb_mlcnt  TYPE HRESSINML_CONTENT, "   
lv_ist_arpay  TYPE PIN_CLAIMS_AGAINST_ADVANCE, "   
lv_ifd_nocmt  TYPE XFELD, "   SPACE
lv_ifd_wcdac  TYPE PIN_WCDAC, "   
lv_efd_errfg  TYPE FLAG, "   
lv_ist_trans  TYPE PIN_CLTRAN_DATA, "   
lv_etb_errtb  TYPE BAPIRET2_TAB, "   
lv_ist_headr  TYPE PIN_HEADER_SF, "   
lv_itb_adrep  TYPE HRESSINADV_REPAY, "   
lv_itb_depdt  TYPE HRESSINDEP_DATA, "   
lv_itb_rqrmk  TYPE HRESSINREMARKS, "   
lv_itb_fdata  TYPE HRESSIN_FILE_DATA, "   
lv_itb_infdt  TYPE HRESSIN_INFTY, "   
lv_ist_haedc  TYPE PIN_HLCU_FIELD. "   

  CALL FUNCTION 'HRPBSINCLAIMS_CLS_MODIFY_TD'  "Modify only the transparent data of the request.
    EXPORTING
         IFD_REFNR = lv_ifd_refnr
         ITB_MLCNT = lv_itb_mlcnt
         IST_ARPAY = lv_ist_arpay
         IFD_NOCMT = lv_ifd_nocmt
         IFD_WCDAC = lv_ifd_wcdac
         IST_TRANS = lv_ist_trans
         IST_HEADR = lv_ist_headr
         ITB_ADREP = lv_itb_adrep
         ITB_DEPDT = lv_itb_depdt
         ITB_RQRMK = lv_itb_rqrmk
         ITB_FDATA = lv_itb_fdata
         ITB_INFDT = lv_itb_infdt
         IST_HAEDC = lv_ist_haedc
    IMPORTING
         EFD_REFNR = lv_efd_refnr
         EFD_ERRFG = lv_efd_errfg
         ETB_ERRTB = lv_etb_errtb
. " HRPBSINCLAIMS_CLS_MODIFY_TD




ABAP code using 7.40 inline data declarations to call FM HRPBSINCLAIMS_CLS_MODIFY_TD

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_ifd_nocmt) = ' '.
 
 
 
 
 
 
 
 
 
 
 
 


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!