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: 

In which Table all ABAP queries store?

Former Member
0 Kudos

Hi Guys,

In which Table all ABAP queries store?

Thanks,

Sa nkar

5 REPLIES 5

Former Member
0 Kudos

Hi Gourisankar,

Just try this table , AQGDB - SAP Query: Tables and Data (Global)

Reward if useful

Regards,

Chitra

0 Kudos

Hi,

It is displayed only standard, I need custom develope ABAP Queries.

Thanks,

Gourisankar

0 Kudos

Hi..

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%').

REWARD IF HELPFUL.

Former Member
0 Kudos

HI,

see the tables starting with AQ in se11.

based on the description u can fined the appropriate one according to requirement.

rgds,

bharat.

Former Member
0 Kudos

use AQLDB to see local queries