MATCH_PERCONS_ASS SAP Method Transfer Associated Contract for Period Consumption
Below is documentation, parameters and attributes of ABAP Method MATCH_PERCONS_ASS within SAP class CL_ISU_BILL_SIM_SCEN. 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 CL_ISU_BILL_SIM_SCEN into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method MATCH_PERCONS_ASS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MATCH_PERCONS_ASS
.| Name | Type | Data Type | Description | Default Value |
| IM_CONTR_ASS | Importing | TYPE REF TO CL_ISU_BILL_SIM_DATA_CONTR | Simulation Data for Contract | |
| IM_CONTR_SIM | Importing | TYPE REF TO CL_ISU_BILL_SIM_DATA_CONTR | Simulation Data for Contract | |
| IM_SERVTYPEASS | Importing | TYPE EA_SERVTYPEASS | Associated Service Type | |
| IM_SERVTYPESIM | Importing | TYPE EA_SERVTYPESIM | Service Type a Contract is Simulated for | |
| IM_SERVTYPESIM | Importing | TYPE EA_SERVTYPESIM | Service Type for Which a Contract is Simulated |
Exceptions of Method MATCH_PERCONS_ASS
GENERAL_FAULT - General ErrorExample ABAP coding
DATA: lv_IM_CONTR_ASS TYPE CL_ISU_BILL_SIM_DATA_CONTR,
lv_IM_CONTR_SIM TYPE CL_ISU_BILL_SIM_DATA_CONTR,
lv_IM_SERVTYPEASS TYPE EA_SERVTYPEASS,
lv_IM_SERVTYPESIM TYPE EA_SERVTYPESIM,
lv_IM_SERVTYPESIM TYPE EA_SERVTYPESIM,
lv_other TYPE c.
CALL METHOD CL_ISU_BILL_SIM_SCEN=>MATCH_PERCONS_ASS(
EXPORTING
IM_CONTR_ASS = lv_IM_CONTR_ASS
IM_CONTR_SIM = lv_IM_CONTR_SIM
IM_SERVTYPEASS = lv_IM_SERVTYPEASS
IM_SERVTYPESIM = lv_IM_SERVTYPESIM
IM_SERVTYPESIM = lv_IM_SERVTYPESIM ).
Links to Related Class(s)
CL_ISU_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects