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

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
syamcs
 
Posts: 56
Joined: Thu Feb 10, 2011 5:36 pm
Location: chennai
Has thanked: 0 time
Been thanked: 0 time

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
User avatar
prino
 
Posts: 635
Joined: Wed Mar 11, 2009 12:22 am
Location: Vilnius, Lithuania
Has thanked: 3 times
Been thanked: 28 times


Return to PL/I

 


  • Related topics
    Replies
    Views
    Last post