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: 

How to get query name?

Former Member
0 Kudos

Hi:

There is a report 'AQFLINDIA_FA====Z_REGISTER====',I think it's created by Query.And how to get the 'User group' / 'Infoset' / 'Query name'?

Thanksss.

1 ACCEPTED SOLUTION

JozsefSzikszai
Active Contributor
0 Kudos

a more scientific approach is to use FM RSAQ_DECODE_REPORT_NAME. Just enter the generated name of the ABAP program and you'll get back all data you need.

2 REPLIES 2

GauthamV
Active Contributor
0 Kudos

hi,

they will not be stored in any table but we can identify by program name itself.

if your program name is AQFLINDIA_FA====Z_REGISTER==== then your query name is Z_REGISTER.

from sq01 you can get infoset name of that query and from sq02 you can get user group name.

also check these tables.

AQGIDOC

AQGQDOC.

JozsefSzikszai
Active Contributor
0 Kudos

a more scientific approach is to use FM RSAQ_DECODE_REPORT_NAME. Just enter the generated name of the ABAP program and you'll get back all data you need.