GET_BUS_DATA SAP Method Get the communication structure









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

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


Parameters of Method GET_BUS_DATA

.

NameTypeData TypeDescriptionDefault Value
IS_CTXImportingTYPE
/BOBF/S_FRW_CTX_ACT
Context Information for Actions
IT_KEYImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IV_CALC_CONTEXTImportingTYPE
/SCMTMS/TCC_CALC_CONTEXT
Calculation Context
IV_DO_CALCImportingTYPE
BOOLEAN
Boolean Variable (X=true, -=false, space=unknown)
IV_DO_SIMULImportingTYPE
BOOLEAN
Boolean Variable (X=true, -=false, space=unknown)
IV_NO_CLEANUPImportingTYPE
BOOLEAN
X=Does not cleanup preproc. needs explicit cleanup if used
IV_SETTLEMENT_SCENARIOImportingTYPE
BOOLEAN
Boolean Variable (X=true, -=false, space=unknown)
ET_BUS_DATAExportingTYPE
/SCMTMS/T_TCC_COMM_ROOT
Communication Structure - Resolution Base Root



Exceptions of Method GET_BUS_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lv_ET_BUS_DATA TYPE /SCMTMS/T_TCC_COMM_ROOT,
lv_IS_CTX TYPE /BOBF/S_FRW_CTX_ACT,
lv_IT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IV_CALC_CONTEXT TYPE /SCMTMS/TCC_CALC_CONTEXT,
lv_IV_DO_CALC TYPE BOOLEAN,
lv_IV_DO_SIMUL TYPE BOOLEAN,
lv_IV_NO_CLEANUP TYPE BOOLEAN,
lv_IV_SETTLEMENT_SCENARIO TYPE BOOLEAN,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_AUNIT_TCC_HELPER=>GET_BUS_DATA(
EXPORTING
IS_CTX = lv_IS_CTX
IT_KEY = lv_IT_KEY
IV_CALC_CONTEXT = lv_IV_CALC_CONTEXT
IV_DO_CALC = lv_IV_DO_CALC
IV_DO_SIMUL = lv_IV_DO_SIMUL
IV_NO_CLEANUP = lv_IV_NO_CLEANUP
IV_SETTLEMENT_SCENARIO = lv_IV_SETTLEMENT_SCENARIO
IMPORTING
ET_BUS_DATA = lv_ET_BUS_DATA ).

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!