IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

CICS/PL1 JCL. Error Maxcc=12 at Link edit step.


IBM Mainframe Forums -> PL/I & Assembler
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
quest2008

New User


Joined: 12 Jun 2008
Posts: 22
Location: bangalore

PostPosted: Wed Jun 10, 2009 11:20 am
Reply with quote

HI Guys,

I am trying to do compile a CICS/PL1 program. I customized the JCL.
But its throwing MAXCC=12 at link edit step.

IEW2456E 9207 SYMBOL DFHEI01 UNRESOLVED. MEMBER COULD NOT BE INCLUDED FROM THE DESIGNATED CALL LIBRARY.

I am not sure whether i am using correct complier and translator. Please let me know what is the reason and how can i fix it.


Here is the proc i am calling from job.

000001 //PLICICS PROC
000005 //TRN EXEC PGM=DFHEPP1$,
000006 // PARM='XOPTS(CICS)',
000007 // REGION=2M
000008 //STEPLIB DD DSN=DFH310.CICS.SDFHLOAD,DISP=SHR
000009 //SYSIN DD DSN=&SRCLIB(&MEMBER),DISP=SHR
000010 //SYSPRINT DD SYSOUT=*
000011 //SYSPUNCH DD DSN=&&SYSCIN,
000012 // DISP=(,PASS),UNIT=SYSDA,
000013 // DCB=BLKSIZE=400,
000014 // SPACE=(400,(400,100))
000017 //PLI EXEC PGM=IBMZPLI,PARM='SOURCE,OPTIONS,GOSTMT,GONUMBER,
000018 // OBJECT',REGION=512K
000019 //STEPLIB DD DSN=IEL320.SIBMZCMP,DISP=SHR
000020 // DD DSN=CEE.SCEERUN,DISP=SHR
000021 //SYSPRINT DD SYSOUT=*
000022 //SYSIN DD DSN=&&SYSCIN,DISP=(MOD,PASS)
000023 //SYSLIN DD DSN=&&LOADSET,DISP=(NEW,PASS),UNIT=SYSDA,
000024 // SPACE=(TRK,(3,3)),DCB=(LRECL=80,BLKSIZE=0)
000025 //SYSUT1 DD DSN=&&SYSUT1,UNIT=SYSDA,
000026 // SPACE=(1024,(200,50),,CONTIG,ROUND),DCB=BLKSIZE=1024
000027 //SYSLIB DD DSN=&COPYLIB,DISP=SHR
000028 // DD DSN=DFH310.CICS.SDFHPL1,DISP=SHR
000031 //*
000032 //LKED EXEC PGM=HEWL,REGION=512K,
000033 // COND=((4,LT,PLI),(4,LT,TRN))
000034 //SYSPRINT DD SYSOUT=*
000035 //SYSLIB DD DSN=CEE.SCEELKED,DISP=SHR
000036 // DD DSN=CEE.SCEECICS,DISP=SHR
000046 //SYSLIN DD DSN=&&LOADSET,DISP=(OLD,DELETE)
000047 // DD DDNAME=SYSIN
000048 //SYSLMOD DD DSN=&LOADLIB(&MEMBER),DISP=SHR
000049 //SYSPRINT DD SYSOUT=*
000050 //SYSUDUMP DD SYSOUT=*
Back to top
View user's profile Send private message
Garry Carroll

Senior Member


Joined: 08 May 2006
Posts: 1193
Location: Dublin, Ireland

PostPosted: Wed Jun 10, 2009 12:47 pm
Reply with quote

You don't seem to have any CICS load library in the LKED.SYSLIB concatenation.

Garry.
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Wed Jun 10, 2009 1:16 pm
Reply with quote

quest2008 wrote:
I am trying to do compile a CICS/PL1 program. I customized the JCL.
But its throwing MAXCC=12 at link edit step.


Then the first thing I would do is to uncustomize the JCL and see if that works, rather than waste the time of others. Mayby you should do so too next time... icon_evil.gif
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Wed Jun 10, 2009 1:21 pm
Reply with quote

the cics manuals provide clear info on how to write the compilation steps !
( preprocessor/language_compiler/linkage_editor)

anyway the linkage editor step is missing the CICS libraries
Back to top
View user's profile Send private message
quest2008

New User


Joined: 12 Jun 2008
Posts: 22
Location: bangalore

PostPosted: Wed Jun 10, 2009 2:57 pm
Reply with quote

Thanks.

I tried to compile by incuding following libraries in the LKED ,but still i am having the problem.
DFH310.CICS.SDFHAUTH,DISP=SHR
DFH310.CICS.SDFHLOAD,DISP=SHR
DSN810.SDSNLOAD,DISP=SHR

What are the other library names that i must incude. Any idea?
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Wed Jun 10, 2009 3:00 pm
Reply with quote

why don' t You work the issue out with Your support ?

surely it is not a first time Your organization faces this issue!
Back to top
View user's profile Send private message
Garry Carroll

Senior Member


Joined: 08 May 2006
Posts: 1193
Location: Dublin, Ireland

PostPosted: Wed Jun 10, 2009 3:31 pm
Reply with quote

As Enrico has said
Quote:
the cics manuals provide clear info on how to write the compilation steps !
( preprocessor/language_compiler/linkage_editor)


Your problem is with the linkedit. The required module is in SDFHLOAD - you need to understand how to resolve it. The fine manual tels you how to do this.

Garry.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Jun 11, 2009 4:43 am
Reply with quote

Hello,

Once again, i'm a bit late to the party icon_smile.gif

Quote:
I customized the JCL.
Why - what business reason is there to NOT use the standard jcl?
Back to top
View user's profile Send private message
quest2008

New User


Joined: 12 Jun 2008
Posts: 22
Location: bangalore

PostPosted: Thu Jun 11, 2009 1:36 pm
Reply with quote

Hi All,

After searching and by googling , I have fixed this issue by including the DFHEILL lib.


Actually. Our Client mainframe system has standard JCLs and also ENDEVOR to do compilation for every module.


But the program where i am trying to execute is in my organization mainframe. Here they dont have standard JCL or tool especially for CICS/ASM/DB2 and CICS/PL1/Db2. I got JCLs for CICS/COBOL and modified to CICS/PL1.


Anyway i compiled the program and tested succesfully.

Thanks everyone for your support.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> PL/I & Assembler

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts Return codes-Normal & Abnormal te... JCL & VSAM 7
Search our Forums:

Back to Top