Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

profile full message...

Status
Not open for further replies.

deveshjogal

Programmer
Dec 30, 2002
61
My job involves a lot of copy paste from mainframe (390) to notepad/excel. If I try to do a SuperC or SuperCE like activity it gives me following message.


************************************************************
ISPV015
Profile full
Profile variable 'ZSSCOGR1' not saved. Profile table is full.


Current dialog statement:
VPUT (ZSSCOPRJ ZSSCOGR1 ZSSCOGR2 ZSSCOGR3 ZSSCOGR4 ZSSCOTYP ) PROFILE

Enter HELP command for further information regarding this error.
Press ENTER key to terminate the dialog.


*******************************************************

After displaying this message if u press <enter> the system return back to main ISPF menu

Can anybody help me ?

Thanks

devesh
 
Devesh,

where are you ultimately tranferring this data? Is it to an IP-connected computer somewhere? So that perhaps you could run ftp?

Code:
//STEP1 EXEC PGM=FTP
//SYSIN DD *
open 111.222.333.444
user <yourid>
password <yourpswd>
put yourfilename
bye
//

or something like that. It's been nearly three years since I've been on a mainframe, but somebody in your systems group ought to be able to help you out.

If not, ask about doing SEND/RECV from a TSO session to your local hard drive to transfer files.

Good luck &quot;Code what you mean,
and mean what you code!
But by all means post your code!&quot;

Razalas
 
Hi Devesh,
I have a feeling that your ISP Profile may well be full or at running out of room. Have a look under 3.2 at the size, allocation, and used number of extents (16 is the max I think) and see if this is the case. The file is called userid.ISPPROF (I think). If it is you will need to allocate a bigger version, called ISPPROF.NEW for instance, copy everything from the old to it, and drop out of PDF. Delete the old version and rename the new as userid.ISPPROF.

Alternatively, contact your helpdesk support who should be able to allocate you a larger dataset. Hope this helps.
Marc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top