How to delete a module and module entries that were exported to the TLICD file by former programmers and how to remove the userid from the TLICD file.
Background:
When users or programmers export a module/modules from the Librarian master file using the TSO LIBGET command the module and a module entry are placed on the TLICD file. If that programmer leaves the company, the module and module entry will remain in the TLICD file.
Environment:
CA-Librarian V4.4 TSO Option
Instructions:
To delete the userid, module and module entry associated with the userid you will need to execute program LIBTLICD.
JCL example below:
//DELETE EXEC PGM=LIBTLICD
//SYSPRINT DD SYSOUT=*
//FILEIN DD DSN=YOUR.TLICD.FILE,DISP=OLD
//SYSIN DD *
DELETE member *** where member is the userid in the TLICD file ***
/*