
Thank you Bart. I appreciate the help. I will try this out.
I need to move a set of files through Endevor that contain passwords etc.
Is there a way to create a TYPE that has limited accessibility?
Arvind
If you got External Security Interface (ESI) in place:
Code a NAMEQU ACTION_INITIATION, with keyword TYPE (BC1TNEQU). This entry becomes pseudo data set names in your sites security package (Racf or similar). Allow only certain users to have access to these pseudo data set names.
The most simple NAMEQU ACTION_INITIATION entry:
NAMEQU ACTION_INITIATION,
L1=('QLFR1'),
L2=(TYPE)
(but this is all or nothing).
You can extend it with Environment, System, Subsystem, Action, etc.
If you got External Security Interface (ESI) in place:
Code a NAMEQU ACTION_INITIATION, with keyword TYPE (BC1TNEQU). This entry becomes pseudo data set names in your sites security package (Racf or similar). Allow only certain users to have access to these pseudo data set names.
The most simple NAMEQU ACTION_INITIATION entry:
NAMEQU ACTION_INITIATION,
L1=('QLFR1'),
L2=(TYPE)
(but this is all or nothing).
You can extend it with Environment, System, Subsystem, Action, etc.