MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Allocation of temporary file in TSO

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> TSO and ISPF
View previous topic :: View next topic  
Author Message
mly
Beginner


Joined: 26 Dec 2002
Posts: 7
Topics: 3

PostPosted: Thu Mar 13, 2003 5:50 pm    Post subject: Allocation of temporary file in TSO Reply with quote

Hi,
When we submit a job or search for some string in option 3.14 in TSO, a temporary file &userid.SPFTEMP0.CNTL is allocated. Could anybody tell me what is the ISPF Library (ddname and dsname) where this file is created ?

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


Joined: 03 Jan 2003
Posts: 1014
Topics: 13
Location: Atlantis

PostPosted: Thu Mar 13, 2003 8:12 pm    Post subject: Reply with quote

The ddname is variable (ISPnnnnn) and you already have the data set name.
You can avoid the allocation by preallocating a F80 sequential data set to ISPCTL0 and ISPCTL1, Online, you may need more because of split screens. See the ISPF planning and customization guide.
Back to top
View user's profile Send private message Visit poster's website
mly
Beginner


Joined: 26 Dec 2002
Posts: 7
Topics: 3

PostPosted: Thu Mar 13, 2003 8:41 pm    Post subject: Reply with quote

semigeezer,

I'm sorry, I think I was not clear enough.
I want to know the name of the member of the ISPF Library (maybe a clist?) where these temporary files are created by the system.

thanks.
Back to top
View user's profile Send private message
semigeezer
Supermod


Joined: 03 Jan 2003
Posts: 1014
Topics: 13
Location: Atlantis

PostPosted: Fri Mar 14, 2003 12:33 am    Post subject: Reply with quote

It's built into the ISPF code. What do you need to do? If you need to change the name due to conflicts or multiple logins, you need to modify the ISPF configuration table or use one of the many examples of ISPF exit 16 floating around. It is much better to preallocate the ISPCTLx ddnames though, preferably to VIO.
Back to top
View user's profile Send private message Visit poster's website
mly
Beginner


Joined: 26 Dec 2002
Posts: 7
Topics: 3

PostPosted: Fri Mar 14, 2003 9:28 am    Post subject: Reply with quote

In my shop the TSO prefix is a fixed variable (not the userid) and I personally prefer working with noprefix. So, I’m having conflicts with the name of these temporary files and allocation fails.
Then, I thought if is there a way I can continue running noprefix, but altering the name of the files adding that fixed variable to its names.
Back to top
View user's profile Send private message
taltyman
JCL Forum Moderator
JCL Forum Moderator


Joined: 02 Dec 2002
Posts: 310
Topics: 8
Location: Texas

PostPosted: Fri Mar 14, 2003 10:09 am    Post subject: Reply with quote

Here's a sample allocation in one of our logon procs...
Code:

//ISPCTL0  DD  DISP=NEW,UNIT=VIO,                           
//             SPACE=(CYL,(9,5)),                           
//             DCB=(RECFM=FB,LRECL=80,BLKSIZE=800)           
//ISPCTL1  DD  DISP=NEW,UNIT=VIO,                           
//             SPACE=(CYL,(9,5)),                           
//             DCB=(RECFM=FB,LRECL=80,BLKSIZE=800)           
//ISPCTL2  DD  DISP=NEW,UNIT=VIO,                           
//             SPACE=(CYL,(9,5)),                           
//             DCB=(RECFM=FB,LRECL=80,BLKSIZE=800)           
//ISPLST1  DD  DISP=NEW,UNIT=VIO,                           
//             SPACE=(CYL,(9,1)),                           
//             DCB=(RECFM=FB,LRECL=121,BLKSIZE=1210)         
//ISPLST2  DD  DISP=NEW,UNIT=VIO,                           
//             SPACE=(CYL,(1,1)),                           
//             DCB=(RECFM=FB,LRECL=121,BLKSIZE=1210)     

You could allocate what you need prior to entering ispf.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> TSO and ISPF All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group