View previous topic :: View next topic |
Author |
Message |
meetrb Beginner
Joined: 24 Nov 2003 Posts: 40 Topics: 15
|
Posted: Wed Jun 02, 2004 9:31 am Post subject: Parameter into Logon Proc |
|
|
Hi All,
In my logon proc I am able to see a program parm which is being passed into the IKJEFT01 program.
I browsed the PDS that were allocated to the SYSPROC and SYSEXEC dd's but I was not able to get any program/exec by that name.
How can I find out where this program is present?
Thanks,
Meetrb |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Wed Jun 02, 2004 10:14 am Post subject: |
|
|
Meetrb,
What is the pgm you are looking for?
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
meetrb Beginner
Joined: 24 Nov 2003 Posts: 40 Topics: 15
|
Posted: Wed Jun 02, 2004 11:11 pm Post subject: |
|
|
Hi,
Sorry for missing that one out. The name of the program is $TSONOM. |
|
Back to top |
|
|
meetrb Beginner
Joined: 24 Nov 2003 Posts: 40 Topics: 15
|
Posted: Thu Jun 03, 2004 1:11 am Post subject: |
|
|
Hi Ravi,
Quote: |
As far as I know $TSONOM is a JCL PROC. Let us know how you came to know its a PROGRAM?
|
When I went through the documentation for IKJEFT01 I found that the PARM value is normally a program or a CLIST/REXX exec that will be used to setup the dataset allocations necessary for setting up ISPF.
Now normally the REXX or CLIST execs are allocated to SYSPROC or SYSEXEC so when I could not find such a member in any of those datasets I assumed it was a program.
Meetrb |
|
Back to top |
|
|
meetrb Beginner
Joined: 24 Nov 2003 Posts: 40 Topics: 15
|
Posted: Thu Jun 03, 2004 1:12 am Post subject: |
|
|
Hi Ravi,
Thanks a lot. The ISRDDN command worked. I got the following message when I used it:
Module $TSONOM was found to be already loaded. Note that
invocations of this program name may pick up another copy from
STEPLIB or a LIBDEF'ed data set or from a tasklib such as ISPLLIB.
Tab to a box and press enter to view the module in storage.
Job pack area resident
Loaded by program fetch
from -LNKLST-
Reentrant
Serially reusable
Not loadable only
Authorized library
Not Authorized program
I am not sure about all the messages. The last few lines seem to be description about the program. Am I correct?
Meetrb |
|
Back to top |
|
|
warp5 Intermediate
Joined: 02 Dec 2002 Posts: 429 Topics: 18 Location: Germany
|
Posted: Thu Jun 03, 2004 1:12 am Post subject: |
|
|
I take it that your logon proc looks something like this:
//PROFSYS EXEC PGM=IKJEFT01,DYNAMNBR=150,PARM='$TSONOM'
$TSONOM could be a Clist or Rexx procedure and should be found in the sysproc or sysexec concatenation. If it is not found there, then it may be a program and would be either in your steplib or linklib concatenation. Use TSO ISRDDN in tso to find out where it is. You can also use TSO LISTA STA, but ISRDDN will give you a list that is formatted and screen controlled. |
|
Back to top |
|
|
meetrb Beginner
Joined: 24 Nov 2003 Posts: 40 Topics: 15
|
Posted: Thu Jun 03, 2004 11:06 pm Post subject: |
|
|
Thanks for all the replies. They were really useful.
Meetrb. |
|
Back to top |
|
|
|
|