error in executing the program

IBM's cross-platform compiler PL/I for MVS, VM & VSE, OS/390 and Enterprise PL/I for z/OS
syamcs
Posts: 56
Joined: Thu Feb 10, 2011 5:36 pm
Skillset: jcl,vsam,rexx,cobol,cics
Referer: google
Location: chennai

error in executing the program

Postby syamcs » Wed Apr 06, 2011 3:50 pm

hi all,
I just started learning PL/I and I executed a small program
MANPGM :PROCEDURE OPTIONS(MAIN);
DCL A FIXED DECIMAL(4),
B FIXED DECIMAL(4);
GET LIST(A,B);
PUT LIST('A:',A);
PUT LIST('B:',B);
A = A + 1;
B = B + 1;
PUT LINE(14) LIST('A:',A);
PUT SKIP LIST('B:',B);
END MANPGM;

the jcl which i used to link-edit is as follows

//MGMTR03Q JOB ,,CLASS=A,
// MSGLEVEL=(1,1),NOTIFY=MGMTR03,TIME=(1)
// JCLLIB ORDER=(MGMTR03.PLI.PDS)
//S1 EXEC PROC=IBMZCPL,MEM=PLI11
//PLI.SYSIN DD DSN=MGMTR03.PLI.PDS(&MEM),DISP=SHR
//LKED.SYSLMOD DD DSN=MGMTR03.PLI.LOAD(&MEM),DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*

when i executed the above JCL I got the following error

Unable to load phase: IBM3TBY

can any one help me in this issue

Regards
Syam

User avatar
prino
Posts: 641
Joined: Wed Mar 11, 2009 12:22 am
Skillset: PL/I - CICS - DB2 - IDMS - REXX - JCL, most in excess of three decades
Referer: Google
Location: Vilnius, Lithuania
Contact:

Re: error in executing the program

Postby prino » Wed Apr 06, 2011 5:42 pm

Part of the compiler cannot be found, not much we can do about it. You will have to ask your support group to check (and correct) the steplib for the PL/I compiler.
Robert AH Prins
robert.ah.prins @ the.17+Gb.Google thingy


  • Similar Topics
    Replies
    Views
    Last post