SUS_PERIOD_STATUSES

Table to store statuses of SUS periods. Each row includes the period name, status, and other information. Period status can be Open, Close, Pending or Closed.

Details

  • Schema: FUSION

  • Object owner: SUS

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

SUS_PERIOD_STATUSES_PK

PERIOD_ID

Columns

Name Datatype Length Precision Not-null Comments
PERIOD_ID NUMBER 18 Yes Stores the unique Identifier For Period.
PERIOD_NAME VARCHAR2 15 System generated accounting period name
PERIOD_TYPE VARCHAR2 15 Accounting period type. Examples are Weekly, Monthly, Quarterly.
PERIOD_YEAR NUMBER 8 Denotes the accounting calendar year represented by a numerical value, such as 2023.
PERIOD_NUM NUMBER 18 Unique period number within accounting calendar year.
START_DATE DATE Date when the accounting period begins.
END_DATE DATE Date when the accounting period ends.
PERIOD_STATUS_CODE VARCHAR2 100 Indicates the status of the period (i.e. Open, Close pending or Closed).
LEDGER_ID NUMBER 18 Unique identifier for ESG Ledger
ADJUSTMENT_PERIOD_FLAG VARCHAR2 1 Calendar adjustment period flag.
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.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Indexes

Index Uniqueness Tablespace Columns
SUS_PERIOD_STATUSES_PK Unique Default PERIOD_ID
SUS_PERIOD_STATUSES_U1 Unique Default LEDGER_ID, PERIOD_NAME