SAP AIAWEB4_READ_SET_FOR_AIAWEB6 Function Module for
AIAWEB4_READ_SET_FOR_AIAWEB6 is a standard aiaweb4 read set for aiaweb6 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 aiaweb4 read set for aiaweb6 FM, simply by entering the name AIAWEB4_READ_SET_FOR_AIAWEB6 into the relevant SAP transaction such as SE37 or SE38.
Function Group: AIAWEB4
Program Name: SAPLAIAWEB4
Main Program: SAPLAIAWEB4
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function AIAWEB4_READ_SET_FOR_AIAWEB6 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 'AIAWEB4_READ_SET_FOR_AIAWEB6'".
EXPORTING
I_INDEX_INTERVALL = "Intervals of Index Tables
I_VALUETYPE = "Text field, length 35
* I_VALUETYPE_COMP = "Text field, length 35
I_START_YEAR = "Approval year for appropriation request
I_END_YEAR = "Approval year for appropriation request
* I_FLAG_BPGE = 'X' "
IMPORTING
ES_IMA_RAIA9_OVPLAN = "RAIA9 -Structure for Overview Planning (Value Type View)
IMPORTING Parameters details for AIAWEB4_READ_SET_FOR_AIAWEB6
I_INDEX_INTERVALL - Intervals of Index Tables
Data type: IMA_STRUC_INDEX_INTERVALLSOptional: No
Call by Reference: Yes
I_VALUETYPE - Text field, length 35
Data type: IMA_VALUETYPEOptional: No
Call by Reference: Yes
I_VALUETYPE_COMP - Text field, length 35
Data type: IMA_VALUETYPEOptional: Yes
Call by Reference: Yes
I_START_YEAR - Approval year for appropriation request
Data type: IMA_GJAHROptional: No
Call by Reference: Yes
I_END_YEAR - Approval year for appropriation request
Data type: IMA_GJAHROptional: No
Call by Reference: Yes
I_FLAG_BPGE -
Data type: XFELDDefault: 'X'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for AIAWEB4_READ_SET_FOR_AIAWEB6
ES_IMA_RAIA9_OVPLAN - RAIA9 -Structure for Overview Planning (Value Type View)
Data type: IMA_RAIA9_OVPLAN_WTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for AIAWEB4_READ_SET_FOR_AIAWEB6 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_i_index_intervall | TYPE IMA_STRUC_INDEX_INTERVALLS, " | |||
| lv_es_ima_raia9_ovplan | TYPE IMA_RAIA9_OVPLAN_WT, " | |||
| lv_i_valuetype | TYPE IMA_VALUETYPE, " | |||
| lv_i_valuetype_comp | TYPE IMA_VALUETYPE, " | |||
| lv_i_start_year | TYPE IMA_GJAHR, " | |||
| lv_i_end_year | TYPE IMA_GJAHR, " | |||
| lv_i_flag_bpge | TYPE XFELD. " 'X' |
|   CALL FUNCTION 'AIAWEB4_READ_SET_FOR_AIAWEB6' " |
| EXPORTING | ||
| I_INDEX_INTERVALL | = lv_i_index_intervall | |
| I_VALUETYPE | = lv_i_valuetype | |
| I_VALUETYPE_COMP | = lv_i_valuetype_comp | |
| I_START_YEAR | = lv_i_start_year | |
| I_END_YEAR | = lv_i_end_year | |
| I_FLAG_BPGE | = lv_i_flag_bpge | |
| IMPORTING | ||
| ES_IMA_RAIA9_OVPLAN | = lv_es_ima_raia9_ovplan | |
| . " AIAWEB4_READ_SET_FOR_AIAWEB6 | ||
ABAP code using 7.40 inline data declarations to call FM AIAWEB4_READ_SET_FOR_AIAWEB6
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.| DATA(ld_i_flag_bpge) | = 'X'. | |||
Search for further information about these or an SAP related objects