Is there a way to search Top Secret to determine if the factor data has been written to the Top Secret VSAM file?
You can dump the VSAM file to see if it is there. Here is sample jcl to do this:
Insert valid jobcard here
//STEP1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//INFILE DD DSN=<VSAM File>,DISP=SHR
//SYSIN DD *
PRINT INFILE(INFILE) FROMKEY('CERT') COUNT(2)
PRINT INFILE(INFILE) FROMKEY('MFAK') COUNT(20)