Page 1 of 1

Endevor

Posted: Wed Aug 23, 2006 4:10 pm
by mithunthakre
Hi,

I have the cobol program with me. I want to find which job uses this cobol program.

How to scan the endevor for paticular program. please help me.


Thanks
Mit's

endover

Posted: Fri Oct 06, 2006 1:53 pm
by vinodrawat_02
please send which type of program u executing then go to compile and run

Endevor component listing

Posted: Thu Jan 25, 2007 5:13 am
by Veera
Mits,

Find below the code using which we get the listing of all the
compoents if we use "*" ,what ever type of componet you
want you can specify it. The follwing is the code

LIST ELEMENT *
VERSION 01 LEVEL 01
FROM ENVIRONMENT 'PROD/DEV' SYSTEM 'AAAA' SUBSYSTEM 'AAAA'
TYPE '*' STAGE P
OPTIONS SHOWING TEXT NOSEARCH
WHERE TEXT EQ
'PGMNAME' -> OR search string here.
BUILD ACTION &&ACTION

In Endevor:Dev/prod:Batch:Submit we need to use the abvoe code and submit the job, and we get the lisitng in the spool .

Note : Appropriately the system and subsytem info need to given where 'AAAA' is given in the abvoe code.

Thanks
Veera.

Endevor component listing

Posted: Thu Jan 25, 2007 5:18 am
by Veera
Mits,

Find below the code using which we get the listing of all the
compoents if we use "*" ,what ever type of componet you
want you can specify it. The follwing is the code

LIST ELEMENT *
VERSION 01 LEVEL 01
FROM ENVIRONMENT 'PROD/DEV' SYSTEM 'AAAA' SUBSYSTEM 'AAAA'
TYPE '*' STAGE P
OPTIONS SHOWING TEXT NOSEARCH
WHERE TEXT EQ
'PGMNAME' -> OR search string here.
BUILD ACTION &&ACTION

In Endevor:Dev/prod:Batch:Submit we need to use the abvoe code and submit the job, and we get the lisitng in the spool .

Note : Appropriately the system and subsytem info need to given where 'AAAA' is given in the abvoe code.

Thanks
Veera.

Posted: Wed Apr 14, 2010 10:50 pm
by maxima01
Veera,

This is very helpful to me.

One question though,
how do you add more than one search string to your search. Not sure of the syntax.
i.e., for example if I wanted to search for a second Program name like below, how would that be done?

WHERE TEXT EQ
'PGMNAME' -> OR search string here.

Re: Endevor component listing

Posted: Tue Mar 29, 2011 7:56 pm
by ironponygrl
Veera wrote:Mits,

Find below the code using which we get the listing of all the
compoents if we use "*" ,what ever type of componet you
want you can specify it. The follwing is the code

LIST ELEMENT *
VERSION 01 LEVEL 01
FROM ENVIRONMENT 'PROD/DEV' SYSTEM 'AAAA' SUBSYSTEM 'AAAA'
TYPE '*' STAGE P
OPTIONS SHOWING TEXT NOSEARCH
WHERE TEXT EQ
'PGMNAME' -> OR search string here.
BUILD ACTION &&ACTION

In Endevor:Dev/prod:Batch:Submit we need to use the abvoe code and submit the job, and we get the lisitng in the spool .

Note : Appropriately the system and subsytem info need to given where 'AAAA' is given in the abvoe code.

Thanks
Veera.
verra, can this be accomplished with the interactive interface or is it only in batch?