Standard WHO Columns
The following are the Standard WHO Columns in most of the Oracle tables:
- created_by -> Keeps track of which user created the record(row) : FND_PROFILE.VALUE('USER_ID')
- creation_date -> Stores the date on which a row was created : SYSDATE
- last_update_by -> Keeps track of who last updated the row : FND_PROFILE.VALUE('USER_ID')
- last_update_date -> Stores the date on which the row was last updated : SYSDATE
- last_update_login -> Login Session ID of the user : USERENV('SESSIONID')
 
No comments:
Post a Comment