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

Error with Link Edit during SMP/E Apply


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Madhaviy

New User


Joined: 30 Oct 2009
Posts: 37
Location: India

PostPosted: Fri Mar 16, 2012 6:14 pm
Reply with quote

Hi,

While performing SMP/E APPLY, i get the following error:
GIM23911E ** LINK-EDIT PROCESSING FOR SYSMOD BC00086..

When looking in output of binder i see following message:

IEW2322I 1220 11 INCLUDE SMPWRK3(A12FFTRT) BC00086
IEW2322I 1220 12 INCLUDE ACFMOD(ACFFFTRT)
IEW2302E 1031 THE DATA SET SPECIFIED BY DDNAME ACFMOD COULD NOT BE FOUND

I have specified ACFMOD as a DDDEF to target zone the dataset specified does exist.

I am not sure how the Binder is trying to find out the Dataset for ACFMOD.
I have also specified in my JCLIN the DDNAME for the same.
Here is some screen shots of the SYSMOD:
++MOD(A12$GCVT) DISTLIB(AAX1MOD0) .
INCLUDE ACFMOD(ACF$GCVT)
.
.
.++JCLIN .
//LK1 EXEC PGM=IEWL,PARM='RENT,NCAL,LET,MAP,LIST,XREF'
//SYSPRINT DD SYSOUT=*
//SYSLMOD DD DSN=CAI.CAX1LPA,DISP=SHR
//AAX1MOD0 DD DSN=CAI.AAX1MOD0,DISP=SHR
//ACFMOD DD DSN=CAI.ACFMOD,DISP=SHR


The manual doesn't give a good explanation for the message IEW2302E.

I am trying to find out where linkage editor looks to resolve DDNAME ACMOD and why is it not finding one.

Thanks in advance.
Regards.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Fri Mar 16, 2012 6:53 pm
Reply with quote

Quote:
The manual doesn't give a good explanation for the message IEW2302E.


but there is almost nothing to understand ...
Quote:
IEW2302E 1031 THE DATA SET SPECIFIED BY DDNAME ACFMOD COULD NOT BE FOUND


what is that is not clear, You do not understand
the dddef was pointing to a non existent dataset
FIX IT

I tend to trust more the zOS messages rathe than clueless people
Back to top
View user's profile Send private message
Madhaviy

New User


Joined: 30 Oct 2009
Posts: 37
Location: India

PostPosted: Fri Mar 16, 2012 7:09 pm
Reply with quote

The dataset DOES exist.
I wouldnt have spent time to post a query if i that was the case.
And please look into complete explanation of message in the manual,
it says something.... OR... something.
Never telling in which case what?

My question was simple where does binder look to resolve the DDNAME in case of SMP/E.
In case of a simple link-edit JCL an explicit DD name is reqd.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri Mar 16, 2012 7:14 pm
Reply with quote

CAX1LPA is an acf2 library,
ACFMOD is probably also.

most of the time they are named CAI.ACF2.CAX1LPA and CAI.ACF2.ACFMOD

if different at your site, then ignore,

but as enrico says,
for one reason or another, the dsn is a no find / no matter what you say.

and forget about trying to determine
Quote:
where linkage editor looks to resolve DDNAME ACMOD


that comment alone tells me you have no idea what you are doing,
obviously avoiding talking with your co-workers,
because that is a error message
generated during the allocation phase of a step's ds's,
and has nothing to do with the utility/program being invoked.

most probably you just can not spell
(another incompetence to add to your list of failures)
but it could be as complicated as an uncataloged ds
Back to top
View user's profile Send private message
Madhaviy

New User


Joined: 30 Oct 2009
Posts: 37
Location: India

PostPosted: Fri Mar 16, 2012 7:25 pm
Reply with quote

Guys, i am telling you this is the case.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Mar 16, 2012 7:41 pm
Reply with quote

Post an ISPF 3.4 showing the characteristics for CAI.ACFMOD.

Also, post the SMP/E definition for ACFMOD since if you put a data set name in the DDDEF and that data set name does not match what your DD name is pointing to, you could have problems.

And stop posting that the data set exists -- IT DOES NOT MATTER WHAT YOU SAY -- the system cannot find the data set, so the possibilities are (1) it does not exist, (2) it exists but is not catralogued, or (3) there's some other problem. The system does not lie to you -- if it says the data set does not exist, then the data set does not exist to the system, period. As long as you continue to state that the data set exists, then you CANNOT solve the problem since to solve this problem you must first believe what the system is telling you.
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Fri Mar 16, 2012 7:43 pm
Reply with quote

OK, so you don't believe the message.

Why don't you try just running a link/bind including the module into something random?

Then just change the dsn to a load library that you know (also) exists, and include a member from that.

Show the definition of the library you are trying to include from, as well.
Back to top
View user's profile Send private message
Madhaviy

New User


Joined: 30 Oct 2009
Posts: 37
Location: India

PostPosted: Fri Mar 16, 2012 8:01 pm
Reply with quote

ISPF DSLIST
and SMP/E DDDEF Display do match.
Back to top
View user's profile Send private message
Madhaviy

New User


Joined: 30 Oct 2009
Posts: 37
Location: India

PostPosted: Fri Mar 16, 2012 8:05 pm
Reply with quote

@Bill,

i believe the message, what i am saying is it could have been more informational. It says:

IEW2302E THE DATA SET SPECIFIED BY DDNAME ddname COULD NOT BE FOUND, AND
THUS HAS NOT BEEN INCLUDED.


Explanation: Either no data set has been allocated to the specified ddname or (if the call interface was used) an EPTOKEN was passed but the module was not loaded by the program management loader, or was loaded from linklist.
System Action: The target workmod is unchanged.

I couldnt figure out what actually is the reason if it is not the obvious one.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri Mar 16, 2012 8:18 pm
Reply with quote

ISPF 3.4 showing the characteristics for CAI.ACFMOD.

perform line command I
and provide the output
VIA CUT AND PASTE
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri Mar 16, 2012 9:23 pm
Reply with quote

lBill,

you are correct, the IEW2.... msgs are generated by the binder.

Madhaviy


my apologizes. i was incorrect about the allocat activity.

but, continuing on this subject,

in the jesmsg,

what msgs are generated for the allocation of ddname acfmod?
Back to top
View user's profile Send private message
Madhaviy

New User


Joined: 30 Oct 2009
Posts: 37
Location: India

PostPosted: Fri Mar 16, 2012 9:58 pm
Reply with quote

ACFMOD does not appear in the JESMSG and amazingly it is not in File Allocation Summary Report in SMPRPT as well.

I tried many things one of which was allocating ACFMOD explicitly in Apply JCL as
//S1 EXEC PGM=GIMSMP
//ACFMOD DD DISP=SHR,DSN=CAI.ACFMOD
//SMPCSI DD......

And it did not throw the above message.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Mar 16, 2012 10:47 pm
Reply with quote

Quote:
ACFMOD does not appear in the JESMSG and amazingly it is not in File Allocation Summary Report in SMPRPT as well.
So, in other words -- YOU WERE WRONG AND THE SYSTEM WAS RIGHT. You need to learn to trust the system when it gives you messages about things; there's no reason for those messages to lie to you.
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 -> ABENDS & Debugging

 


Similar Topics
Topic Forum Replies
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 Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
Search our Forums:

Back to Top