EXECUTE_FINAL SAP Method Execute Breakpoint logic for incomplete Repl. in final pass









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

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


Parameters of Method EXECUTE_FINAL

.

NameTypeData TypeDescriptionDefault Value
IS_PEG_RUNPROFImportingTYPE
PEG_RUNPROF
Pegging: Run Profile
IT_HIST_TACTASSImportingTYPE
PEG_T_TACTASS
Pegging: Table of Issues
IT_HIST_TASSImportingTYPE
PEG_T_TASS
Pegging: Assignments Table
IT_HIST_TSTKImportingTYPE
PEG_T_TSTK
Pegging: Stock Table
IT_HIST_TXPTImportingTYPE
PEG_T_TXPT
Table of cross plant transfers w.r.t STO's
IT_MBImportingTYPE
TY_T_MB
IT_MDBSImportingTYPE
PEG_TH_MDBS
Purchase Document data view hashed tale
IT_MDFAImportingTYPE
PEG_TH_MDFA
Order data view hashed tale
IT_PEGEXC_WRK_GRPImportingTYPE
PEGEXC_T_WRK_GRP
Pegging: Distribution of surplus, scrap, lost, plant & group
IT_PEG_EXC_GRPNRImportingTYPE
PEG_T_EXC_GRPNR
Pegging: Distribution of surplus, scrap, lost - group based
IT_PEG_EXC_WERKSImportingTYPE
PEG_T_EXC_WERKS
Pegging: Distribution of surplus, scrap, lost - Plant based
CT_REAL_TASSChangingTYPE
PEG_T_TASS
Current assignment
CT_OPEN_TASSChangingTYPE
PEG_T_OPEN_TASS
Open tass



Exceptions of Method EXECUTE_FINAL

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_BADI_GPD_PEG_CHECK_ADJUST.
DATA: lv_CT_REAL_TASS TYPE PEG_T_TASS,
lv_CT_OPEN_TASS TYPE PEG_T_OPEN_TASS,
lv_IS_PEG_RUNPROF TYPE PEG_RUNPROF,
lv_IT_HIST_TACTASS TYPE PEG_T_TACTASS,
lv_IT_HIST_TASS TYPE PEG_T_TASS,
lv_IT_HIST_TSTK TYPE PEG_T_TSTK,
lv_IT_HIST_TXPT TYPE PEG_T_TXPT,
lv_IT_MB TYPE TY_T_MB,
lv_IT_MDBS TYPE PEG_TH_MDBS,
lv_IT_MDFA TYPE PEG_TH_MDFA,
lv_IT_PEGEXC_WRK_GRP TYPE PEGEXC_T_WRK_GRP,
lv_IT_PEG_EXC_GRPNR TYPE PEG_T_EXC_GRPNR,
lv_IT_PEG_EXC_WERKS TYPE PEG_T_EXC_WERKS,
lv_other TYPE c.

CALL METHOD lo_class=>EXECUTE_FINAL(
EXPORTING
IS_PEG_RUNPROF = lv_IS_PEG_RUNPROF
IT_HIST_TACTASS = lv_IT_HIST_TACTASS
IT_HIST_TASS = lv_IT_HIST_TASS
IT_HIST_TSTK = lv_IT_HIST_TSTK
IT_HIST_TXPT = lv_IT_HIST_TXPT
IT_MB = lv_IT_MB
IT_MDBS = lv_IT_MDBS
IT_MDFA = lv_IT_MDFA
IT_PEGEXC_WRK_GRP = lv_IT_PEGEXC_WRK_GRP
IT_PEG_EXC_GRPNR = lv_IT_PEG_EXC_GRPNR
IT_PEG_EXC_WERKS = lv_IT_PEG_EXC_WERKS
CHANGING
CT_REAL_TASS = lv_CT_REAL_TASS
CT_OPEN_TASS = lv_CT_OPEN_TASS ).

Links to Related Class(s)

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