I'm writing a REXX routine that will update a production control file based on user input. This file will be used to trigger a nightly job if there is data in the file. I'm trying to figure out if I can control the update of the file so that it can only be updated through the REXX screen. I don't want anyone to be able to manually update the file by editing it in TSO.
My shop uses ACF2 for security. I know I can restrict the file access to certain userids and give only those userids access to the REXX routine, but I want to make sure those users go through the REXX screen. If I restrict the file access to a "fake" userid, is there a way I could have the REXX routine "log on" with fake ID, so the file could only be updated through REXX with the fake ID? Any other ideas?
My other option is to do this with CICS if I can't figure out how to do it with REXX.
Thanks! Paul