Hello,
I'm trying to create a simple report to find all objects used in a program (or any other kind of object).
So, I'm using the FM REPOSITORY_ENVIRONMENT_ALL like this:
PARAMETERS:p_obj TYPE tadir-obj_name.
DATA: environment_selection TYPE envi_types,
output_list TYPE TABLE OF senvi.
CALL FUNCTION 'REPOSITORY_ENVIRONMENT_ALL'
EXPORTING
obj_type = 'PROG'
environment_types = environment_selection
object_name = p_obj
TABLES
environment_tab = output_list.
But the problem is that I get a dump when executing the code (limit time exceeded ...)
Please help me solve this problem.