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

SOC4 abend while migrating the PL/1 code to COBOL


IBM Mainframe Forums -> PL/I & Assembler
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
diwakar_rao

New User


Joined: 04 Mar 2007
Posts: 14
Location: Chennai

PostPosted: Tue May 13, 2008 4:55 pm
Reply with quote

Hi,

I am migrating the below code in PL/1 to COBOL

PL/1
===

DCL PTR3 POINTER;
DCL CHAR4 CHAR(4) BASED(PTR3);
PTR3->CHR4='ABCD';

COBOL
=====

01 PTR3 POINTER in LOCAL STORAGE SECTION
01 CHAR4 PIC x(4) in LINKAGE SECTION

SET ADDRESS OF CHAR4 TO PTR3
SET PTR3 TO ADDRESS OF CHAR4
MOVE "ABCD" TO CHAR(4)

But i am getting SOC4 abend when i run in COBOL

Regards,
Bharat
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 2146
Location: At my coffee table

PostPosted: Tue May 13, 2008 6:59 pm
Reply with quote

How are you getting the address of CHAR4?
Is this a called subroutine?
Does the PROCEDURE DIVISION have a USING CHAR4?
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Wed May 14, 2008 12:26 am
Reply with quote

SET ADDRESS OF CHAR4 TO PTR3

what does ptr3 contain when the above is executed.

Code:

SET ADDRESS OF CHAR4 TO PTR3
SET PTR3 TO ADDRESS OF CHAR4
MOVE "ABCD" TO CHAR(4)



the two set commands make no sense in cobol. also, I hope the CHAR(4) is a typo.
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 -> PL/I & Assembler

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts run rexx code with jcl CLIST & REXX 15
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Compile rexx code with jcl CLIST & REXX 6
Search our Forums:

Back to Top