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

Need CICS resp codes list with detailed explanation


IBM Mainframe Forums -> HomeWorks & Requests
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
bvenu
Warnings : 1

New User


Joined: 17 Aug 2005
Posts: 7

PostPosted: Wed Aug 17, 2005 6:38 pm
Reply with quote

Hi friends,
i need CICS resp codes list with detailed explanation, if any body have that please send to my id ***EMail ID REMOVED... Use CODE tag to include mail id***
Back to top
View user's profile Send private message
kumar_ngl
Warnings : 1

New User


Joined: 05 Aug 2005
Posts: 50
Location: chennai

PostPosted: Wed Dec 28, 2005 5:16 pm
Reply with quote

Hi venu,

Resp is a option to get the Return code of a specific cics execution.

It should be decalared as full word binary in working-storage ...depending upon the RC of resp value we can lead the program to sucessful execution

example:

Working-storage section.
77 ws-resp pic s9(8) comp.

procedure division.
main.
exec cics send
from ( )
length( )
resp(ws-resp)
end-exec.

If ws-resp=DFHRESP(NORMAL)
GO TO NORMAL-RNT.
IF WS-RESP=DFHLRESP(LENGERR)
GO-TO ERR-RTN.
..
..
..


THANKS,
kumar.p.v
Back to top
View user's profile Send private message
khamarutheen

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Wed Dec 28, 2005 5:20 pm
Reply with quote

Hi venu,
plz view the link and downlaod it,

Mainframe Downloads
Back to top
View user's profile Send private message
esanraja

New User


Joined: 08 Aug 2007
Posts: 4
Location: chennai

PostPosted: Wed Aug 29, 2007 10:03 pm
Reply with quote

These two are my Copy books in my Cobol program,

COPY CICSRESP.
COPY CICSATTR.

But unable to find this copy book in my MF server. Please can any one assit how to get this copy book from where. and where should i keep this copy book inorder to run my PROGRAM.

RESP (CICS-RESP-CODE) ,this statement is not executing with out this copy book.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Wed Aug 29, 2007 10:49 pm
Reply with quote

look in any CICS application programmers guide. In the discussion about CICS control blocks, they talk about the eib fields. look there to find return and response codes.
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Thu Aug 30, 2007 12:10 am
Reply with quote

Try here:
CICS-value data areas (cvdas)
About half way down the page is:
The CVDA values and their numeric equivalents are listed in the following topics:
CVDAs and numeric values in alphabetic sequence
CVDAs and numeric values in numeric sequence
CVDA values for the DEVICE option
Which are links too......
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 -> HomeWorks & Requests

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts Return codes-Normal & Abnormal te... JCL & VSAM 7
No new posts How to create a list of SAR jobs with... CA Products 3
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
Search our Forums:

Back to Top