When applying PTF LU13427, there is a HOLD action that affects "sites with an installed written DCCTFPR prefix exit."
The Hold steps indicate that module DCCTFAA containing the prefix exit must be reassembled if it is used.
Where would the DCCTFAA or DCCTFPR modules be?
z/OS
Datacom CICS Services
Because of the HOLD action, you need to know if you are using the Broadcom-supplied DCCTFPR module, or if you have modified it to contain the prefix exit for your site.
Here is how you can find the module and load lib for this:
// EXPORT SYMLIST=(*)The output here will show a module map of the contents, and you would see entries for the CSECT DCCTFAA if it was used. Our shipped DCCTFPR module does not have DCCTFAA in it.
// SET LLIB=Your.loadlib from #1, above.
// SET LM01=DCCTFPR
//*
//ST1 EXEC PGM=AMBLIST
//SYSPRINT DD SYSOUT=*
//SYSLIB DD DISP=SHR,DSN=&LLIB
//SYSIN DD *,SYMBOLS=JCLONLY
LISTLOAD MEMBER=&LM01,OUTPUT=BOTH
/*
As always, please contact Broadcom support for Datacom if you have further questions.