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

Moving a variable length record " S0C7 "


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Sasi Kiran Patha
Warnings : 2

New User


Joined: 19 Nov 2006
Posts: 73
Location: Hyederabad

PostPosted: Tue Jan 09, 2007 11:18 am
Reply with quote

hi,

I have a VS COBOL program to be converted to COBOL/370 version.

In the program the record (01 level) INTERFACE-RECORD is in a copy book that is of variable lenth [2393]. The record contains both numeric and alphanumeric fields.

COBOL/370 is not allowing the initialization of INTERFACE-RECORD.
In VS COBOL spaces are moved to INTERFACE-RECORD.

While executing a move statement in COBO/370 version:
MOVE INTERFACE-RECORD to ws-record [pic x(937)] S0C7 is encountered.

how do we solve this.

regards,
Sasi Patha.
Back to top
View user's profile Send private message
trgk03

New User


Joined: 20 Jan 2006
Posts: 12
Location: kochi

PostPosted: Tue Jan 09, 2007 1:21 pm
Reply with quote

Hi Patha,

I think you cannot move INTERFACE-RECORD to ws-record [pic x(937)] directly instead you need to move the individual variables one by one into ws-record.(define similar variables under ws-record of same size as that of interface-record)
I think this abend code SOC7 is comming becz u are moving variables of incompatiable type.

Regards,
Ds
Back to top
View user's profile Send private message
Sasi Kiran Patha
Warnings : 2

New User


Joined: 19 Nov 2006
Posts: 73
Location: Hyederabad

PostPosted: Tue Jan 09, 2007 2:02 pm
Reply with quote

hi,
I was able to debug the issue.

the interface-record was variable length because of a table having depending upon clause. The depending upon variable was not intitialized in the COBOL program. done it and successfully executed.

Thank u for reply.
regards,
Sasi Patha.
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: Wed Jan 10, 2007 4:23 am
Reply with quote

Hello,

Just want to add a bit of clarification -

The 0c7 was not caused by the move of unequal lengths. Group moves are alphanumeric and will not give an 0c7.

The abend was most likely due to using a "numeric" field that was corrupted by the mis-matched move.

Good catch finding your abend icon_biggrin.gif
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top