IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Locating Portions of listing in endevor


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri Sep 02, 2011 6:32 pm
Reply with quote

Endevor (at my site)
separates the output of the DB2 Bind from the rest of the listings.
in the footprint panel,
one has a choice of selecting ('L') either the BIND output
or the Precompiler/Compiler/Binder(linkedit) output.
at my site, the CICS Precompiler output consists of a few lines of info,
but only the DB2 precompile output and the cobol compile output actually have a source listing.
But as a result, you have two source listings.

finding things in the second, especially if it is one of those 20,000 line modules
can be frustrating.
So, a couple of hints:
Code:
find first listing (db2 precompiler listing):                            F 'program-id' first
find beginning of compiler listing (after db2 precompile listing):       F 'program-id' first;rfind

find beginning of data defintion map:                                    f 'program-id' first;rfind;rfind
find beginning of data map:                                              f 'USING *,15' first
                                                                 

find beginning of object map:                                            f 'EQU   *' first  (e-cobol)
                                                                         f 'EQU  *' first   (cobol II)
Find beginning of BINDER (linkedit) output:                              F '*** M O D U L E  M A P ***'  first


also:
looking for offset 2826
offsets start in col 5, as 6 digits. so 2826 would be found in 7
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> ABENDS & Debugging

 


Similar Topics
Topic Forum Replies
No new posts Updating endevor JCLs CA Products 5
No new posts how to show listing in physical locat... PL/I & Assembler 2
No new posts Need help in locating program and tra... IMS DB/DC 1
No new posts Listing EVERY Dataset on a system All Other Mainframe Topics 4
No new posts listing sum if zero DFSORT/ICETOOL 4
Search our Forums:

Back to Top