Application Development and Automation 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: 
Read only

SAP Query Attributes

Former Member
0 Likes
604

Hello Guru's,

I have a list of SAP queries that has been created by various people in our organization.

Is there a report that will show me all the attributes of a query i.e a bit like selecting the query within SQ01 and then pressing the "Description" button that will display the information.

I need to do it for all the queries but if the program caters for a query parameters even better.

(Don't fancy doing them 1 at a time and gathering the information).

Many thanks in advance.

Raj

1 REPLY 1
Read only

Former Member
0 Likes
459

Look at tables AQLTS (standard area) and AQGTS (global area).

select clas text from aqlts

                 into corresponding fields of table sgtitels

                 where sprsl = act_langu

                   and head  = 'X'.

select clas text from aqgts

                 into corresponding fields of table sgtitels

                 where sprsl = act_langu

                   and head  = 'X'.