CREATE_LOG_4_INT_CFIR SAP Method Create log for internal settlement









Below is documentation, parameters and attributes of ABAP Method CREATE_LOG_4_INT_CFIR within SAP class /SCMTMS/CL_CFIR_BATCH_HELPER. 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 /SCMTMS/CL_CFIR_BATCH_HELPER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method CREATE_LOG_4_INT_CFIR can also be found below:

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


Parameters of Method CREATE_LOG_4_INT_CFIR

.

NameTypeData TypeDescriptionDefault Value
IO_MESSAGEImportingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object
IT_INV_ITEMImportingTYPE
/SCMTMS/T_CFIR_ITEM_NODE_K
Item Node
IT_INV_KEYSImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_INV_ROOTImportingTYPE
/SCMTMS/T_CFIR_ROOT_NODE_K
Root Node
IT_INV_ROOT2ImportingTYPE
/SCMTMS/T_CFIR_ROOT_NODE_K
Root Node
IT_TRQ_DATAImportingTYPE
/SCMTMS/T_TRQ_ROOT_K
Transportation Request Root
IV_TESTImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ET_BAPIRETExportingTYPE
BAPIRETTAB
Table with BAPI Return Information
CO_MESSAGEChangingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object



Exceptions of Method CREATE_LOG_4_INT_CFIR

This method does not have any exceptions

Example ABAP coding


DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_BAPIRET TYPE BAPIRETTAB,
lv_IO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_IT_INV_ITEM TYPE /SCMTMS/T_CFIR_ITEM_NODE_K,
lv_IT_INV_KEYS TYPE /BOBF/T_FRW_KEY,
lv_IT_INV_ROOT TYPE /SCMTMS/T_CFIR_ROOT_NODE_K,
lv_IT_INV_ROOT2 TYPE /SCMTMS/T_CFIR_ROOT_NODE_K,
lv_IT_TRQ_DATA TYPE /SCMTMS/T_TRQ_ROOT_K,
lv_IV_TEST TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_CFIR_BATCH_HELPER=>CREATE_LOG_4_INT_CFIR(
EXPORTING
IO_MESSAGE = lv_IO_MESSAGE
IT_INV_ITEM = lv_IT_INV_ITEM
IT_INV_KEYS = lv_IT_INV_KEYS
IT_INV_ROOT = lv_IT_INV_ROOT
IT_INV_ROOT2 = lv_IT_INV_ROOT2
IT_TRQ_DATA = lv_IT_TRQ_DATA
IV_TEST = lv_IV_TEST
IMPORTING
ET_BAPIRET = lv_ET_BAPIRET
CHANGING
CO_MESSAGE = lv_CO_MESSAGE ).

Links to Related Class(s)

/SCMTMS/...
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!