DISTRIBUTE_WITHOUT_REFERENCE SAP Method of class IF_EX_BADI_GPD_07









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

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


Parameters of Method DISTRIBUTE_WITHOUT_REFERENCE

.

NameTypeData TypeDescriptionDefault Value
IT_COSPA_SUM_POSImportingTYPE
DIS_T_COSP
Distribution: Distribution of Primary Costs
IT_COSSA_SUM_POSImportingTYPE
DIS_T_COSS
Distribution: Distribution of Secondary Costs
IT_DIS_TOBJS_COSPImportingTYPE
DIS_T_TOBJS_COSP
Distribution: Verteilte Primärkosten
IT_DIS_TOBJS_COSSImportingTYPE
DIS_T_TOBJS_COSS
Distribution: Verteilte Sekundärkosten
IT_DIS_TOBJS_FMSUImportingTYPE
DIS_T_TOBJS_FMSU
Distribution: Verteilte Zahlungen
IT_FMSUA_SUM_POSImportingTYPE
DIS_T_FMSU
Distribution: Distribution of Payments
IT_PEG_TASSImportingTYPE
PEG_T_TASS
Tabelle der Zuordnungen
IT_TOBJS_HIS_COSPImportingTYPE
DIS_T_TOBJS_COSP
Distribution: Distributed Primary Costs
IT_TOBJS_HIS_COSSImportingTYPE
DIS_T_TOBJS_COSS
Distribution: Distributed Secondary Costs
IT_TOBJS_HIS_FMSUImportingTYPE
DIS_T_TOBJS_FMSU
Distribution: Distributed Payments
I_GJAHRImportingTYPE
COEP-GJAHR
Fiscal Year
I_GROUP_DATAImportingTYPE
GPD_TY_GROUP
Daten zum Dispo-PSP
I_LOG_HANDLEImportingTYPE
BALLOGHNDL
Anwendungs-Log: Handle eines Protokolls
I_PERIOImportingTYPE
COEP-PERIO
Period
CT_DIS_COSPChangingTYPE
DIS_T_COSP
Distribution: Verteilung Primärkosten
CT_DIS_COSSChangingTYPE
DIS_T_COSS
Distribution: Verteilung Sekundärkosten
CT_DIS_FMSUChangingTYPE
DIS_T_FMSU
Distribution: Verteilung Zahlungen



Exceptions of Method DISTRIBUTE_WITHOUT_REFERENCE

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: lo_class TYPE REF TO IF_EX_BADI_GPD_07.
DATA: lv_CT_DIS_COSP TYPE DIS_T_COSP,
lv_CT_DIS_COSS TYPE DIS_T_COSS,
lv_CT_DIS_FMSU TYPE DIS_T_FMSU,
lv_IT_COSPA_SUM_POS TYPE DIS_T_COSP,
lv_IT_COSSA_SUM_POS TYPE DIS_T_COSS,
lv_IT_DIS_TOBJS_COSP TYPE DIS_T_TOBJS_COSP,
lv_IT_DIS_TOBJS_COSS TYPE DIS_T_TOBJS_COSS,
lv_IT_DIS_TOBJS_FMSU TYPE DIS_T_TOBJS_FMSU,
lv_IT_FMSUA_SUM_POS TYPE DIS_T_FMSU,
lv_IT_PEG_TASS TYPE PEG_T_TASS,
lv_IT_TOBJS_HIS_COSP TYPE DIS_T_TOBJS_COSP,
lv_IT_TOBJS_HIS_COSS TYPE DIS_T_TOBJS_COSS,
lv_IT_TOBJS_HIS_FMSU TYPE DIS_T_TOBJS_FMSU,
lv_I_GJAHR TYPE COEP-GJAHR,
lv_I_GROUP_DATA TYPE GPD_TY_GROUP,
lv_I_LOG_HANDLE TYPE BALLOGHNDL,
lv_I_PERIO TYPE COEP-PERIO,
lv_other TYPE c.

CALL METHOD lo_class=>DISTRIBUTE_WITHOUT_REFERENCE(
EXPORTING
IT_COSPA_SUM_POS = lv_IT_COSPA_SUM_POS
IT_COSSA_SUM_POS = lv_IT_COSSA_SUM_POS
IT_DIS_TOBJS_COSP = lv_IT_DIS_TOBJS_COSP
IT_DIS_TOBJS_COSS = lv_IT_DIS_TOBJS_COSS
IT_DIS_TOBJS_FMSU = lv_IT_DIS_TOBJS_FMSU
IT_FMSUA_SUM_POS = lv_IT_FMSUA_SUM_POS
IT_PEG_TASS = lv_IT_PEG_TASS
IT_TOBJS_HIS_COSP = lv_IT_TOBJS_HIS_COSP
IT_TOBJS_HIS_COSS = lv_IT_TOBJS_HIS_COSS
IT_TOBJS_HIS_FMSU = lv_IT_TOBJS_HIS_FMSU
I_GJAHR = lv_I_GJAHR
I_GROUP_DATA = lv_I_GROUP_DATA
I_LOG_HANDLE = lv_I_LOG_HANDLE
I_PERIO = lv_I_PERIO
CHANGING
CT_DIS_COSP = lv_CT_DIS_COSP
CT_DIS_COSS = lv_CT_DIS_COSS
CT_DIS_FMSU = lv_CT_DIS_FMSU ).

Links to Related Class(s)

IF_EX_BA...
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!