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: 

Get names of global variables from report (like Tab "Globals" in debugger)

MaG
Explorer
0 Kudos

Hello,

is it possible to get a list from all available variables in a report at runtime like the tab "Globals" in the new debugger?

The problem is that i don't know the names of the variables. So i could not do a dirty assign with field-symbols.

best regards

Marcel Gäbe

1 ACCEPTED SOLUTION

kesavadas_thekkillath
Active Contributor
0 Kudos

You an check the function SYSTEM_CALLSTACK

4 REPLIES 4

kesavadas_thekkillath
Active Contributor
0 Kudos

You an check the function SYSTEM_CALLSTACK

0 Kudos

The function module "SYSTEM_CALLSTACK" exporting the program events, but no global variables or tables.

Any idea?

0 Kudos

Try RS_PROGRAM_INDEX

table compo returns. filter with type = D

Will you please check GET_GLOBAL_SYMBOLS & RS_PROGRAM_INDEX _SOURCE

0 Kudos

Thx a lot.