SAP RSAQ_DELETE_TEXTFIELDS Function Module for









RSAQ_DELETE_TEXTFIELDS is a standard rsaq delete textfields 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 rsaq delete textfields FM, simply by entering the name RSAQ_DELETE_TEXTFIELDS into the relevant SAP transaction such as SE37 or SE38.

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



Function RSAQ_DELETE_TEXTFIELDS 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 'RSAQ_DELETE_TEXTFIELDS'"
EXPORTING
* APPL_LOG = ' ' "

IMPORTING
ERROR_COUNT = "Number of Errors

CHANGING
HEADSG_INPUT = "
MAXSG_TINDX_INPUT = "

TABLES
CLOGSG_INPUT = "
DBJC_INPUT = "
DBAN_INPUT = "
DBPA_INPUT = "
DBWR_INPUT = "Currency/Units References
DBAR_INPUT = "Access References
DBFT_INPUT = "
DBOB_INPUT = "
DBOS_INPUT = "
DBIF_INPUT = "
SGTEXT_INPUT = "
DBSG_INPUT = "Logical database structure
PROTOCOL = "
DBSF_INPUT = "
DBZT_INPUT = "Additional tables
DBZC_INPUT = "
DBZL_INPUT = "
DBDP_INPUT = "
DBSA_INPUT = "
DBJT_INPUT = "
.



IMPORTING Parameters details for RSAQ_DELETE_TEXTFIELDS

APPL_LOG -

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

EXPORTING Parameters details for RSAQ_DELETE_TEXTFIELDS

ERROR_COUNT - Number of Errors

Data type: AQADEF-ERROR_CNT
Optional: No
Call by Reference: Yes

CHANGING Parameters details for RSAQ_DELETE_TEXTFIELDS

HEADSG_INPUT -

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

MAXSG_TINDX_INPUT -

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

TABLES Parameters details for RSAQ_DELETE_TEXTFIELDS

CLOGSG_INPUT -

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

DBJC_INPUT -

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

DBAN_INPUT -

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

DBPA_INPUT -

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

DBWR_INPUT - Currency/Units References

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

DBAR_INPUT - Access References

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

DBFT_INPUT -

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

DBOB_INPUT -

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

DBOS_INPUT -

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

DBIF_INPUT -

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

SGTEXT_INPUT -

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

DBSG_INPUT - Logical database structure

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

PROTOCOL -

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

DBSF_INPUT -

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

DBZT_INPUT - Additional tables

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

DBZC_INPUT -

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

DBZL_INPUT -

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

DBDP_INPUT -

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

DBSA_INPUT -

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

DBJT_INPUT -

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

Copy and paste ABAP code example for RSAQ_DELETE_TEXTFIELDS 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_appl_log  TYPE AQADEF-FLAG, "   SPACE
lv_error_count  TYPE AQADEF-ERROR_CNT, "   
lt_clogsg_input  TYPE STANDARD TABLE OF AQCLSG, "   
lv_headsg_input  TYPE AQHDSG, "   
lt_dbjc_input  TYPE STANDARD TABLE OF AQDBJC, "   
lt_dban_input  TYPE STANDARD TABLE OF AQDBAN, "   
lt_dbpa_input  TYPE STANDARD TABLE OF AQDBPA, "   
lt_dbwr_input  TYPE STANDARD TABLE OF AQDBWR, "   
lt_dbar_input  TYPE STANDARD TABLE OF AQDBAR, "   
lt_dbft_input  TYPE STANDARD TABLE OF AQDBFT, "   
lt_dbob_input  TYPE STANDARD TABLE OF AQDBOB, "   
lt_dbos_input  TYPE STANDARD TABLE OF AQDBOS, "   
lt_dbif_input  TYPE STANDARD TABLE OF AQDBIF, "   
lt_sgtext_input  TYPE STANDARD TABLE OF AQTXSG, "   
lt_dbsg_input  TYPE STANDARD TABLE OF AQDBSG, "   
lv_maxsg_tindx_input  TYPE AQADEF-TINDX, "   
lt_protocol  TYPE STANDARD TABLE OF AQERROR, "   
lt_dbsf_input  TYPE STANDARD TABLE OF AQDBSF, "   
lt_dbzt_input  TYPE STANDARD TABLE OF AQDBZT, "   
lt_dbzc_input  TYPE STANDARD TABLE OF AQDBZC, "   
lt_dbzl_input  TYPE STANDARD TABLE OF AQDBZL, "   
lt_dbdp_input  TYPE STANDARD TABLE OF AQDBDP, "   
lt_dbsa_input  TYPE STANDARD TABLE OF AQDBSA, "   
lt_dbjt_input  TYPE STANDARD TABLE OF AQDBJT. "   

  CALL FUNCTION 'RSAQ_DELETE_TEXTFIELDS'  "
    EXPORTING
         APPL_LOG = lv_appl_log
    IMPORTING
         ERROR_COUNT = lv_error_count
    CHANGING
         HEADSG_INPUT = lv_headsg_input
         MAXSG_TINDX_INPUT = lv_maxsg_tindx_input
    TABLES
         CLOGSG_INPUT = lt_clogsg_input
         DBJC_INPUT = lt_dbjc_input
         DBAN_INPUT = lt_dban_input
         DBPA_INPUT = lt_dbpa_input
         DBWR_INPUT = lt_dbwr_input
         DBAR_INPUT = lt_dbar_input
         DBFT_INPUT = lt_dbft_input
         DBOB_INPUT = lt_dbob_input
         DBOS_INPUT = lt_dbos_input
         DBIF_INPUT = lt_dbif_input
         SGTEXT_INPUT = lt_sgtext_input
         DBSG_INPUT = lt_dbsg_input
         PROTOCOL = lt_protocol
         DBSF_INPUT = lt_dbsf_input
         DBZT_INPUT = lt_dbzt_input
         DBZC_INPUT = lt_dbzc_input
         DBZL_INPUT = lt_dbzl_input
         DBDP_INPUT = lt_dbdp_input
         DBSA_INPUT = lt_dbsa_input
         DBJT_INPUT = lt_dbjt_input
. " RSAQ_DELETE_TEXTFIELDS




ABAP code using 7.40 inline data declarations to call FM RSAQ_DELETE_TEXTFIELDS

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 FLAG FROM AQADEF INTO @DATA(ld_appl_log).
DATA(ld_appl_log) = ' '.
 
"SELECT single ERROR_CNT FROM AQADEF INTO @DATA(ld_error_count).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
"SELECT single TINDX FROM AQADEF INTO @DATA(ld_maxsg_tindx_input).
 
 
 
 
 
 
 
 
 


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!