SAP ACC_AA_BUFFER_T095_DATA Function Module for
ACC_AA_BUFFER_T095_DATA is a standard acc aa buffer t095 data 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 acc aa buffer t095 data FM, simply by entering the name ACC_AA_BUFFER_T095_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: ACC_AA
Program Name: SAPLACC_AA
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ACC_AA_BUFFER_T095_DATA 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 'ACC_AA_BUFFER_T095_DATA'".
EXPORTING
* PUT_TO_BUFFER = "
I_AFAPL = "
* GET_AFAPL_TEXT = "
IMPORTING
E_T096T = "
TABLES
* T_T093 = "
* T_T093C = "
* RA_KTOPL = "
* T_T093T = "
* T_T093_MAP_ACC = "
EXCEPTIONS
AFAPL_NOT_CORRECT = 1 BUFFER_NOT_FILLED = 2
IMPORTING Parameters details for ACC_AA_BUFFER_T095_DATA
PUT_TO_BUFFER -
Data type: XFELDOptional: Yes
Call by Reference: Yes
I_AFAPL -
Data type: T093-AFAPLOptional: No
Call by Reference: Yes
GET_AFAPL_TEXT -
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ACC_AA_BUFFER_T095_DATA
E_T096T -
Data type: T096TOptional: No
Call by Reference: Yes
TABLES Parameters details for ACC_AA_BUFFER_T095_DATA
T_T093 -
Data type: T093Optional: Yes
Call by Reference: Yes
T_T093C -
Data type: T093COptional: Yes
Call by Reference: Yes
RA_KTOPL -
Data type: ACCAA_RA_KTOPL_TABOptional: Yes
Call by Reference: Yes
T_T093T -
Data type: T093TOptional: Yes
Call by Reference: Yes
T_T093_MAP_ACC -
Data type: T093_MAP_ACCOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
AFAPL_NOT_CORRECT -
Data type:Optional: No
Call by Reference: Yes
BUFFER_NOT_FILLED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ACC_AA_BUFFER_T095_DATA 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: | ||||
| lt_t_t093 | TYPE STANDARD TABLE OF T093, " | |||
| lv_e_t096t | TYPE T096T, " | |||
| lv_put_to_buffer | TYPE XFELD, " | |||
| lv_afapl_not_correct | TYPE XFELD, " | |||
| lv_i_afapl | TYPE T093-AFAPL, " | |||
| lt_t_t093c | TYPE STANDARD TABLE OF T093C, " | |||
| lv_buffer_not_filled | TYPE T093C, " | |||
| lt_ra_ktopl | TYPE STANDARD TABLE OF ACCAA_RA_KTOPL_TAB, " | |||
| lv_get_afapl_text | TYPE XFELD, " | |||
| lt_t_t093t | TYPE STANDARD TABLE OF T093T, " | |||
| lt_t_t093_map_acc | TYPE STANDARD TABLE OF T093_MAP_ACC. " |
|   CALL FUNCTION 'ACC_AA_BUFFER_T095_DATA' " |
| EXPORTING | ||
| PUT_TO_BUFFER | = lv_put_to_buffer | |
| I_AFAPL | = lv_i_afapl | |
| GET_AFAPL_TEXT | = lv_get_afapl_text | |
| IMPORTING | ||
| E_T096T | = lv_e_t096t | |
| TABLES | ||
| T_T093 | = lt_t_t093 | |
| T_T093C | = lt_t_t093c | |
| RA_KTOPL | = lt_ra_ktopl | |
| T_T093T | = lt_t_t093t | |
| T_T093_MAP_ACC | = lt_t_t093_map_acc | |
| EXCEPTIONS | ||
| AFAPL_NOT_CORRECT = 1 | ||
| BUFFER_NOT_FILLED = 2 | ||
| . " ACC_AA_BUFFER_T095_DATA | ||
ABAP code using 7.40 inline data declarations to call FM ACC_AA_BUFFER_T095_DATA
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 AFAPL FROM T093 INTO @DATA(ld_i_afapl). | ||||
Search for further information about these or an SAP related objects