SAP AIA_BUFFER_UPDATE_AL Function Module for









AIA_BUFFER_UPDATE_AL is a standard aia buffer update al 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 aia buffer update al FM, simply by entering the name AIA_BUFFER_UPDATE_AL into the relevant SAP transaction such as SE37 or SE38.

Function Group: AIA_BUFFER
Program Name: SAPLAIA_BUFFER
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function AIA_BUFFER_UPDATE_AL 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 'AIA_BUFFER_UPDATE_AL'"
EXPORTING
I_IMAK = "
I_ORIG_APPREQ = "
* I_UPDATE = 'U' "

TABLES
IT_IMAKZS = "
IT_IMAVZ = "
IT_IMAK_AL = "
IT_IMAKZS_AL = "
IT_IMAVZ_AL = "
.



IMPORTING Parameters details for AIA_BUFFER_UPDATE_AL

I_IMAK -

Data type: RIMAK
Optional: No
Call by Reference: No ( called with pass by value option)

I_ORIG_APPREQ -

Data type: IMAK-POSNR
Optional: No
Call by Reference: No ( called with pass by value option)

I_UPDATE -

Data type: RIMAK-KZ
Default: 'U'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for AIA_BUFFER_UPDATE_AL

IT_IMAKZS -

Data type: RIMAKZS
Optional: No
Call by Reference: Yes

IT_IMAVZ -

Data type: RIMAVZ
Optional: No
Call by Reference: Yes

IT_IMAK_AL -

Data type: RIMAK
Optional: No
Call by Reference: Yes

IT_IMAKZS_AL -

Data type: RIMAKZS
Optional: No
Call by Reference: Yes

IT_IMAVZ_AL -

Data type: RIMAVZ
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for AIA_BUFFER_UPDATE_AL 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_imak  TYPE RIMAK, "   
lt_it_imakzs  TYPE STANDARD TABLE OF RIMAKZS, "   
lt_it_imavz  TYPE STANDARD TABLE OF RIMAVZ, "   
lv_i_orig_appreq  TYPE IMAK-POSNR, "   
lv_i_update  TYPE RIMAK-KZ, "   'U'
lt_it_imak_al  TYPE STANDARD TABLE OF RIMAK, "   
lt_it_imakzs_al  TYPE STANDARD TABLE OF RIMAKZS, "   
lt_it_imavz_al  TYPE STANDARD TABLE OF RIMAVZ. "   

  CALL FUNCTION 'AIA_BUFFER_UPDATE_AL'  "
    EXPORTING
         I_IMAK = lv_i_imak
         I_ORIG_APPREQ = lv_i_orig_appreq
         I_UPDATE = lv_i_update
    TABLES
         IT_IMAKZS = lt_it_imakzs
         IT_IMAVZ = lt_it_imavz
         IT_IMAK_AL = lt_it_imak_al
         IT_IMAKZS_AL = lt_it_imakzs_al
         IT_IMAVZ_AL = lt_it_imavz_al
. " AIA_BUFFER_UPDATE_AL




ABAP code using 7.40 inline data declarations to call FM AIA_BUFFER_UPDATE_AL

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 POSNR FROM IMAK INTO @DATA(ld_i_orig_appreq).
 
"SELECT single KZ FROM RIMAK INTO @DATA(ld_i_update).
DATA(ld_i_update) = 'U'.
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!