GL_AUTORUN_RUN_REQUESTS

This table keeps track of all of the requests that make up an automation run.

Details

  • Schema: FUSION

  • Object owner: GL

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

GL_AUTORUN_RUN_REQUESTS_PK

SUBMITTED_REQUEST_ID

Columns

Name Datatype Length Precision Not-null Comments
SUBMITTED_REQUEST_ID NUMBER 18 Yes Request that is part of the automation run.
AUTORUN_REQUEST_ID NUMBER 18 Yes Automation run request identifier.
PARENT_REQUEST_ID NUMBER 18 Yes Request that directly submitted this request. May be the automation request, or a request launched by the automation request, or a descendent of a request launched by the automation request.
PREDECESSOR_REQUEST_ID NUMBER 18 Yes Request that was directly submitted by the automation request that was the ancestor of this request.
STATUS_CODE VARCHAR2 30 Yes Status of the request as of the last time the automation run checked. Some possible values are SUBMITTED, SUCCESS, FAILURE, and RUNNING.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.
OBJECT_VERSION_NUMBER NUMBER 9 Yes Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.
NORMAL_EXIT_FLAG VARCHAR2 1 Indicates whether the job has exited normally.
LEDGER_ID NUMBER 18 Ledger for which program was submitted. A ledger identifier of -99 means the ledger is unknown or the request processed more than one ledger.
RESUBMITTED_REQUEST_ID NUMBER 18 Identifier of original request that failed and that was resubmitted through this request.
AUTORUN_ACTION_CODE VARCHAR2 30 Action that the Automate Accounting process should do as a result of the failure of this request. Possible values are RESUBMIT, ABORT_JOB_TYPE, and ABORT_PROCESSING.

Foreign Keys

Table Foreign Table Foreign Key Column
GL_AUTORUN_RUN_REQUESTS gl_autorun_runs AUTORUN_REQUEST_ID

Indexes

Index Uniqueness Tablespace Columns
GL_AUTORUN_RUN_REQUESTS_N1 Non Unique Default AUTORUN_REQUEST_ID, PREDECESSOR_REQUEST_ID, STATUS_CODE
GL_AUTORUN_RUN_REQUESTS_U1 Unique Default SUBMITTED_REQUEST_ID