ACTION_TXT |
VARCHAR(100) |
Y |
The main service (Shadow Accounts) identifies actions performed - such as a password rotation (all user passwords are rotated to a new password based on an existing key), or a user sync where any new accounts are added and unnecessary accounts are removed. |
EA_PROCESSING_RECORD_ID |
DOUBLE |
N |
PRIMARY KEY |
INFO_TXT |
VARCHAR(1024) |
Y |
Info just gives general information about the transaction that was taking place. It is stored as json info, with an example being { "insert":"200", "modify": "0", "no_change":"0", "failure_message" : "exception message"} |
SERVICE_TXT |
VARCHAR(100) |
Y |
A Service is related to what is being "processed" which would be the shadow accounts agent for example. ; This field could be an indicator that the shadow accounts is the service being run. |
START_DT_TM |
DATETIME |
Y |
Date and time the action began |
STATUS_FLAG |
DOUBLE |
Y |
The status of the action. 0=Pending 1=In-progress 2=Failed 3=Cancelled |
UPDT_APPLCTX |
DOUBLE |
Y |
The application context number from the record info block. The UPDT family of columns are typically used for housekeeping and external system process and should never be depended on for solution specific logic. |
UPDT_CNT |
DOUBLE |
Y |
Set to 0 on insert. Incremented by 1 on update. Used to recognize update conflict where data in a row updated by one application is at risk of being lost by a second application attempting to update the row. The UPDT family of columns are typically used for housekeeping and external system process and should never be depended on for solution specific logic. |
UPDT_DT_TM |
DATETIME |
Y |
The date and time the row was last inserted or updated. The UPDT family of columns are typically used for housekeeping and external system process and should never be depended on for solution specific logic. |
UPDT_ID |
DOUBLE |
Y |
The person_id of the person from the personnel table (prsnl) that caused the last insert or update of the row in the table. The UPDT family of columns are typically used for housekeeping and external system process and should never be depended on for solution specific logic. |
UPDT_TASK |
DOUBLE |
Y |
The registered (assigned) task number for the process that inserted or updated the row. The UPDT family of columns are typically used for housekeeping and external system process and should never be depended on for solution specific logic. |