View previous topic :: View next topic |
Author |
Message |
Phantom Data Mgmt Moderator
Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Mon Jan 27, 2003 11:12 pm Post subject: Checking Sign out in Endevor |
|
|
I have a huge list of Control cards that needs to be changed. I have already written a REXX routine to perform this operation. But, before I use this rexx utility all these control cards needs to be retrieved from Endevor. So my question is this. Is there any way to access Endevor from rexx. Even if Retrieving of an element is not possible, Atleast can we find whether the required element is signed out by some body else when I provide the list of the elements to Rexx toutine. Retrieving and adding the jobs seems more time consuming than the actual change required for the element.
Please Advise. |
|
Back to top |
|
|
Phantom Data Mgmt Moderator
Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Mon Jan 27, 2003 11:31 pm Post subject: |
|
|
I can do the retrieval thro' SCL WHich I can generate thro' REXX routine. Now, the only issue is that I need to know whether the element is signed out by somebody else.
Even If I don't check it, If the return code of the retrieval process is not Zero, I can manually check that Element. But, is there is any way to find it from Rexx.
I am posting replies to the question that I posted. Seems funny.
Thanks, |
|
Back to top |
|
|
Spolacek Beginner
Joined: 17 Dec 2002 Posts: 17 Topics: 2 Location: NJ, USA
|
Posted: Wed Jan 29, 2003 11:41 pm Post subject: |
|
|
Phantom:
Before you write a program to determine which elements are signed out I suggest that you take a look at Endevor's built-in reports. Unless your shop has this feature turned-off, you can generate a report to tell you which elements are signed out for a particular system, subsystem, and type.
You access the reporting function thru option U from the main Endevor menu. This is how it looks in my shop:
Code: | -------------- Endevor for OS/390 Primary Options Menu ---------
Option ===>
0 DEFAULTS - Specify Endevor ISPF default parameters
1 DISPLAY - Perform Display functions
2 FOREGROUND - Execute Foreground Actions
3 BATCH - Perform Batch Action processing
4 PACKAGE - Perform Foreground Package processing
5 BATCH PACKAGE - Perform Batch Package SCL Generation
U USER MENU - Display user option menu
T TUTORIAL - Display information about Endevor
C CHANGES - Display summary of changes for this release
X EXIT - Exit the Endevor dialog |
You can use the Retrieve element function in batch to generate the SCL to retrieve all the PARM members in a subsystem. After you enter your criteria on the batch Retrieve panel, make sure that 'Display List' is set to N, else Endevor will bring up a member list and ask you to select the members you want to retrieve. |
|
Back to top |
|
|
Phantom Data Mgmt Moderator
Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Thu Jan 30, 2003 12:42 am Post subject: |
|
|
HI Spolacek,
Thanks, Our office has that option U. I checked it and it does work. I will try to submit a similar JCL from REXX and check out.
Thanks for ur help. |
|
Back to top |
|
|
Phantom Data Mgmt Moderator
Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Thu Jan 30, 2003 12:49 am Post subject: |
|
|
Spolacek, is there a way to specify multiple element names in the JCL (Signout check jcl). B'cas submitting the JCL repeatedly for 200 and odd cntlcards will be very time consuming and won't be efficient either. Is there a way to get around this.
Please advise |
|
Back to top |
|
|
Spolacek Beginner
Joined: 17 Dec 2002 Posts: 17 Topics: 2 Location: NJ, USA
|
Posted: Thu Jan 30, 2003 8:45 am Post subject: |
|
|
Phantom:
If you are using the Endevor reports, report '08' should get you a list of all elements signed-out in the specified environment, system, and subsystem for type 'PARM'. This is how the screen looks on my system:
Code: | --------------------- ENDEVOR MASTER CONTROL FILE REPORTS ----------
COMMAND ===>
SELECT REPORTS:
_ 01 System inventory profile _ 07 System definition profile
_ 02 System inventory summary s 08 Element signed out profile
_ 03 Element catalog _ 09 Element signed out profile
_ 04 Element activity profile _ 10 Approver group definition
_ 05 Element activity summary _ 11 Approver group usage
_ 06 Element catalog by CCID _ 12 Element catalog by retrieve
FROM ENDEVOR/MVS
ENVIRONMENT ===> YOUR ENV
SYSTEM ===> YOUR SYS
SUBSYSTEM ===> YOUR SUB
ELEMENT ===>
TYPE ===> PARM
STAGE ===> 6
DAYS ===> 999 |
Enter your environment, system, and subsystem and leave the element name field blank. The report will show all PARMs currently signed out. |
|
Back to top |
|
|
|
|