Which file from the IMS exit would be the input to LDESA?
//***************************************************************
//** SYSTEM LOG DATASETS OUTPUT/TP34S **
//***************************************************************
//DFSSLOGP DD DSN=HLQ.SLDSP.V99,
// LABEL=RETPD=07,VOL=(,,,99),
// DISP=(,CATLG,CATLG),UNIT=(TP34S,,DEFER),
// DCB=(BLKSIZE=32760,BUFNO=20,DEN=4)
//DFSSLOGS DD DSN=HLQ.SLDSS.V99,
// LABEL=RETPD=07,VOL=(,,,99),
// DISP=(,CATLG,CATLG),UNIT=(TP34S,,DEFER),
// DCB=(BLKSIZE=32760,BUFNO=20,DEN=4)
//***************************************************************
//** RECOVERY LOG DATASET OUTPUT/DASD **
//***************************************************************
//RLDSDD1 DD DSN=HLQ.RLDSP.V99,
// UNIT=SYSDA,DISP=(,CATLG,CATLG),
// MGMTCLAS=TAPE@,
// DCB=(BUFNO=20,BLKSIZE=22528)
DFSSLOGP DD is for primary output SLDS dataset and DFSSLOGS is for secondary SLDS output dataset.
The purpose of the secondary output SLDS is that it is used for dual archiving.
Therefore you can use one of these two, primary or secondary, because they should be identical.
The IBM Log Archive utility is found here
DFSSLOGP DD (for primary output SLDS)
If dual SLDSs are being created, they can have different block sizes. However, if FEOV is specified, it is ignored unless the block size of both data sets are equal and both are allocated to tape. If tape is specified, it must have a standard label. You can specify 2 through 99 write buffers.
DFSSLOGP DD (for primary output SLDS)
DFSSLOGS DD (for secondary output SLDS)
We recommend using the Primary one.