GL_SEGMENT_FREQUENCIES

GL_SEGMENT_FREQUENCIES stores statistical information about the data in the GL_CODE_COMBINATIONS and the GL_BALANCES tables. When you run the GL Optimizer program, that program first deletes all the rows in this table and then re-populates this table based on the current contents of GL_CODE_COMBINATIONS and GL_BALANCES. This table stores the number of rows in GL_BALANCES associated with each accounting period. It also stores the number of rows in GL_CODE_COMBINATIONS for each segment and segment value. You should run the GL Optimizer program at least once per accounting period to keep the data in this table current. The Oracle General Ledger application's Financial Statement Generator uses the information in this table to generate your financial reports as efficiently as possible. Other Oracle General Ledger programs also use this table to improve performance.

Details

  • Schema: FUSION

  • Object owner: GL

  • Object type: TABLE

  • Tablespace: APPS_TS_TX_DATA

Primary Key

Name Columns

GL_SEGMENT_FREQUENCIES_PK

SEGMENT_NAME, SEGMENT_VALUE

Columns

Name Datatype Length Precision Not-null Comments
STRUCTURE_ID NUMBER 18 Yes Not currently used.
SEGMENT_NAME VARCHAR2 60 Yes Oracle internal use only.
SEGMENT_VALUE VARCHAR2 60 Yes Oracle internal use only.
ROWS_THIS_VALUE NUMBER 18 Yes Number of rows with this segment value or period name.
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.
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_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 Columns
GL_SEGMENT_FREQUENCIES_U1 Unique SEGMENT_NAME, SEGMENT_VALUE