cancel
Showing results for 
Search instead for 
Did you mean: 

Query elements by technical name

Former Member
0 Kudos

Hello experts,

I need a report which displays all queries containing a specific object by its technical name. I already know that table RSZELTXREF helps me finding objects which are used in a specific query, but I miss the connection between the fields TELTUID (SYSUUID_25-field) and the technical name I gave a component.

Any help is appreciated.

Greetings,

Daniel

Accepted Solutions (1)

Accepted Solutions (1)

edwin_harpino
Active Contributor
0 Kudos

hi Daniel,

- table RSZELTDIR

MAPNAME - query technical name

get ELTUID - query ID

- table RSZELTXREF

SELTUID = RSZELTDIR-ELTUID

get TELTUID

hope this helps.

edwin_harpino
Active Contributor
0 Kudos

hi Daniel,

and some sample codes

hope this helps.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi A.H.P.,

thank you very much for the links, the function module RSZ_I_BASIC_CHA_WHERE_USED is exactly what I was searching for.

That solved the problem, points rewarded.

Greetings,

Daniel

Former Member
0 Kudos

Hi A.H.P.,

thanks for the quick answer. That's the right way and I have found the same connection. But now I need the technical name (e.g. 0DATE) for TELTUID. Is it stored somewhere?

Thanks in advance.

Daniel

edwin_harpino
Active Contributor
0 Kudos

hi Daniel,

table RSZSELECT, IOBJNM = 0date -> get ELTUID,

rszeltxref, SELTUID = RSZSELECT-ELTUID -> get TELTUID

hope this helps.

you are welcome,

i'm very glad, that fm should save your time

Message was edited by: A.H.P