Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Queries table

Former Member
0 Kudos

Hi,

can any bady help me that there is a one table which stores all custom abap queries , i need ...

3 REPLIES 3

varma_narayana
Active Contributor
0 Kudos

Hi Raja...

ABAP Queries are also stored in the Table TADIR along with other Repository Objects.

the following fields must be checked to Find ABAP Queries in this Table:

PGMID = 'R3TR'

OBJECT = 'AQQU' "For ABAP Queries

This will help u to retrieve the ABAP queries from this table TADIR.

sample code:

data: itab type table of TADIR.

SELECT * FROM TADIR into table ITAB.

WHERE PGMID = 'R3TR'

and OBJECT = 'AQQU'

and (OBJ_NAME like 'Z%' or OBJ_NAME like 'Y%').

<b>REWARD IF HELPFUL.</b>

Former Member
0 Kudos

Hi

See the following tables related to ABAP querries

Querries- AQGDB

User groups- AQGDBBG

Query Texts - AQGTQ

User Group Texts - AQGTB

if you need further check in SE11 with AQG* for all query related tables

Regards

Anji

Former Member
0 Kudos

hi

good

AQGDB - SAP Query: Tables and Data (Global

thanks

mrutyun^