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

Search cobol programs thru Endevor


IBM Mainframe Forums -> CA Products
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
nanda31

New User


Joined: 30 Mar 2007
Posts: 8
Location: hyderabad

PostPosted: Tue Aug 07, 2007 4:19 pm
Reply with quote

I need to search which all cobol programs are using a table. In my project all cobol programs are stored in Endevor only. Is there any way to search in Endevor??
( Like we have 3.14 option to search in PDS)
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Tue Aug 07, 2007 4:52 pm
Reply with quote

PF 1 is your friend, or should be.
Back to top
View user's profile Send private message
saiprasadh

Active User


Joined: 20 Sep 2006
Posts: 154
Location: US

PostPosted: Tue Aug 07, 2007 5:41 pm
Reply with quote

Hi nanda31

You can use the below JCL .

Code:
//Job Card
//*                                                                     
//*******************************************************
//*  ENDEVOR JCL STATEMENTS                                           *
//*******************************************************
//NDVRBAT  EXEC PGM=NDVRC1,DYNAMNBR=1500,REGION=4096K,                 
//  PARM='C1BM3000'                                                     
//STEPLIB  DD DISP=SHR,DSN=SYSLINK.ENDEVOR.LOADLIB                     
//         DD DISP=SHR,DSN=SYS1.SCEERUN                                 
//CONLIB   DD DISP=SHR,DSN=SYSLINK.ENDEVOR.LOADLIB                     
//SYSPRINT DD SYSOUT=*                                                 
//SSN$LSRV DD DUMMY                                                     
//*                                                                     
//***********************************************************
//*  OUTPUT DATA SETS                                                 *
//***********************************************************
//C1MSGS1  DD SYSOUT=*                                                 
//C1PRINT  DD SYSOUT=*,DCB=(RECFM=FBA,LRECL=121,BLKSIZE=6171)           
//SYSABEND DD SYSOUT=*                                                 
//SYSOUT   DD SYSOUT=*                                                 
//***********************************************************
//*  REQUEST DATA SET                                                 *
//***********************************************************
//BSTIPT01 DD  *                                                       
LIST ELEMENT '*'                                                       
  FROM ENVIRONMENT 'Environment Name' SYSTEM 'System name' SUBSYSTEM  'Sub System Name'             
    TYPE '*' STAGE 2                                                   
  OPTIONS SHOWING TEXT NOSEARCH                                         
  WHERE TEXT EQ                                                         
'TABLE NAME'                                                           
    COLUMNS 001 080                                                     
  BUILD ACTION LIST                                                     
 .                                                                     
//*                           




Thanks
Sai
Back to top
View user's profile Send private message
Devzee

Active Member


Joined: 20 Jan 2007
Posts: 684
Location: Hollywood

PostPosted: Tue Aug 07, 2007 7:14 pm
Reply with quote

In ENDEVOR there is a LIST option. Have you tried it?
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 -> CA Products

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts Search two or more word with FILEAID Compuware & Other Tools 15
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
Search our Forums:

Back to Top