SAP AIF_RELEVANT_AND_PROCESSING Function Module for
AIF_RELEVANT_AND_PROCESSING is a standard aif relevant and processing SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for aif relevant and processing FM, simply by entering the name AIF_RELEVANT_AND_PROCESSING into the relevant SAP transaction such as SE37 or SE38.
Function Group: SU01
Program Name: SAPLSU01
Main Program: SAPLSU01
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function AIF_RELEVANT_AND_PROCESSING pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'AIF_RELEVANT_AND_PROCESSING'".
EXPORTING
IV_CLASS_NAME = "
IV_FNAME = "
IV_TRFCTYPE = "
IV_STATE = "
* IV_SCENARIO_TYPE = "
IMPORTING
EV_PERSIST_REQUIRED = "
EV_AIF_RELEVANT = "
EV_STATE = "
IMPORTING Parameters details for AIF_RELEVANT_AND_PROCESSING
IV_CLASS_NAME -
Data type: SEOCLSNAMEOptional: No
Call by Reference: No ( called with pass by value option)
IV_FNAME -
Data type: RS38L-NAMEOptional: No
Call by Reference: No ( called with pass by value option)
IV_TRFCTYPE -
Data type: SY-INPUTOptional: No
Call by Reference: No ( called with pass by value option)
IV_STATE -
Data type: ARFCSSTATE_TABOptional: No
Call by Reference: No ( called with pass by value option)
IV_SCENARIO_TYPE -
Data type: SY-INDEXOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for AIF_RELEVANT_AND_PROCESSING
EV_PERSIST_REQUIRED -
Data type: SY-INPUTOptional: No
Call by Reference: No ( called with pass by value option)
EV_AIF_RELEVANT -
Data type: SY-INPUTOptional: No
Call by Reference: No ( called with pass by value option)
EV_STATE -
Data type: ARFCSSTATE_TABOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for AIF_RELEVANT_AND_PROCESSING Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_iv_class_name | TYPE SEOCLSNAME, " | |||
| lv_ev_persist_required | TYPE SY-INPUT, " | |||
| lv_iv_fname | TYPE RS38L-NAME, " | |||
| lv_ev_aif_relevant | TYPE SY-INPUT, " | |||
| lv_ev_state | TYPE ARFCSSTATE_TAB, " | |||
| lv_iv_trfctype | TYPE SY-INPUT, " | |||
| lv_iv_state | TYPE ARFCSSTATE_TAB, " | |||
| lv_iv_scenario_type | TYPE SY-INDEX. " |
|   CALL FUNCTION 'AIF_RELEVANT_AND_PROCESSING' " |
| EXPORTING | ||
| IV_CLASS_NAME | = lv_iv_class_name | |
| IV_FNAME | = lv_iv_fname | |
| IV_TRFCTYPE | = lv_iv_trfctype | |
| IV_STATE | = lv_iv_state | |
| IV_SCENARIO_TYPE | = lv_iv_scenario_type | |
| IMPORTING | ||
| EV_PERSIST_REQUIRED | = lv_ev_persist_required | |
| EV_AIF_RELEVANT | = lv_ev_aif_relevant | |
| EV_STATE | = lv_ev_state | |
| . " AIF_RELEVANT_AND_PROCESSING | ||
ABAP code using 7.40 inline data declarations to call FM AIF_RELEVANT_AND_PROCESSING
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single INPUT FROM SY INTO @DATA(ld_ev_persist_required). | ||||
| "SELECT single NAME FROM RS38L INTO @DATA(ld_iv_fname). | ||||
| "SELECT single INPUT FROM SY INTO @DATA(ld_ev_aif_relevant). | ||||
| "SELECT single INPUT FROM SY INTO @DATA(ld_iv_trfctype). | ||||
| "SELECT single INDEX FROM SY INTO @DATA(ld_iv_scenario_type). | ||||
Search for further information about these or an SAP related objects