Search Results postable_flag
Overview
FII_AP_RLSE_RELEASE_LCV is an Oracle EBS Applications (APPS) view that exposes release-related reference data used by the Financial Intelligence (FII) / Oracle Financials Intelligence components in Oracle E-Business Suite 12.1.1 and 12.2.2. The object name suffix "LCV" indicates a "List of Values" style view — a derived, presentation-oriented query typically consumed by Oracle Forms LOVs, concurrent program parameters, or downstream ETL/reporting layers that need a normalized, joined representation of release records against the base release entity.
The view presents a single denormalized row per release, combining identity columns (RELEASE_PK, RELEASE_TYPE_FK, INSTANCE, NAME, RELEASE_NAME), status and control flags (USER_RELEASEABLE_FLAG, USER_UPDATEABLE_FLAG, POSTABLE_FLAG, INACTIVE_DATE), descriptive text (DESCRIPTION), and audit columns (LAST_UPDATE_DATE, CREATION_DATE). It also exposes several placeholder NULL columns (DELETION_DATE, RELEASE_DP, USER_ATTRIBUTE1–5) to preserve a fixed column contract expected by the applications that reference it. This pattern is common in EBS where an LOV view maintains interface stability while underlying storage evolves.
Underlying Base Objects
The documented view text selects exclusively from FIIBV_AP_RLSE_RELEASE_LCV, which in turn resolves to the base release tables within the FII application schema. The ETRM metadata for this object does not enumerate any referenced base objects, and the view is defined with no explicit join in the exposed text — the joins and business logic reside beneath the FIIBV_AP_RLSE_RELEASE_LCV layer. Consequently, the tables of record (release definitions, release types, and instance context) are abstracted away from direct callers.
Because the view is defined over a single underlying FIIBV source, it inherits the security and definition of that layer. In Oracle EBS, such views are often created with a synonym under the APPS schema to allow access across product schemas without exposing the base table grants directly. This indirection also isolates consumers from changes to the underlying release data model.
Key Columns
- RELEASE_PK — Primary key identifying the release record.
- RELEASE_TYPE_FK — Foreign key linking the release to its release type definition.
- INSTANCE — Instance context for the release record.
- NAME / RELEASE_NAME — Internal and user-facing names for the release.
- USER_RELEASEABLE_FLAG — Controls whether the release can be selected/released by a user.
- USER_UPDATEABLE_FLAG — Controls whether the release definition is user-maintainable. This is the column most commonly targeted by searches for "user_updateable_flag", since it governs editability of release setup data.
- POSTABLE_FLAG — Indicates whether the release is eligible for posting.
- INACTIVE_DATE — Date after which the release is no longer active.
- DESCRIPTION — Free-text description of the release.
- LAST_UPDATE_DATE / CREATION_DATE — Standard audit columns.
- DELETION_DATE, RELEASE_DP, USER_ATTRIBUTE1–5 — Placeholder columns returned as NULL to satisfy a fixed column contract.
Common Use Cases and Queries
The view is typically queried to populate LOVs, validate user input against the USER_UPDATEABLE_FLAG or USER_RELEASEABLE_FLAG controls, and drive reporting on release configuration. A representative query retrieving user-updateable releases is shown below.
SELECT release_pk,
release_name,
release_type_fk,
user_updateable_flag,
user_releaseable_flag,
postable_flag
FROM apps.fii_ap_rlse_release_lcv
WHERE user_updateable_flag = 'Y'
AND (inactive_date IS NULL OR inactive_date > SYSDATE);
Because the view filters and joins are encapsulated below the FIIBV layer, queries against this object remain stable across both 12.1.1 and 12.2.2. Developers should avoid relying on the NULL placeholder columns as functional data and instead treat them purely as interface scaffolding.
-
VIEW: APPS.FII_AP_RLSE_RELEASE_LCV
12.1.1
-
VIEW: AP.AP_HOLD_CODES#
12.2.2
-
View: FII_AP_RLSE_RELEASE_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AP_RLSE_RELEASE_LCV is the collection view for Release level of Release dimension , implementation_dba_data: Not implemented in this database ,
-
View: FII_AP_RLSE_RELEASE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_RLSE_RELEASE_LCV, object_name:FII_AP_RLSE_RELEASE_LCV, status:VALID, product: FII - Financial Intelligence , description: FII_AP_RLSE_RELEASE_LCV is the collection view for Release level of Release dimension , implementation_dba_data: APPS.FII_AP_RLSE_RELEASE_LCV ,
-
VIEW: AR.AR_TRANSACTION_HISTORY_ALL#
12.2.2
-
View: FII_AP_HOLD_HOLD_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_HOLD_HOLD_LCV, object_name:FII_AP_HOLD_HOLD_LCV, status:VALID, product: FII - Financial Intelligence , description: FII_AP_HOLD_HOLD_LCV is the collection view for Hold level of AP Hold dimension , implementation_dba_data: APPS.FII_AP_HOLD_HOLD_LCV ,
-
View: FII_AP_HOLD_HOLD_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_AP_HOLD_HOLD_LCV is the collection view for Hold level of AP Hold dimension , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.AR_CASH_RECEIPT_HISTORY_ALL#
12.2.2
-
VIEW: APPS.FII_AP_HOLD_HOLD_LCV
12.1.1
-
View: FIIBV_AP_HOLD_HOLD_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FIIBV_AP_HOLD_HOLD_LCV is the base view for Hold level of AP Hold dimension , implementation_dba_data: Not implemented in this database ,
-
View: FIIBV_AP_HOLD_HOLD_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_HOLD_HOLD_LCV, object_name:FIIBV_AP_HOLD_HOLD_LCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_AP_HOLD_HOLD_LCV is the base view for Hold level of AP Hold dimension , implementation_dba_data: APPS.FIIBV_AP_HOLD_HOLD_LCV ,
-
View: FIIBV_AP_RLSE_RELEASE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_RLSE_RELEASE_LCV, object_name:FIIBV_AP_RLSE_RELEASE_LCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_AP_RLSE_RELEASE_LCV is the base view for Release level of Release dimension , implementation_dba_data: APPS.FIIBV_AP_RLSE_RELEASE_LCV ,
-
VIEW: APPS.AP_HOLD_CODES_V
12.2.2
-
APPS.FII_AP_RELEASE_M_C SQL Statements
12.1.1
-
View: FIIBV_AP_RLSE_RELEASE_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FIIBV_AP_RLSE_RELEASE_LCV is the base view for Release level of Release dimension , implementation_dba_data: Not implemented in this database ,
-
View: AP_HOLD_CODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_HOLD_CODES_V, object_name:AP_HOLD_CODES_V, status:VALID, product: AP - Payables , description: (Release 10SC Only) , implementation_dba_data: APPS.AP_HOLD_CODES_V ,
-
View: AP_HOLD_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_HOLD_CODES_V, object_name:AP_HOLD_CODES_V, status:VALID, product: AP - Payables , description: (Release 10SC Only) , implementation_dba_data: APPS.AP_HOLD_CODES_V ,
-
VIEW: APPS.FIIBV_AP_RLSE_RELEASE_LCV
12.1.1
-
APPS.ARP_CASH_RECEIPT_HISTORY SQL Statements
12.1.1
-
View: AR_CASH_RECEIPT_HIST_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPT_HIST_ALL_MRC_V, object_name:AR_CASH_RECEIPT_HIST_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CASH_RECEIPT_HIST_ALL_MRC_V ,
-
VIEW: APPS.FIIBV_AP_HOLD_HOLD_LCV
12.1.1
-
VIEW: AP.AP_HOLD_CODES#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_HOLD_CODES#, status:VALID,
-
APPS.FII_AP_HOLD_M_C SQL Statements
12.1.1
-
VIEW: APPS.AP_HOLD_CODES_V
12.1.1
-
VIEW: APPS.AR_CASH_RECEIPT_HIST_ALL_MRC_V
12.1.1
-
View: AR_CASH_RECEIPT_HIST_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPT_HIST_ALL_MRC_V, object_name:AR_CASH_RECEIPT_HIST_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CASH_RECEIPT_HIST_ALL_MRC_V ,
-
VIEW: APPS.AR_CASH_RECEIPT_HIST_ALL_MRC_V
12.2.2
-
VIEW: APPS.FII_AP_RLSE_RELEASE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_RLSE_RELEASE_LCV, object_name:FII_AP_RLSE_RELEASE_LCV, status:VALID,
-
VIEW: APPS.AP_HOLD_CODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_HOLD_CODES_V, object_name:AP_HOLD_CODES_V, status:VALID,
-
VIEW: AR.AR_TRANSACTION_HISTORY_ALL#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_TRANSACTION_HISTORY_ALL#, status:VALID,
-
APPS.ARP_CASH_RECEIPT_HISTORY SQL Statements
12.2.2
-
VIEW: APPS.AP_HOLD_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_HOLD_CODES_V, object_name:AP_HOLD_CODES_V, status:VALID,
-
VIEW: APPS.FII_AP_HOLD_HOLD_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AP_HOLD_HOLD_LCV, object_name:FII_AP_HOLD_HOLD_LCV, status:VALID,
-
TABLE: FII.EDW_RLSE_RELEASE_LTC
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_RLSE_RELEASE_LTC, object_name:EDW_RLSE_RELEASE_LTC, status:VALID,
-
VIEW: APPS.FIIBV_AP_RLSE_RELEASE_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_RLSE_RELEASE_LCV, object_name:FIIBV_AP_RLSE_RELEASE_LCV, status:VALID,
-
APPS.AP_HOLD_CODES_PKG SQL Statements
12.2.2
-
TABLE: FII.EDW_RLSE_RELEASE_LSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_RLSE_RELEASE_LSTG, object_name:EDW_RLSE_RELEASE_LSTG, status:VALID,
-
TABLE: FII.EDW_HOLD_HOLD_LTC
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_HOLD_HOLD_LTC, object_name:EDW_HOLD_HOLD_LTC, status:VALID,
-
VIEW: APPS.FIIBV_AP_HOLD_HOLD_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_AP_HOLD_HOLD_LCV, object_name:FIIBV_AP_HOLD_HOLD_LCV, status:VALID,
-
VIEW: APPS.AP_HOLDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_HOLDS_V, object_name:AP_HOLDS_V, status:VALID,
-
TABLE: AP.AP_HOLD_CODES
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_HOLD_CODES, object_name:AP_HOLD_CODES, status:VALID,
-
TABLE: FII.EDW_HOLD_HOLD_LSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_HOLD_HOLD_LSTG, object_name:EDW_HOLD_HOLD_LSTG, status:VALID,
-
VIEW: APPS.AP_HOLDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_HOLDS_V, object_name:AP_HOLDS_V, status:VALID,
-
TABLE: AR.AR_RR_CRH_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RR_CRH_GT, object_name:AR_RR_CRH_GT, status:VALID,
-
View: AR_TRX_HISTORY_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_HISTORY_MRC_V, object_name:AR_TRX_HISTORY_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_TRX_HISTORY_MRC_V ,
-
View: AR_TRX_HISTORY_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_HISTORY_ALL_MRC_V, object_name:AR_TRX_HISTORY_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_TRX_HISTORY_ALL_MRC_V ,
-
PACKAGE BODY: APPS.ARP_CASH_RECEIPT_HISTORY
12.1.1
-
TABLE: AP.AP_HOLD_CODES
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_HOLD_CODES, object_name:AP_HOLD_CODES, status:VALID,
-
View: AR_TRX_HISTORY_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_TRX_HISTORY_ALL_MRC_V, object_name:AR_TRX_HISTORY_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_TRX_HISTORY_ALL_MRC_V ,
-
APPS.ARP_CR_HISTORY_PKG SQL Statements
12.1.1