cancel
Showing results for 
Search instead for 
Did you mean: 

Finding Qyery name from Query elements

Former Member
0 Kudos
4,648

Hi ,

Could you pleae give me valuable suggetion for my question

for exp:

The ELTUID of one variable (query element) is 00ERTJDKKRQQRM8URS3G7YLJQ.

I would like to know in which query and queries the above query element is used.

Thanks,

Accepted Solutions (1)

Accepted Solutions (1)

former_member197610
Active Contributor
0 Kudos

Hi,

Check this thread,

hope it solves ...

Former Member
0 Kudos

Hi,

We need get list of Queries using ABAP Program not from AWB.

earlier threads explained finding of Query elements from Query...But we need to get tech names of the Queries from a given Query element where this Query element is being used.

edwin_harpino
Active Contributor
0 Kudos

hi Beesarla,

check sample code ....

hope this helps.

Former Member
0 Kudos

Hi,

My Question is How to get names of the Query from a given variable name?which table is useful?

edwin_harpino
Active Contributor
0 Kudos

table RSZELTXREF, TELTUID = your ELTUID, get SELTUID

then RSZCOMPDIR, COMPUID = RSZELTXREF-SELTUID, get COMPID is the query technical name.

Former Member
0 Kudos

Hi Edwin,

Thanks for your quick reply.My problem is solved with your answer.

Regards,

Arvind.

Former Member
0 Kudos

Hello Edwin,

Could you please tell me the possible solution for the below things

1) How to find the query name from the given query element Restricted key figure(SEL)?

2)How to find the query name from the given query element Calculated key figure(CKF)?

3)How to find the query name from the given query element Calculated key figure(FML)?

4) How to find the query name from the given query element Structure (STR)?

5) How to find the query name from the given query element Query (REP)?

6) How to find the query name from the given query element Variable (VAR)?

If i am following the below procedure as you mentioned in your previous post as follows

table RSZELTXREF, TELTUID = your ELTUID, get SELTUID

then RSZCOMPDIR, COMPUID = RSZELTXREF-SELTUID, get COMPID is the query technical name.

Its not working fine for all the Query elements ,So could you please give me reply for each and every question saperatly.

Waiting for you reply.

Regards,

Arvind.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Have a look at this thread it contains all the informatin.

Thanks