EXIT_SAPLIWP3_010 SAP Method Determine Due Packages for Performance-Based Strategy Plans
Below is documentation, parameters and attributes of ABAP Method EXIT_SAPLIWP3_010 within SAP class IF_EX_BADI_EAM_EXIT_IPRM0005. 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_EAM_EXIT_IPRM0005 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 EXIT_SAPLIWP3_010 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXIT_SAPLIWP3_010
.| Name | Type | Data Type | Description | Default Value |
| SAP_MHIS_IMP | Importing | TYPE WC_T_WMHIS | Scheduling Records | |
| SAP_MMPT_IMP | Importing | TYPE WC_WMMPT | ||
| SAP_MPLA_IMP | Importing | TYPE WC_WMPLA | Maintenance Plan | |
| SAP_OFFZE_IMP | Importing | TYPE MHIS-OFFZE | Offset in current cycle | |
| SAP_VER_PAK_IMP | Importing | TYPE T_T351P | Maintenance Packages | |
| SAP_CALLS_ON_HOLD | Changing | TYPE MPLA-AEKNZ | X = Delete Waiting Calls If Any Exist in IP30 | |
| SAP_OFFZE_EXP | Changing | TYPE MHIS-OFFZE | Offset in current cycle | |
| SAP_UPDATE | Changing | TYPE MPLA-AEKNZ | X = Change Offset Occurs |
Exceptions of Method EXIT_SAPLIWP3_010
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_EAM_EXIT_IPRM0005.
DATA: lv_SAP_CALLS_ON_HOLD TYPE MPLA-AEKNZ,
lv_SAP_MHIS_IMP TYPE WC_T_WMHIS,
lv_SAP_MMPT_IMP TYPE WC_WMMPT,
lv_SAP_MPLA_IMP TYPE WC_WMPLA,
lv_SAP_OFFZE_EXP TYPE MHIS-OFFZE,
lv_SAP_OFFZE_IMP TYPE MHIS-OFFZE,
lv_SAP_UPDATE TYPE MPLA-AEKNZ,
lv_SAP_VER_PAK_IMP TYPE T_T351P,
lv_other TYPE c.
CALL METHOD lo_class=>EXIT_SAPLIWP3_010(
EXPORTING
SAP_MHIS_IMP = lv_SAP_MHIS_IMP
SAP_MMPT_IMP = lv_SAP_MMPT_IMP
SAP_MPLA_IMP = lv_SAP_MPLA_IMP
SAP_OFFZE_IMP = lv_SAP_OFFZE_IMP
SAP_VER_PAK_IMP = lv_SAP_VER_PAK_IMP
CHANGING
SAP_CALLS_ON_HOLD = lv_SAP_CALLS_ON_HOLD
SAP_OFFZE_EXP = lv_SAP_OFFZE_EXP
SAP_UPDATE = lv_SAP_UPDATE ).
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