I need to implement field priming. This is pretty simple - just need to add OperatorID to every record saved in a database.
Another words every table (have about 80 tables) has a field called OperatorID. I plan to implement LOGIN App to read OperatorID, then it will be stored in a Global Variable.
I have few questions regarding this:
- where is the best place to prime every record with the operatorID (which event)
- how to deal with Concurence Checking ? (2 userrs access the sdame record)
- is the GlobalVariable the same as Session Variable ?
- how/where to clear OperatorID on user Exit ?
Arthur