Anybody can explain these CICS qury in simple language as cl

Support for CICS/ESA, CICS/TS & Transaction Gateway, CICS Configuration Manager and CICS Performance Analyzer
arya_starc
Posts: 136
Joined: Mon Sep 21, 2015 1:39 pm
Skillset: VSAM,CICS,JCL,COBOL
Referer: INTERENT

Anybody can explain these CICS qury in simple language as cl

Postby arya_starc » Sun Aug 14, 2016 7:16 pm

Code: Select all


*                                                    
     EXEC CICS IGNORE CONDITION                      
               QIDERR                                
     END-EXEC.                                      
*                                                    
     EXEC CICS DELETEQ TS                            
               QUEUE (WS-ARPP-QUEUE-ID-NAME)        
     END-EXEC.                                      
*                                                    




 

Robert Sample
Global moderator
Posts: 3720
Joined: Sat Dec 19, 2009 8:32 pm
Skillset: Systems programming, SAS, COBOL, CICS, JCL, SMS, VSAM, etc.
Referer: other forum
Location: Dubuque, Iowa, USA

Re: Anybody can explain these CICS qury in simple language a

Postby Robert Sample » Sun Aug 14, 2016 7:40 pm

The first says to ignore a QIDERR if it occurs.

The second says to delete TS queue whose name is stored in variable WS-ARPP-QUEUE-ID-NAME. This API call could get a QIDERR condition should the variable not have a valid TS queue name, but the previous command says don't ABEND the program should that happen.

Both of these API calls are CLEARLY explained in the CICS Application Programming Reference and Application Programming Guide manuals. Why did you not look in them before posting here? If you did, why did you not say so and indicate what was not clear about the manual explanations? Of course, both API calls require a considerable knowledge of CICS -- such as what the response code is, what a temporary storage queue is, and what response codes can arise for the various API calls. If this basic knowledge is what you were asking for, you need to find someone (or a web site) to teach you CICS. We resolve problems and answer questions here, we don't teach subjects.


  • Similar Topics
    Replies
    Views
    Last post