BUILD_REAL_PEGS SAP Method of class IF_EX_BADI_GPD_11
Below is documentation, parameters and attributes of ABAP Method BUILD_REAL_PEGS within SAP class IF_EX_BADI_GPD_11. 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_11 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 BUILD_REAL_PEGS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method BUILD_REAL_PEGS
.| Name | Type | Data Type | Description | Default Value |
| I_PEG_CLIENT | Importing | TYPE PEG_CLIENT | Pegging: Customizing on Plant Level | |
| PS_LMG | Importing | TYPE PEG_LLC_MAT_GRP | Pegging: MRP Low level code, Material, group WBS struct | |
| PT_HIST_PEG_ASS | Importing | TYPE PEG_T_TASS | Assignment Table | |
| T_PEG_TASS_HIST | Importing | TYPE PEG_T_TASS | Assignment Table | |
| PT_PEG_ASS_MRP | Changing | TYPE PEG_T_TASS | Assignment Table | |
| PT_REAL_PEG_ASS | Changing | TYPE PEG_T_TASS | Assignment Table | |
| PT_REPLEN | Changing | TYPE PEG_T_REPLEN | Assignment Table | |
| T_GRPGA | Changing | TYPE PEG_T_GRPGA | Pegging: Grouping table for fixing rule |
Exceptions of Method BUILD_REAL_PEGS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_GPD_11.
DATA: lv_I_PEG_CLIENT TYPE PEG_CLIENT,
lv_PS_LMG TYPE PEG_LLC_MAT_GRP,
lv_PT_HIST_PEG_ASS TYPE PEG_T_TASS,
lv_PT_PEG_ASS_MRP TYPE PEG_T_TASS,
lv_PT_REAL_PEG_ASS TYPE PEG_T_TASS,
lv_PT_REPLEN TYPE PEG_T_REPLEN,
lv_T_GRPGA TYPE PEG_T_GRPGA,
lv_T_PEG_TASS_HIST TYPE PEG_T_TASS,
lv_other TYPE c.
CALL METHOD lo_class=>BUILD_REAL_PEGS(
EXPORTING
I_PEG_CLIENT = lv_I_PEG_CLIENT
PS_LMG = lv_PS_LMG
PT_HIST_PEG_ASS = lv_PT_HIST_PEG_ASS
T_PEG_TASS_HIST = lv_T_PEG_TASS_HIST
CHANGING
PT_PEG_ASS_MRP = lv_PT_PEG_ASS_MRP
PT_REAL_PEG_ASS = lv_PT_REAL_PEG_ASS
PT_REPLEN = lv_PT_REPLEN
T_GRPGA = lv_T_GRPGA ).
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