CHECK_AND_ADJUST_TASS SAP Method Pegging: Check and Adjust Assignments









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

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


Parameters of Method CHECK_AND_ADJUST_TASS

.

NameTypeData TypeDescriptionDefault Value
IS_LMGImportingTYPE
PEG_LLC_MAT_GRP
Pegging: MRP Low level code, Material, group WBS struct
IT_DROPPED_AAImportingTYPE
PEG_T_GRP
Pegging: Table of Groups
IT_DROPPED_RImportingTYPE
PEG_T_GRP
Pegging: Table of Groups
IT_HIST_TASSImportingTYPE
PEG_T_TASS
Pegging: Assignments Table
IT_NHA_TASSImportingTYPE
PEG_T_TASS
Pegging: Assignments Table
IT_REPLENImportingTYPE
PEG_T_REPLEN
Assignment Table
IT_TACTASSImportingTYPE
PEG_T_TACTASS
Pegging: Table of Issues
IT_TSTKImportingTYPE
PEG_T_TSTK
Pegging: Stock Table
IT_TXPTImportingTYPE
PEG_T_TXPT
Table of cross plant transfers w.r.t STO's
I_LOG_HANDLEImportingTYPE
BALLOGHNDL
Application Log: Log handle
CT_REAL_TASSChangingTYPE
PEG_T_TASS
Pegging: Assignments Table
CT_REAL_TMPChangingTYPE
PEG_T_TASS_TMP
Grp-to-Grp Transf. Pegging: Assign. of Replen to WBS Elems.
CT_REAL_WLSTChangingTYPE
PEG_T_TASS_WLST
Grp-to-Grp Transf. Pegging: Subcomponents of transf'd. mat.



Exceptions of Method CHECK_AND_ADJUST_TASS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_GPD_17.
DATA: lv_CT_REAL_TASS TYPE PEG_T_TASS,
lv_CT_REAL_TMP TYPE PEG_T_TASS_TMP,
lv_CT_REAL_WLST TYPE PEG_T_TASS_WLST,
lv_IS_LMG TYPE PEG_LLC_MAT_GRP,
lv_IT_DROPPED_AA TYPE PEG_T_GRP,
lv_IT_DROPPED_R TYPE PEG_T_GRP,
lv_IT_HIST_TASS TYPE PEG_T_TASS,
lv_IT_NHA_TASS TYPE PEG_T_TASS,
lv_IT_REPLEN TYPE PEG_T_REPLEN,
lv_IT_TACTASS TYPE PEG_T_TACTASS,
lv_IT_TSTK TYPE PEG_T_TSTK,
lv_IT_TXPT TYPE PEG_T_TXPT,
lv_I_LOG_HANDLE TYPE BALLOGHNDL,
lv_other TYPE c.

CALL METHOD lo_class=>CHECK_AND_ADJUST_TASS(
EXPORTING
IS_LMG = lv_IS_LMG
IT_DROPPED_AA = lv_IT_DROPPED_AA
IT_DROPPED_R = lv_IT_DROPPED_R
IT_HIST_TASS = lv_IT_HIST_TASS
IT_NHA_TASS = lv_IT_NHA_TASS
IT_REPLEN = lv_IT_REPLEN
IT_TACTASS = lv_IT_TACTASS
IT_TSTK = lv_IT_TSTK
IT_TXPT = lv_IT_TXPT
I_LOG_HANDLE = lv_I_LOG_HANDLE
CHANGING
CT_REAL_TASS = lv_CT_REAL_TASS
CT_REAL_TMP = lv_CT_REAL_TMP
CT_REAL_WLST = lv_CT_REAL_WLST ).

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!