EXECUTE_PACKAGING SAP Method Execute Packaging









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

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


Parameters of Method EXECUTE_PACKAGING

.

NameTypeData TypeDescriptionDefault Value
IV_PACK_SIZEImportingTYPE
I
IV_SOFT_SPLITImportingTYPE
BOOLEAN
Boolean Variable (X=true, -=false, space=unknown)
ET_BILLING_INDEX_CURRExportingTYPE
/SCMTMS/T_CFIR_BILL_INDEX
Table type for FWSD billing index
ET_TRQ_ROOT_KEYSExportingTYPE
/BOBF/T_FRW_KEY
Key Table
EV_PROCESSEDExportingTYPE
BOOLEAN
Boolean Variable (X=true, -=false, space=unknown)



Exceptions of Method EXECUTE_PACKAGING

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMTMS/IF_CFIR_BILL_IND_HELP.
DATA: lv_ET_BILLING_INDEX_CURR TYPE /SCMTMS/T_CFIR_BILL_INDEX,
lv_ET_TRQ_ROOT_KEYS TYPE /BOBF/T_FRW_KEY,
lv_EV_PROCESSED TYPE BOOLEAN,
lv_IV_PACK_SIZE TYPE I,
lv_IV_SOFT_SPLIT TYPE BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>EXECUTE_PACKAGING(
EXPORTING
IV_PACK_SIZE = lv_IV_PACK_SIZE
IV_SOFT_SPLIT = lv_IV_SOFT_SPLIT
IMPORTING
ET_BILLING_INDEX_CURR = lv_ET_BILLING_INDEX_CURR
ET_TRQ_ROOT_KEYS = lv_ET_TRQ_ROOT_KEYS
EV_PROCESSED = lv_EV_PROCESSED ).

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!