Search Results je_gr_cutoff_rules
Overview
The JE_GR_CUTOFF_RULES table is a Greek localizations object owned by the GL schema and shipped with the JE – European Localizations product family in Oracle E-Business Suite 12.1.1 and 12.2.2. The table stores accounting cutoff rules that govern how the Greek statutory ledger enforces period-closing boundaries for specific journal source and category combinations. When a transaction is posted outside an allowed cutoff window, the rule attached to that category determines whether the system raises a warning, blocks the entry, or records an exception. This makes the table a configuration and control object rather than a transactional fact table: it is populated during implementation of the Greek localization and read at runtime by the posting and period-close validation logic.
Mined from the documented foreign-key structure, the Data Vault classification for this object is standalone. In Data Vault modeling terms it behaves most like a satellite that is keyed by its own surrogate rule identifier, with no parent hub or link documented in the ETRM relationship data. Consumers modeling Greek cutoff behavior in a warehouse may therefore treat it as a reference/dimension table rather than as a transactional hub.
Key Information Stored
The table contains 28 documented columns. The most significant are:
- RULE_ID – surrogate primary key of the table, enforced by
JE_GR_CUTOFF_RULES_PKand additionally unique viaJE_GR_CUTOFF_RULES_U1. - SET_OF_BOOKS_ID – the ledger to which the rule applies; the primary scoping attribute for the rule set.
- CATEGORY_CODE – the journal category (for example, a payroll or tax category) that the cutoff rule governs.
- CAT_APPLICATION_ID – the application owning the category, distinguishing categories with identical code values across products.
- DAYS – the numeric cutoff window, expressed in days, applied against the accounting or transaction date.
- VIOLATION_RESPONSE – the action taken when a posting falls outside the permitted window.
- ENABLED_FLAG – indicates whether the rule is active and therefore evaluated during posting.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN – the standard WHO audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 – the standard descriptive flexfield (DFF) columns, available for localization-specific extensions.
The business-key candidates are documented by two unique indexes. JE_GR_CUTOFF_RULES_U1 enforces uniqueness of RULE_ID alone, while JE_GR_CUTOFF_RULES_U2 enforces uniqueness across SET_OF_BOOKS_ID, CATEGORY_CODE, and CAT_APPLICATION_ID. The second index is the meaningful natural key: it guarantees that only one cutoff rule can exist per ledger, journal category, and owning application.
Common Use Cases and Queries
Typical reporting scenarios include auditing active rules, checking which categories carry the strictest windows, and reconciling rule configuration between environments. A representative query lists all enabled rules for a ledger:
SELECT rule_id, category_code, cat_application_id, days, violation_response FROM gl.je_gr_cutoff_rules WHERE set_of_books_id = :ledger_id AND enabled_flag = 'Y' ORDER BY category_code;
To review the effective window for a specific category, filtering on the natural key is efficient because JE_GR_CUTOFF_RULES_U2 supports the predicate:
SELECT days, violation_response FROM gl.je_gr_cutoff_rules WHERE set_of_books_id = :ledger_id AND category_code = :category AND cat_application_id = :app_id;
For change tracking, the WHO columns support an audit of recently modified configuration:
SELECT rule_id, category_code, last_updated_by, last_update_date FROM gl.je_gr_cutoff_rules WHERE last_update_date > SYSDATE - 30;
Related Objects
The documented relationship model classifies this object as standalone, so no explicit foreign keys to parent tables are listed in the ETRM data. In practice it interacts with the following core EBS objects:
- GL_SETS_OF_BOOKS – joined on
SET_OF_BOOKS_IDto resolve the ledger name and chart of accounts. - GL_JE_CATEGORIES – joined on
CATEGORY_CODEandAPPLICATION_IDto resolve category descriptions. - FND_APPLICATION – joined on
CAT_APPLICATION_IDto obtain the owning application short name. - GL_JE_HEADERS and GL_JE_LINES – the journals whose postings are validated against the cutoff window.
- FND_FLEX_VALUES – used when the
ATTRIBUTEDFF columns are configured with value sets. - FND_USER – joined on
LAST_UPDATED_BYandCREATED_BYfor audit reporting.
Because the table is configuration-oriented, DML is normally performed through the Greek localization setup forms rather than by direct SQL.
-
Table: JE_GR_CUTOFF_RULES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:JE.JE_GR_CUTOFF_RULES, object_name:JE_GR_CUTOFF_RULES, status:VALID, product: JE - European Localizations , description: Stores accounting cutoff rules for Greece , implementation_dba_data: GL.JE_GR_CUTOFF_RULES ,
-
Table: JE_GR_CUTOFF_RULES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:JE.JE_GR_CUTOFF_RULES, object_name:JE_GR_CUTOFF_RULES, status:VALID, product: JE - European Localizations , description: Stores accounting cutoff rules for Greece , implementation_dba_data: GL.JE_GR_CUTOFF_RULES ,
-
VIEW: APPS.JE_GR_CUTOFF_RULES_DFV
12.1.1
-
VIEW: APPS.JE_GR_CUTOFF_RULES_DFV
12.2.2
-
SYNONYM: APPS.JE_GR_CUTOFF_RULES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JE_GR_CUTOFF_RULES, status:VALID,
-
SYNONYM: APPS.JE_GR_CUTOFF_RULES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JE_GR_CUTOFF_RULES, status:VALID,
-
VIEW: GL.JE_GR_CUTOFF_RULES#
12.2.2
owner:GL, object_type:VIEW, object_name:JE_GR_CUTOFF_RULES#, status:VALID,
-
VIEW: GL.JE_GR_CUTOFF_RULES#
12.2.2
-
TABLE: GL.JE_GR_CUTOFF_RULES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:JE.JE_GR_CUTOFF_RULES, object_name:JE_GR_CUTOFF_RULES, status:VALID,
-
TABLE: GL.JE_GR_CUTOFF_RULES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:JE.JE_GR_CUTOFF_RULES, object_name:JE_GR_CUTOFF_RULES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.JE_GR_CUTOFF_RULES_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:JE_GR_CUTOFF_RULES_DFV, status:VALID,
-
PACKAGE BODY: APPS.JE_GR_STATUTORY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JE_GR_STATUTORY, status:VALID,
-
PACKAGE BODY: APPS.JE_GR_STATUTORY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JE_GR_STATUTORY, status:VALID,
-
VIEW: APPS.JE_GR_CUTOFF_RULES_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:JE_GR_CUTOFF_RULES_DFV, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.JE_GR_STATUTORY SQL Statements
12.2.2
-
APPS.JE_GR_STATUTORY SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.JE_GR_STATUTORY dependencies on JE_GR_CUTOFF_RULES
12.1.1
-
APPS.JE_GR_STATUTORY dependencies on JE_GR_CUTOFF_RULES
12.2.2
-
PACKAGE BODY: APPS.JE_GR_STATUTORY
12.2.2
-
PACKAGE BODY: APPS.JE_GR_STATUTORY
12.1.1
-
eTRM - JE Tables and Views
12.1.1
-
eTRM - JE Tables and Views
12.2.2
-
APPS.JE_GR_STATUTORY dependencies on FND_DOC_SEQUENCE_CATEGORIES
12.2.2
-
APPS.JE_GR_STATUTORY dependencies on FND_DOC_SEQUENCE_CATEGORIES
12.1.1
-
eTRM - JE Tables and Views
12.1.1
-
eTRM - JE Tables and Views
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1