SymDump for CICS PROTDMP file in multiple CICS regions
search cancel

SymDump for CICS PROTDMP file in multiple CICS regions

book

Article ID: 53012

calendar_today

Updated On:

Products

SymDump for CICS SymDump Batch

Issue/Introduction

As part of the base install of SymDump for CICS a PROTDMP file repository is created and dumps produced by application abends are written to the PROTDMP file. The default I-O operations on the FCT for the PROTDMP file are Add, Browse, Delete, Read and Update. Each CICS region regardless of the CICS level must have a unique PROTDMP file which gets allocated to CICS via the PROTDMP FCT entry with the above I-O operations defined. If two CICS regions try to use the same PROTDMP file with the above criteria the results can lead to an AEIP abend.

Resolution

You cannot assign the same physical SymDump for CICS PROTDMP file in more than one CICS region as a PROTDMP DD statement. It must be unique.
The SymDump for CICS Installation Guide states:

 "Two or more concurrently active CICS regions cannot share the same CA SymDump for CICS PROTDMP file for update. ..."         

But you can READ a PROTDMP file from another CICS region.

Define a DMPPROD file, which is defined as PROTDMP file to another CICS region. 
If you encounter an AEIP abend, then define the SymDump for CICS PROTDMP file, you would like to read, as shown in the following sample:

DEFINE FILE(DMPPROD) GROUP(SYM80065)                      
       DESCRIPTION(CA-SYMDUMP FILE)                       
       BROWSE(YES) DELETE(NO) READ(YES) UPDATE(NO) ADD(NO)
       LSRPOOLID(1) OPENTIME(STARTUP) STATUS(ENABLED)     
       STRINGS(3) DATABUFFERS(4)                          
       RECORDFORMAT(F)                                    
 

Check that BROWSE and READ are set to YES via CEDA transaction in your CICS region. Otherwise an AEIP abend will occur.