SAP G_T804A_T804B_T804C_UPDATE Function Module for Update Report Writer ATAB tables









G_T804A_T804B_T804C_UPDATE is a standard g t804a t804b t804c update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Update Report Writer ATAB tables processing and below is the pattern details for this FM, 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 g t804a t804b t804c update FM, simply by entering the name G_T804A_T804B_T804C_UPDATE into the relevant SAP transaction such as SE37 or SE38.

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



Function G_T804A_T804B_T804C_UPDATE 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 'G_T804A_T804B_T804C_UPDATE'"Update Report Writer ATAB tables
EXPORTING
* NO_CHECK = ' ' "Result of table update remains untested

TABLES
I_FLAG1 = "
I_T804B = "
I_T804BT = "
I_T804C = "
I_T804E = "
I_T804F = "
I_T804G = "
* I_RTXCS = "
I_FLAG2 = "
I_FLAG3 = "
I_FLAG4 = "
I_FLAG5 = "
I_FLAG6 = "
I_FLAG7 = "
* I_FLAG8 = "
I_T804A = "
.



IMPORTING Parameters details for G_T804A_T804B_T804C_UPDATE

NO_CHECK - Result of table update remains untested

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for G_T804A_T804B_T804C_UPDATE

I_FLAG1 -

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

I_T804B -

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

I_T804BT -

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

I_T804C -

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

I_T804E -

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

I_T804F -

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

I_T804G -

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

I_RTXCS -

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

I_FLAG2 -

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

I_FLAG3 -

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

I_FLAG4 -

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

I_FLAG5 -

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

I_FLAG6 -

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

I_FLAG7 -

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

I_FLAG8 -

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

I_T804A -

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

Copy and paste ABAP code example for G_T804A_T804B_T804C_UPDATE 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_i_flag1  TYPE STANDARD TABLE OF TABFLAG, "   
lv_no_check  TYPE TABFLAG, "   SPACE
lt_i_t804b  TYPE STANDARD TABLE OF T804B, "   
lt_i_t804bt  TYPE STANDARD TABLE OF T804BT, "   
lt_i_t804c  TYPE STANDARD TABLE OF T804C, "   
lt_i_t804e  TYPE STANDARD TABLE OF T804E, "   
lt_i_t804f  TYPE STANDARD TABLE OF T804F, "   
lt_i_t804g  TYPE STANDARD TABLE OF T804G, "   
lt_i_rtxcs  TYPE STANDARD TABLE OF RTXCS, "   
lt_i_flag2  TYPE STANDARD TABLE OF TABFLAG, "   
lt_i_flag3  TYPE STANDARD TABLE OF TABFLAG, "   
lt_i_flag4  TYPE STANDARD TABLE OF TABFLAG, "   
lt_i_flag5  TYPE STANDARD TABLE OF TABFLAG, "   
lt_i_flag6  TYPE STANDARD TABLE OF TABFLAG, "   
lt_i_flag7  TYPE STANDARD TABLE OF TABFLAG, "   
lt_i_flag8  TYPE STANDARD TABLE OF TABFLAG, "   
lt_i_t804a  TYPE STANDARD TABLE OF T804A. "   

  CALL FUNCTION 'G_T804A_T804B_T804C_UPDATE'  "Update Report Writer ATAB tables
    EXPORTING
         NO_CHECK = lv_no_check
    TABLES
         I_FLAG1 = lt_i_flag1
         I_T804B = lt_i_t804b
         I_T804BT = lt_i_t804bt
         I_T804C = lt_i_t804c
         I_T804E = lt_i_t804e
         I_T804F = lt_i_t804f
         I_T804G = lt_i_t804g
         I_RTXCS = lt_i_rtxcs
         I_FLAG2 = lt_i_flag2
         I_FLAG3 = lt_i_flag3
         I_FLAG4 = lt_i_flag4
         I_FLAG5 = lt_i_flag5
         I_FLAG6 = lt_i_flag6
         I_FLAG7 = lt_i_flag7
         I_FLAG8 = lt_i_flag8
         I_T804A = lt_i_t804a
. " G_T804A_T804B_T804C_UPDATE




ABAP code using 7.40 inline data declarations to call FM G_T804A_T804B_T804C_UPDATE

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_no_check) = ' '.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!