View previous topic :: View next topic |
Author |
Message |
bprasanna Beginner
Joined: 05 Sep 2003 Posts: 119 Topics: 33 Location: Hyderabad
|
Posted: Mon Feb 14, 2005 8:15 am Post subject: Running Rexx through JCL |
|
|
Hi,
I am using a JCL (IKJEFT01) to run one my Rexx routine.When I submit the job ,,job is saying it's waiting for the Dataset userid.ISPF.PROFILE.
I have used the disp parms as (old, pass).Agained modified it to shr in my next try.But still the job is not runnnig.
ISPPROF DD DISP=(OLD,PASS),DSN=USERID.ISPF.PROFILE
If i remove this ISPPROF ,,I AM GETTING AN ERROR 0998 SAYING
ISPI002 Following file could not be opened:
ISPPROF
Could any body tell me how can I execute the job through the JCL?
Thanks
Bprasanna |
|
Back to top |
|
 |
superk Advanced

Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Mon Feb 14, 2005 8:20 am Post subject: |
|
|
Why not just allocate a new dataset for ISPPROF? The job should work if this PDS just exists with no members in it. |
|
Back to top |
|
 |
bprasanna Beginner
Joined: 05 Sep 2003 Posts: 119 Topics: 33 Location: Hyderabad
|
Posted: Tue Feb 15, 2005 2:00 am Post subject: |
|
|
Hi,
I tried to execute the job by allocating an empty data set with ISPPROF.But i got the below error .
READY
ISPSTART CMD(SPACER)
ISPV010 Profile not loaded -/-Profile table 'ISPSPROF' not read.Table service RC=8
READY
END
Then I copied all the members from userid.ISPF.PROFILE to new dataset and ran the job,,then I got another error
READY
ISPSTART CMD(SPACER)
ISPI021 Unrecoverable error in initialization of
command tables
ISPI022 ISPF cannot continue. ISPF abending.
ISPSTART ENDED DUE TO ERROR+
USER ABEND CODE 0999 REASON CODE 00000000
Is there somthing I am missing?
Thanks
Bprasanna _________________ ----------------
Thanks&Regards
Bprasanna |
|
Back to top |
|
 |
Mervyn Moderator

Joined: 02 Dec 2002 Posts: 415 Topics: 6 Location: Hove, England
|
Posted: Tue Feb 15, 2005 9:54 am Post subject: |
|
|
If your copy of ISPPROF contains members ISPCMDS or ISRCMDS, delete them then retry. _________________ The day you stop learning the dinosaur becomes extinct |
|
Back to top |
|
 |
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Tue Feb 15, 2005 1:10 pm Post subject: |
|
|
you are probably not allocating the system tables to ISPTLIB (and/or may be running a very old version of ISPF). look up BATCHPDF on google to get an exec that will create the JCL you need for you. |
|
Back to top |
|
 |
bprasanna Beginner
Joined: 05 Sep 2003 Posts: 119 Topics: 33 Location: Hyderabad
|
Posted: Wed Feb 16, 2005 7:58 am Post subject: |
|
|
Mervyn and semigeezer,
Thank you very much!!!
I missed to mention some of the ISPTLIB files.
Thanks
Bprasanna |
|
Back to top |
|
 |
|
|