SAP QEZZ_TQ70F_READ Function Module for Importing the control table TQ70F









QEZZ_TQ70F_READ is a standard qezz tq70f read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Importing the control table TQ70F 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 qezz tq70f read FM, simply by entering the name QEZZ_TQ70F_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function QEZZ_TQ70F_READ 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 'QEZZ_TQ70F_READ'"Importing the control table TQ70F
EXPORTING
I_AKTIVITAET = "Transaction activity
I_DYNPRO = "Screen number
I_FCODE = "Function code
I_SCHLCODE = "Transaction control key
I_STEUERSCHL = "Characteristic control key

IMPORTING
E_KOPGR = "Header group for screen sequence control
E_POSGR = "Item group for screen sequence control

EXCEPTIONS
NO_ENTRY_FOUND = 1
.



IMPORTING Parameters details for QEZZ_TQ70F_READ

I_AKTIVITAET - Transaction activity

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

I_DYNPRO - Screen number

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

I_FCODE - Function code

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

I_SCHLCODE - Transaction control key

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

I_STEUERSCHL - Characteristic control key

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

EXPORTING Parameters details for QEZZ_TQ70F_READ

E_KOPGR - Header group for screen sequence control

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

E_POSGR - Item group for screen sequence control

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

EXCEPTIONS details

NO_ENTRY_FOUND - No entry found

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

Copy and paste ABAP code example for QEZZ_TQ70F_READ 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_e_kopgr  TYPE TQ70F-KOPGR, "   
lv_i_aktivitaet  TYPE TQ70F-AKTIVITAET, "   
lv_no_entry_found  TYPE TQ70F, "   
lv_e_posgr  TYPE TQ70F-POSGR, "   
lv_i_dynpro  TYPE TQ70F-DYNPRO, "   
lv_i_fcode  TYPE TQ70F-FCODE, "   
lv_i_schlcode  TYPE TQ70F-SCHLCODE, "   
lv_i_steuerschl  TYPE TQ70F-STEUERSCHL. "   

  CALL FUNCTION 'QEZZ_TQ70F_READ'  "Importing the control table TQ70F
    EXPORTING
         I_AKTIVITAET = lv_i_aktivitaet
         I_DYNPRO = lv_i_dynpro
         I_FCODE = lv_i_fcode
         I_SCHLCODE = lv_i_schlcode
         I_STEUERSCHL = lv_i_steuerschl
    IMPORTING
         E_KOPGR = lv_e_kopgr
         E_POSGR = lv_e_posgr
    EXCEPTIONS
        NO_ENTRY_FOUND = 1
. " QEZZ_TQ70F_READ




ABAP code using 7.40 inline data declarations to call FM QEZZ_TQ70F_READ

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 KOPGR FROM TQ70F INTO @DATA(ld_e_kopgr).
 
"SELECT single AKTIVITAET FROM TQ70F INTO @DATA(ld_i_aktivitaet).
 
 
"SELECT single POSGR FROM TQ70F INTO @DATA(ld_e_posgr).
 
"SELECT single DYNPRO FROM TQ70F INTO @DATA(ld_i_dynpro).
 
"SELECT single FCODE FROM TQ70F INTO @DATA(ld_i_fcode).
 
"SELECT single SCHLCODE FROM TQ70F INTO @DATA(ld_i_schlcode).
 
"SELECT single STEUERSCHL FROM TQ70F INTO @DATA(ld_i_steuerschl).
 


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!