GET_CFIR_ITEMS_FOR_DELETION SAP Method finds cfir items from zero charge items









Below is documentation, parameters and attributes of ABAP Method GET_CFIR_ITEMS_FOR_DELETION within SAP class /SCMTMS/CL_CFIR_HELPER. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

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_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 GET_CFIR_ITEMS_FOR_DELETION can also be found below:

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


Parameters of Method GET_CFIR_ITEMS_FOR_DELETION

.

NameTypeData TypeDescriptionDefault Value
IT_CFIR_CHRG_ROOTImportingTYPE
/SCMTMS/T_TCC_ROOT_K
Root
IT_CFIR_NON_ZERO_CHRG_ITEMImportingTYPE
/SCMTMS/T_TCC_CHRGITEM_K
Charge Item
IT_CFIR_ZERO_CHRG_ITEMImportingTYPE
/SCMTMS/T_TCC_CHRGITEM_K
Charge Item
IT_ORG_ID_MAPImportingTYPE
/SCMB/T_ORGUNIT
Organizational Unit
IT_TOR_ROOTImportingTYPE
/SCMTMS/T_TOR_ROOT_K
Root Node
IT_TRQ_ROOTImportingTYPE
/SCMTMS/T_TRQ_ROOT_K
Transportation Request Root
IV_RESOURCE_BASEDImportingTYPE
BOOLEAN
FWSD Classification
CO_MESSAGEChangingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object
CT_CFIR_ITEMChangingTYPE
/SCMTMS/T_CFIR_ITEM_NODE_K
Item Node
CT_DISCARDED_KEY_MAPChangingTYPE
/SCMTMS/IF_TCC_PREPROC=>TT_KEY_LINK
CT_MODIFICATIONChangingTYPE
/BOBF/T_FRW_MODIFICATION
Changes



Exceptions of Method GET_CFIR_ITEMS_FOR_DELETION

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_CT_CFIR_ITEM TYPE /SCMTMS/T_CFIR_ITEM_NODE_K,
lv_CT_DISCARDED_KEY_MAP TYPE /SCMTMS/IF_TCC_PREPROC=>TT_KEY_LINK,
lv_CT_MODIFICATION TYPE /BOBF/T_FRW_MODIFICATION,
lv_IT_CFIR_CHRG_ROOT TYPE /SCMTMS/T_TCC_ROOT_K,
lv_IT_CFIR_NON_ZERO_CHRG_ITEM TYPE /SCMTMS/T_TCC_CHRGITEM_K,
lv_IT_CFIR_ZERO_CHRG_ITEM TYPE /SCMTMS/T_TCC_CHRGITEM_K,
lv_IT_ORG_ID_MAP TYPE /SCMB/T_ORGUNIT,
lv_IT_TOR_ROOT TYPE /SCMTMS/T_TOR_ROOT_K,
lv_IT_TRQ_ROOT TYPE /SCMTMS/T_TRQ_ROOT_K,
lv_IV_RESOURCE_BASED TYPE BOOLEAN,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_CFIR_HELPER=>GET_CFIR_ITEMS_FOR_DELETION(
EXPORTING
IT_CFIR_CHRG_ROOT = lv_IT_CFIR_CHRG_ROOT
IT_CFIR_NON_ZERO_CHRG_ITEM = lv_IT_CFIR_NON_ZERO_CHRG_ITEM
IT_CFIR_ZERO_CHRG_ITEM = lv_IT_CFIR_ZERO_CHRG_ITEM
IT_ORG_ID_MAP = lv_IT_ORG_ID_MAP
IT_TOR_ROOT = lv_IT_TOR_ROOT
IT_TRQ_ROOT = lv_IT_TRQ_ROOT
IV_RESOURCE_BASED = lv_IV_RESOURCE_BASED
CHANGING
CO_MESSAGE = lv_CO_MESSAGE
CT_CFIR_ITEM = lv_CT_CFIR_ITEM
CT_DISCARDED_KEY_MAP = lv_CT_DISCARDED_KEY_MAP
CT_MODIFICATION = lv_CT_MODIFICATION ).

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!