Search Results entry_code
Overview
The view GL_BUD_ASSGNMNT_PRD_RANGES_V is a General Ledger (GL) reporting object that joins budget assignment definitions with their associated budget period ranges. Its sole documented purpose is a restricted deployment designated "10SC ONLY," and the ETRM metadata records that it is not implemented in the reference database. In Oracle EBS 12.1.1 and 12.2.2 environments that do carry the object, the view provides a consolidated, read-only projection of two related budgeting tables so that consumers do not need to perform the join themselves.
The view answers a specific structural question: for a given budget assignment, which fiscal periods are governed by the assignment, and in which year do those periods begin and end? Because budget assignments control funds checking, encumbrance behavior, and budget-versus-actual derivation, exposing the period range alongside the assignment attributes makes the view useful for both inquiry reporting and downstream integration.
Underlying Base Objects
The view is defined over two GL tables, joined on the budget version:
GL_BUDGET_ASSIGNMENTS(aliasBA) — stores the budget assignment row, keyed byLEDGER_ID,BUDGET_ENTITY_ID, andCODE_COMBINATION_ID, and carrying the currency, entry code, ordering value, and funds-check attributes.GL_BUDGET_PERIOD_RANGES(aliasBR) — stores the period range for each budget version, keyed byBUDGET_VERSION_IDandPERIOD_YEAR, and carrying the start and end period names and numbers.
The ETRM metadata lists no referenced base objects beyond the view text itself and no documented owner. All columns are projected directly from the two aliases; no expressions, functions, or additional tables appear in the definition, so the view introduces no derived logic and inherits the data types of the underlying columns.
Key Columns
LEDGER_ID,BUDGET_ENTITY_ID,CODE_COMBINATION_ID— the budget assignment key. Together they identify the account and budgeting entity to which the period range applies.CURRENCY_CODE,ENTRY_CODE,ORDERING_VALUE,AMOUNT_TYPE,BOUNDARY_CODE— assignment-level attributes controlling how amounts are entered and evaluated.AUTOMATIC_ENCUMBRANCE_FLAG,FUNDS_CHECK_LEVEL_CODE— govern whether encumbrances are created automatically and at what level funds availability is validated.FUNDING_BUDGET_VERSION_IDandBUDGET_VERSION_ID— the funding budget and the period-range budget version, respectively.PERIOD_YEAR— the fiscal year to which the range belongs.START_PERIOD_NAME,START_PERIOD_NUM,END_PERIOD_NAME,END_PERIOD_NUM— the first and last periods of the assignment's range, given in both name and numeric form.OPEN_FLAG— indicates whether the period range is open.
The column END_PERIOD_NUM is the numeric end period of the range, which is preferable to the name for arithmetic comparisons and ordering.
Common Use Cases and Queries
Typical scenarios include verifying which period ranges an assignment covers, identifying assignments whose ranges end before a target period, and feeding period-aware budget data into external reconciliation processes.
SELECT ba.ledger_id, ba.budget_entity_id, ba.code_combination_id,
ba.funds_check_level_code, br.period_year, br.end_period_num
FROM gl_bud_assgnmnt_prd_ranges_v ba, br
WHERE ba.budget_version_id = br.budget_version_id
AND ba.ledger_id = :ledger_id;
To isolate assignments whose range has closed within a year, filter on END_PERIOD_NUM and OPEN_FLAG. Note that where the view is not implemented, the equivalent join against GL_BUDGET_ASSIGNMENTS and GL_BUDGET_PERIOD_RANGES should be written explicitly.
-
Lookup Type: ENTRY_CODE
12.2.2
product: GL - General Ledger , meaning: ENTRY_CODE ,
-
Lookup Type: ENTRY_CODE
12.1.1
product: GL - General Ledger , meaning: ENTRY_CODE ,
-
View: GL_BUD_ASSGNMNT_PRD_RANGES_V
12.1.1
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: GL_BUD_ASSGNMNT_PRD_RANGES_V
12.2.2
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: GL_BUDGET_ASSIGNMENTS_UNIQUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_ASSIGNMENTS_UNIQUE_V, object_name:GL_BUDGET_ASSIGNMENTS_UNIQUE_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_BUDGET_ASSIGNMENTS_UNIQUE_V ,
-
View: GL_BUDGET_ASSIGNMENTS_UNIQUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_ASSIGNMENTS_UNIQUE_V, object_name:GL_BUDGET_ASSIGNMENTS_UNIQUE_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_BUDGET_ASSIGNMENTS_UNIQUE_V ,
-
View: GL_BUDGET_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_ASSIGNMENTS_V, object_name:GL_BUDGET_ASSIGNMENTS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_ASSIGNMENTS_V ,
-
View: GL_BUDGET_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_ASSIGNMENTS_V, object_name:GL_BUDGET_ASSIGNMENTS_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_ASSIGNMENTS_V ,
-
View: GL_BUDGET_ASSIGNMENT_RANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_ASSIGNMENT_RANGES_V, object_name:GL_BUDGET_ASSIGNMENT_RANGES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_ASSIGNMENT_RANGES_V ,
-
View: GL_BUDGET_ASSIGNMENT_RANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_BUDGET_ASSIGNMENT_RANGES_V, object_name:GL_BUDGET_ASSIGNMENT_RANGES_V, status:VALID, product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: APPS.GL_BUDGET_ASSIGNMENT_RANGES_V ,