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

Please tell me what is wrong in the code pasted below.


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kvkkumar

New User


Joined: 25 Mar 2010
Posts: 3
Location: hyderabad

PostPosted: Sat Mar 27, 2010 7:12 pm
Reply with quote

Code:
WHEN EIBAID = DFHPF5                           
  PERFORM RCVMAP                               
  IF WS-RESP = DFHRESP(NORMAL) THEN           
      MOVE 80 TO WS-LEN                       
      EXEC CICS READ                           
         FILE('VSAM142')                       
         INTO(EMPF)                           
         RIDFLD(EMPIDI)                       
         LENGTH(WS-LEN)                       
         UPDATE                               
      END-EXEC                                 
      IF WS-RESP = DFHRESP(NORMAL) THEN       
         EXEC CICS DELETE                     
            FILE('VSAM142')                   
            RESP(WS-RES1)                     
         END-EXEC                             
         MOVE LOW-VALUE TO EMPVMPGO           
         IF WS-RES1 = DFHRESP(NORMAL) THEN     
            MOVE 'RECORD DELETED' TO MSGO     
         END-IF                               
      ELSE                                     
         IF WS-RESP = DFHRESP(NOTFND) THEN     
         MOVE 'READ FAILED' TO MSGO           
         END-IF                               
      END-IF                       [/color]           
  END-IF                                       
  PERFORM SENDMAP     


In the above code, I could successfully test the 'RECORD DELETED' if block..
When I am trying to delete some record which is not existing in VSAM file, then I am not getting 'READ failed' message.
After READ, I could see NOTFND exception, Eventhough I handled it in the code, it is getting abended..instead of displaying the message..

What is the error in the code?

Regards,
Kiran
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Sat Mar 27, 2010 7:22 pm
Reply with quote

Please learn to use the Code button when posting code. I've edited your post to do so this time.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Sat Mar 27, 2010 7:25 pm
Reply with quote

Please note that you are testing WS-RESP for a value. Where is the RESP option on the READ command?
Back to top
View user's profile Send private message
kvkkumar

New User


Joined: 25 Mar 2010
Posts: 3
Location: hyderabad

PostPosted: Sat Mar 27, 2010 7:26 pm
Reply with quote

Thank you..
Back to top
View user's profile Send private message
kvkkumar

New User


Joined: 25 Mar 2010
Posts: 3
Location: hyderabad

PostPosted: Sat Mar 27, 2010 7:30 pm
Reply with quote

Thank you Robert..
It is working fine now.. Sorry for silly mistake..
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: Sat Mar 27, 2010 9:38 pm
Reply with quote

Hello and welcome to the forum,

Good to hear it is working - thank you for letting us know icon_smile.gif

Quote:
It is working fine now.. Sorry for silly mistake..
Once we know the reason, many things seem silly, though they did not seem silly before the answer was known icon_wink.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 -> CICS

 


Similar Topics
Topic Forum Replies
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts REXX code to expand copybook in a cob... CLIST & REXX 2
No new posts VSAM return code 23 - for a Random read COBOL Programming 4
No new posts Monitoring production job progress. N... JCL & VSAM 4
Search our Forums:

Back to Top