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

data in PACKED format


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

New User


Joined: 26 Mar 2007
Posts: 57
Location: Pune

PostPosted: Fri May 14, 2010 9:55 pm
Reply with quote

Hi All,

I have a PS file with PACKED DATA in it. I could not open the file in 3.4. I am getting a a error message

" IEA705I ERROR DURING GETMAIN SYS CODE = 878-10 USERID TSOLOGON $$$LOGON 00
IEA705I 00F91B80 007F8118 007F8118 00005200 0023E2D8
"
"

System abend code 878
Reason code 10

"

From the ISPF tutorial I found the reason as " 878 - INSUFFICIENT VIRTUAL STORAGE "

I dont know how to increate the Virtual space to open the file.


I could open the file in Browse mode in FILEAID where can i cannot give he command " PACK OFF"

Please some one help me
Back to top
View user's profile Send private message
prino

Senior Member


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

PostPosted: Fri May 14, 2010 10:00 pm
Reply with quote

Edit it in batch using an edit macro and specify "REGION=0M".
Back to top
View user's profile Send private message
sparrow

New User


Joined: 26 Mar 2007
Posts: 57
Location: Pune

PostPosted: Fri May 14, 2010 10:05 pm
Reply with quote

Hi Prino,

Thanks for your reply..
I tried this edit macro

/* REXX */
ADDRESS ISREDIT "MACRO"
ADDRESS ISREDIT "PACK OFF"
ADDRESS ISREDIT "SAVE"
ADDRESS ISREDIT "END"
EXIT

but it didnot work...could you please tell me where to add the "REGION=0M". ?

Thanks
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: Fri May 14, 2010 10:13 pm
Reply with quote

Hello,

Quote:
but it didnot work...
Yup, just another wasted iteration. . .

Do not post "it didn't work" as this is a complete waste of everyone's time. . . icon_sad.gif

What happened? A syntax error? An abend? Undesired results?

The REGION parameter goes on the JOB or the EXEC statement. I'd suggest both. . .
Back to top
View user's profile Send private message
sparrow

New User


Joined: 26 Mar 2007
Posts: 57
Location: Pune

PostPosted: Fri May 14, 2010 10:18 pm
Reply with quote

Sorry for wasting you time

I used a REXX exec to edit the file with edit macro

here is my EXEC

/* REXX */
ADDRESS TSO
"ALTLIB ACTIVATE APPL(EXEC) DA('MYPDS.EXEC')"
ADDRESS ISPEXEC
"EDIT DATASET('Filename') MACRO(PACK)"

EXIT

and my MACRO is as i pasted earlier

i got a error message like this


IEA705I ERROR DURING GETMAIN SYS CODE = 878-10 USERID TSOLOGON $$$LOGON 00
IEA705I 00F91B80 007A08E0 007A08E0 00005200 00237580
IRX0250E System abend code 878, reason code 00000016.

IRX0255E Abend in host command EDIT or address environment routine ISPEXEC
Back to top
View user's profile Send private message
prino

Senior Member


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

PostPosted: Fri May 14, 2010 10:30 pm
Reply with quote

And how about your JCL?

Preferably between
Code:
[code][/code]
tags, so that it remains readable as JCL.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Fri May 14, 2010 10:33 pm
Reply with quote

1. you apparently have a large file, or a file with large records.

2. if you would read prino's post,
properly,
he told you to run EDIT in Batch, with a Macro to change the PACK attribute.
you ran it it foreground.

3. Why are you EDITing the file, anyway?

4. As usual, if you would tell us what you want to do,
instead of how you want to do it,
we could offer suggestions.

5. besides, what problem is there with the PACK ON?
Back to top
View user's profile Send private message
sparrow

New User


Joined: 26 Mar 2007
Posts: 57
Location: Pune

PostPosted: Fri May 14, 2010 11:16 pm
Reply with quote

dbzTHEdinosauer,

here are my answers.

1. Yes it seems like a large file

2. I donot know how to run a macro thru Batch.

3. The data in the file is in PACKED format..I need to unpack it. I can use the PACK OFF command in EDIT mode.

4.its same as #3.

5.my program is not reading the file with PACKED data properly.

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

Senior Member


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

PostPosted: Fri May 14, 2010 11:38 pm
Reply with quote

ISRLEMX

No clue if it will work on datasets, in which case a BATCH edit is your only choice.
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 How to save SYSLOG as text data via P... All Other Mainframe Topics 4
No new posts Store the data for fixed length COBOL Programming 1
No new posts Populate last day of the Month in MMD... SYNCSORT 2
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
Search our Forums:

Back to Top