CHANGE_CFREC SAP Method Change Cash Receipts









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

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


Parameters of Method CHANGE_CFREC

.

NameTypeData TypeDescriptionDefault Value
IS_FKKKOImportingTYPE
FKKKO
Header Data In Open Item Accounting Document
IS_HCM_DETAILImportingTYPE
/GSINS/INSH_STR_CD_PERS_DETAIL
FS-CD: Person HCM detail
IT_FKKOPImportingTYPE
FKKOP_TAB
Business Partner Items (Table for Structure FKKOP)
IT_FKKOPKImportingTYPE
FKKOPK_TAB
General Ledger Items (Table for Structure FKKOPK)
ET_RETURNExportingTYPE
BAPIRETTAB
Table with BAPI Return Information
CT_CFRECChangingTYPE
VVKKCFREC_TAB
Cash Receipts to be Transferred to Claims System



Exceptions of Method CHANGE_CFREC

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /GSINS/INSH_IF_ES_CD_PT.
DATA: lv_CT_CFREC TYPE VVKKCFREC_TAB,
lv_ET_RETURN TYPE BAPIRETTAB,
lv_IS_FKKKO TYPE FKKKO,
lv_IS_HCM_DETAIL TYPE /GSINS/INSH_STR_CD_PERS_DETAIL,
lv_IT_FKKOP TYPE FKKOP_TAB,
lv_IT_FKKOPK TYPE FKKOPK_TAB,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_CFREC(
EXPORTING
IS_FKKKO = lv_IS_FKKKO
IS_HCM_DETAIL = lv_IS_HCM_DETAIL
IT_FKKOP = lv_IT_FKKOP
IT_FKKOPK = lv_IT_FKKOPK
IMPORTING
ET_RETURN = lv_ET_RETURN
CHANGING
CT_CFREC = lv_CT_CFREC ).

Links to Related Class(s)

/GSINS/I...
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!