SAP AQ_INT_PROT_QUERY Function Module for Query Logging
AQ_INT_PROT_QUERY is a standard aq int prot query SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Query Logging 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 aq int prot query FM, simply by entering the name AQ_INT_PROT_QUERY into the relevant SAP transaction such as SE37 or SE38.
Function Group: AQ_INT_FUNCTIONS
Program Name: SAPLAQ_INT_FUNCTIONS
Main Program: SAPLAQ_INT_FUNCTIONS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function AQ_INT_PROT_QUERY 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 'AQ_INT_PROT_QUERY'"Query Logging.
EXPORTING
SESSION_ID = "GUID in 'CHAR' Format in Uppercase
WORK' ' = "SAP Query (S): Work Area ID
FUNCAREA = "SAP Query (S): InfoSet Name
* OUT_FIELDS = "Output fields
* SEL_FIELDS = "Selection fields
* SEL_FIELDS_LDB = "Logical Database Selection Fields
* ADD_DATA = "Other data
EXCEPTIONS
INTERNAL_ERROR = 1
IMPORTING Parameters details for AQ_INT_PROT_QUERY
SESSION_ID - GUID in 'CHAR' Format in Uppercase
Data type: GUID_32Optional: No
Call by Reference: Yes
WORKSPACE - SAP Query (S): Work Area ID
Data type: AQS_WSIDOptional: No
Call by Reference: Yes
FUNCAREA - SAP Query (S): InfoSet Name
Data type: AQS_SGNAMEOptional: No
Call by Reference: Yes
OUT_FIELDS - Output fields
Data type: AQADH_T_OUT_FIELDSOptional: Yes
Call by Reference: Yes
SEL_FIELDS - Selection fields
Data type: AQADH_T_SEL_FIELDSOptional: Yes
Call by Reference: Yes
SEL_FIELDS_LDB - Logical Database Selection Fields
Data type: AQADH_T_SEL_FIELDS_LDBOptional: Yes
Call by Reference: Yes
ADD_DATA - Other data
Data type: CHAR100Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
INTERNAL_ERROR - Internal Error
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for AQ_INT_PROT_QUERY 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_session_id | TYPE GUID_32, " | |||
| lv_internal_error | TYPE GUID_32, " | |||
| lv_workspace | TYPE AQS_WSID, " | |||
| lv_funcarea | TYPE AQS_SGNAME, " | |||
| lv_out_fields | TYPE AQADH_T_OUT_FIELDS, " | |||
| lv_sel_fields | TYPE AQADH_T_SEL_FIELDS, " | |||
| lv_sel_fields_ldb | TYPE AQADH_T_SEL_FIELDS_LDB, " | |||
| lv_add_data | TYPE CHAR100. " |
|   CALL FUNCTION 'AQ_INT_PROT_QUERY' "Query Logging |
| EXPORTING | ||
| SESSION_ID | = lv_session_id | |
| WORKSPACE | = lv_workspace | |
| FUNCAREA | = lv_funcarea | |
| OUT_FIELDS | = lv_out_fields | |
| SEL_FIELDS | = lv_sel_fields | |
| SEL_FIELDS_LDB | = lv_sel_fields_ldb | |
| ADD_DATA | = lv_add_data | |
| EXCEPTIONS | ||
| INTERNAL_ERROR = 1 | ||
| . " AQ_INT_PROT_QUERY | ||
ABAP code using 7.40 inline data declarations to call FM AQ_INT_PROT_QUERY
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.Search for further information about these or an SAP related objects