JCL internal error



JES, JES2, JCL utilities, IDCAMS, Compile & Run JCLs, PROCs etc...

JCL internal error

Postby anubhav.1982 » Wed Oct 20, 2010 7:08 pm

/*PROFILE CPU=(45,00),TAPE=0
/*ROUTE PRINT SDSF
/*NOTIFY VQ104
//*
//STEP01  EXEC PGM=RESTART,
//         PARM='SB900.GIPRIC.ALMFTP.DVLP.PRG.DEV.ANUBH2'
//STEP02  EXEC PGM=RESTART,
//         PARM='SB900.GIPRIC.ALMFTP.DVLP.PRG.DEV.ANUBH1'
//*
//MASTER   DD DSN=SB900.GIPRIC.ALMFTP.TLS.MOINFO.D1024300,DISP=SHR
//SMCMACRO DD DSN=MI000.MI3SAS.MACROS,DISP=SHR
//MBSFD    DD DSN=SB900.GIPRIC.ALMFTP.TLS.MBSFUND.D1024300,DISP=SHR
//INCBFLE  DD DSN=SB900.GIPRIC.ALMFTP.DVLP.PRG.DEV.ANUBH2,
//           DISP=(NEW,CATLG,DELETE),UNIT=INFOREAL,
//           LABEL=EXPDT=60001,SPACE=(CYL,(95,30),RLSE)
//EXTRACT  DD DSN=SB900.GIPRIC.ALMFTP.DVLP.PRG.DEV.ANUBH1,
//           DISP=(NEW,CATLG,DELETE),UNIT=INFOREAL,
//           LABEL=EXPDT=60001,SPACE=(CYL,(95,30),RLSE)
//SYSIN   DD *


SAS code starts here
It giving error JCL internal error
Can somebody tell me what is the problem with JCL
anubhav.1982
 
Posts: 8
Joined: Wed Oct 20, 2010 7:04 pm
Has thanked: 0 time
Been thanked: 0 time

Re: JCL Error

Postby MrSpock » Wed Oct 20, 2010 7:30 pm

/*PROFILE CPU=(45,00),TAPE=0


??? I see no such documented construct in the MVS JCL Reference manual.
User avatar
MrSpock
Global moderator
 
Posts: 807
Joined: Wed Jun 06, 2007 9:37 pm
Location: Raleigh NC USA
Has thanked: 0 time
Been thanked: 4 times

Re: JCL Error

Postby Robert Sample » Wed Oct 20, 2010 7:32 pm

JCL specifics -- such as JOB card requirements, UNIT names, and data set name standards -- are controlled by individual sites. Unless you talk to someone at your site (coworker, team leader, or site support group), you will not be able to find out the precise problem. Generic JCL issues we can help with, but site-specific issues we cannot, and a JCL internal error could definitely be a site-specific problem.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Re: JCL Error

Postby steve-myers » Wed Oct 20, 2010 7:48 pm

/*PROFILE is not a standard JES2 JECL statement.

In /*ROUTE PRINT SDSF, the SDSF string in very non-standard, but it may have meaning at your site.

The format of the operand in /*NOTIFY is not valid. See the JCL reference manual.

UNIT=INFOREAL is site dependent You will have to find out what INFOREAL means (if anything) at your site.

I cannot guess what PGM=RESTART does.
steve-myers
Global moderator
 
Posts: 2105
Joined: Thu Jun 03, 2010 6:21 pm
Has thanked: 4 times
Been thanked: 243 times

Re: JCL Error

Postby Akatsukami » Wed Oct 20, 2010 7:49 pm

I agree with both Messieurs Sample and Spock. Moreover, I note that you have not told us what the error actually is, only that there is one, which makes it difficult to diagnose.
"You have sat too long for any good you have been doing lately ... Depart, I say; and let us have done with you. In the name of God, go!" -- what I say to a junior programmer at least once a day
User avatar
Akatsukami
Global moderator
 
Posts: 1058
Joined: Sat Oct 16, 2010 2:31 am
Location: Bloomington, IL
Has thanked: 6 times
Been thanked: 51 times

Re: JCL Error

Postby enrico-sorichetti » Wed Oct 20, 2010 7:50 pm

the only place to ask for help is Your suppoort
the /*profile is not a standard jes control statement
most probably a user local mod or some product addon

from my point of view the JCL internal error
could be the result of a clobbered jes user modification
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: JCL Error

Postby anubhav.1982 » Wed Oct 20, 2010 7:57 pm

Thanks guys I deleted the three statements
/*PROFILE CPU=(45,00),TAPE=0
/*ROUTE PRINT SDSF
/*NOTIFY VQ104

and submitted my job ,then I went to 10.st to see log This is what is displayed over ther
SDSF STATUS DISPLAY ALL CLASSES                         NO DISPLAYABLE DATA
NP  ,JOBNAME ,JobID   ,Owner   ,Prty,Queue     ,C, Pos ,SAff ,ASys,Status
S   ,VQ104    TSU03498 VQ104   ,  15,EXECUTION         ,Z200 ,Z200


What does the Queue->Execution means??? and why it says NO DISPLAYABLE DATA
anubhav.1982
 
Posts: 8
Joined: Wed Oct 20, 2010 7:04 pm
Has thanked: 0 time
Been thanked: 0 time

Re: JCL Error

Postby enrico-sorichetti » Wed Oct 20, 2010 8:15 pm

PF1 is Your friend
SDSF help will tell all You might want to know about the meaning of the columns displayed
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: JCL Error

Postby anubhav.1982 » Fri Oct 22, 2010 1:20 am

My priority of the job is showing 15 that means the leaset priority and its is in execution queue.How can i increase the priority so that my job moves from the execution queue and I am able to see results at SDSF.
anubhav.1982
 
Posts: 8
Joined: Wed Oct 20, 2010 7:04 pm
Has thanked: 0 time
Been thanked: 0 time

Re: JCL Error

Postby enrico-sorichetti » Fri Oct 22, 2010 1:33 am

the <job> in the execution queue You are seeing is Your tso userid!
the wisest thing would be to review Your understanding of jes/mvs queues and prioprities

since You did not care to tell the name of Your job,
You did not care to tell the settings of Your SDSF session
we cannot tell anything about Your issue
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times


Return to JCL

 


  • Related topics
    Replies
    Views
    Last post