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

Data ID not created


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
poornima.yeleswarapu

New User


Joined: 05 Jun 2009
Posts: 2
Location: Chennai

PostPosted: Mon Jun 15, 2009 3:18 pm
Reply with quote

I'm preparing a tool for my project requirments. I'm using the LMINIT service to create the Data id for the DS. But everytime it gives me a return code of 8. And from help manuals I could see that RC=8 means Data ID not created.

Can any one help me out with the error.

Below is the piece of code with which i am finding problem:

ADDRESS ISPEXEC "LMINIT DATAID(did2) DATASET ('"DSN1"') ENQ(SHR)"
IF RC <> 0 THEN
DO
SAY 'LMINIT RETURNED AN ERROR RC OF: ' RC
RETURN
END
ADDRESS ISPEXEC "LMOPEN DATAID("did2")"
IF RC <> 0 THEN
DO
SAY 'LMOPEN RETURNED A RC OF: ' RC
RETURN
END
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Mon Jun 15, 2009 3:30 pm
Reply with quote

you need to run with TRACE ?R.
I imagine (just a guess) that the resolution of DSN1 is not correct.

Has dsn1 been allocated?
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Tue Jun 16, 2009 1:54 am
Reply with quote

Poornima, what does the ISPF Services Guide say about return code 8?
Back to top
View user's profile Send private message
poornima.yeleswarapu

New User


Joined: 05 Jun 2009
Posts: 2
Location: Chennai

PostPosted: Tue Jun 16, 2009 10:49 am
Reply with quote

The DSN1 data set is already created and the RC = 8 means that the Data id is not created.

In my PS file i had two PDS data sets names. When i tried removing one it was working fine. and when i give more than one PDS the same rexx gives me this error.

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

Senior Member


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

PostPosted: Tue Jun 16, 2009 11:29 am
Reply with quote

Put a
Code:
drop didx
statement before the LMINIT of the same didx...
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Tue Jun 16, 2009 9:10 pm
Reply with quote

I was trying to get you to read the whole thing:
Quote:
Data ID not created; the error condition is described in “System variables used to format error messages” on page xx.


The error description is put into some ISPF variables which you can display or otherwise use to debug the problem.

Show us your trace information for the dataset name.
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 -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
No new posts JCL EXEC PARM data in C Java & MQSeries 2
Search our Forums:

Back to Top