PROCESS_RULE SAP Method Processing of Payment Rule
Below is documentation, parameters and attributes of ABAP Method PROCESS_RULE within SAP class IF_EX_BADI_RULE_PAYMENTS. 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_RULE_PAYMENTS 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 PROCESS_RULE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PROCESS_RULE
.| Name | Type | Data Type | Description | Default Value |
| FLT_VAL | Importing | TYPE TB_RULEID | Parameter FLT_VAL for Method TEST | |
| IM_PAYM_APPL | Importing | TYPE ANWND_EBKO | Application using bank data storage | |
| IM_TAB_VDBEPP | Importing | TYPE TRTY_VDBEPP | Table Type for VDBEPP | |
| IM_VDARL | Importing | TYPE VDARL | Loans | |
| CH_OVERRIDE_STOP | Changing | TYPE XFELD | Indicates Whether Stop is to be Overridden |
Exceptions of Method PROCESS_RULE
ERROR - ErrorExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_RULE_PAYMENTS.
DATA: lv_CH_OVERRIDE_STOP TYPE XFELD,
lv_FLT_VAL TYPE TB_RULEID,
lv_IM_PAYM_APPL TYPE ANWND_EBKO,
lv_IM_TAB_VDBEPP TYPE TRTY_VDBEPP,
lv_IM_VDARL TYPE VDARL,
lv_other TYPE c.
CALL METHOD lo_class=>PROCESS_RULE(
EXPORTING
FLT_VAL = lv_FLT_VAL
IM_PAYM_APPL = lv_IM_PAYM_APPL
IM_TAB_VDBEPP = lv_IM_TAB_VDBEPP
IM_VDARL = lv_IM_VDARL
CHANGING
CH_OVERRIDE_STOP = lv_CH_OVERRIDE_STOP ).
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