Line Summary view
- Last Updated: February 11, 2026
- 2 minute read
- OpenEdge
- Version 13.0
- Documentation
The Line Summary view provides detailed performance metrics for each executable line in the profiled module. The view opens automatically when you open a .prof file. You can manually open it by selecting from the main menu.
| Tab | Description |
|---|---|
| Line Number | The line number in the module file that was executed. |
| Times Called | The number of times this line was executed during profiling. |
| Average Time (secs) | The average time taken for each execution of this line. |
| Total Time (secs) | The total time spent executing this line across all calls. |
PDSOE Profiler expects the debug listings to be in a folder named listing (case-insensitive) inside the profiling output root. If the folder name is different, the Line Summary view shows the current source instead of the profiled snapshot.
To avoid discrepancies, you need to perform any one of the following tasks:
- Enable Generate Debug Listing files in the Profiler tab of Run Configurations. With this configuration, Developer Studio automatically creates the listing folder in the correct location and puts the listing files in it.
- Use the
PROFILERsystem handle with theDirectoryattribute.PROFILER:DIRECTORY = "<profiling output root>" /* Ensure a subfolder named 'listing' exists under this root for debug listings */For example, when you set <profiling output root> as C:\OpenEdgeProjects\MyProfileData, then make sure there is a listing folder inside MyProfileData.
- Use the
-listingsstartup parameter to generate listings in the correct location.-listings "<profiling output root>\listing"For example, when you set <profiling output root> as C:\OpenEdgeProjects\MyProfileData, then use
-listings "C:\OpenEdgeProjects\MyProfileData\listing"