Call hierarchy

All,

Is there any tool available to find out the call hierarchy in Progress / OE code?

Any options in compilation like XREF would do this?

Please let me know.

Thanks
Joel
 

Cringer

ProgressTalk.com Moderator
Staff member
What are you trying to achieve?

If you're after what I think you are, then look at the PROGRAM-NAME() function.
 
Thanks for the reply.

I am trying to find / understand the flow of the program. So currently I am using the text search (search the procedure-name) to find the flow and so was curious if there was any easier way to find the flow without executing the code.

Thanks
Joel
 

Cringer

ProgressTalk.com Moderator
Staff member
Ah ok I see - I'm not aware of any such tools. Somone else may be able to help though...
 

tamhas

ProgressTalk.com Sponsor
Analyst will automatically resolve a number of types of dynamic calls. E.g., if you run ip in handle, it will trace back the execution path to identify all of the possible values of what handle can be pointing at. For other kinds of dynamic calls, like run value() from a DB field, e.g., a menu, there is a structure for providing "hints" which will allow Analyst to resolve the calls. Look at the video to see the way you can access this.
 
Top