Search Results as_interest_codes
Overview
The AS_INTEREST_CODES view belongs to the Oracle E-Business Suite AS – Sales Foundation product family. It exposes interest code definitions maintained by the Sales Foundation module, which are used throughout the order-to-cash and receivables-related flows to describe how interest is calculated, categorised, and applied. The view is documented in the ETRM reference library for releases 12.1.1 and 12.2.2 and is classified as a single-organization (single-org) view.
In the Oracle EBS multi-org architecture, many Sales Foundation entities are stored in federation tables suffixed _ALL, which carry an ORG_ID column to partition rows by operating unit. AS_INTEREST_CODES is a single-org view defined over the federation table AS_INTEREST_CODES_ALL. It filters the underlying rows so that only the interest codes belonging to the current operating unit (as determined by the session's client information) are visible. This makes it the appropriate object for reports, concurrent programs, and integrations that run within a specific organization context and require only that organization's interest code data.
As a reporting and integration surface, the view presents a stable, denormalised projection of interest code header attributes together with the standard Oracle EBS WHO columns (creation and update audit fields) and the descriptive flexfield attribute columns (ATTRIBUTE_CATEGORY through ATTRIBUTE15). Consumers can therefore read interest code configuration without navigating the multi-org federation and without needing to embed operating-unit predicates in every query.
Underlying Base Objects
The only documented base object for this view is the federation table AS_INTEREST_CODES_ALL. The view text selects the full column list from that table and applies a WHERE clause that restricts rows by organization. The predicate compares NVL(ORG_ID, …) on the table to the value derived from USERENV('CLIENT_INFO'), the session variable Oracle EBS uses to carry the current organization identifier. Codes whose ORG_ID is null are matched against the sentinel value -99, consistent with Oracle's convention for organisation-independent rows.
Because the view is defined directly over the _ALL table with no joins, it inherits the table's indexes and constraints. The ETRM metadata records that the view is not implemented in the reference database and that no additional referenced base objects are documented, so all accessible data derives from AS_INTEREST_CODES_ALL.
Key Columns
- INTEREST_CODE_ID – Primary key identifying each interest code definition.
- CODE – The user-visible interest code value.
- DESCRIPTION – Descriptive text for the interest code.
- ENABLED_FLAG – Indicates whether the interest code is active.
- REVENUE_CLASS_ID, INTEREST_TYPE_ID – Foreign keys to revenue class and interest type definitions that classify the code.
- PARENT_INTEREST_CODE_ID – Self-referencing key supporting hierarchical interest code relationships.
- CATEGORY_ID, CATEGORY_SET_ID – Identify the category and category set associated with the code.
- ORG_ID – Operating unit that owns the row; drives the single-org filter.
- PF_ITEM_ID, PF_ORGANIZATION_ID – References to the pricing/price-list item and organization context.
- CURRENCY_CODE, PRICE – Currency and price information associated with the interest code.
- WHO columns (
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN) and concurrent program columns (REQUEST_ID,PROGRAM_APPLICATION_ID,PROGRAM_ID,PROGRAM_UPDATE_DATE) – Standard audit and program context fields. - ATTRIBUTE_CATEGORY, ATTRIBUTE1–ATTRIBUTE15 – Descriptive flexfield segments for customer-defined extensions.
Common Use Cases and Queries
Typical uses include validating interest code setup for the current operating unit, extracting enabled codes for integration with downstream interest calculation logic, and reporting on price and currency attributes attached to a code. Because the view is single-org, it should be queried from within an initialized EBS session where CLIENT_INFO has been set, or via an org-initialised concurrent program.
List active interest codes:
SELECT interest_code_id, code, description
FROM as_interest_codes
WHERE enabled_flag = 'Y';
Retrieve currency and price details for a specific code:
SELECT code, currency_code, price, interest_type_id
FROM as_interest_codes
WHERE code = :p_code;
Cross-check flexfield values:
SELECT code, attribute_category, attribute1, attribute2
FROM as_interest_codes
WHERE attribute_category IS NOT NULL;
Queries should be run within the correct operating unit context; otherwise the single-org predicate may return no rows or rows for the default sentinel organization only.
-
View: AS_INTEREST_CODES
12.1.1
product: AS - Sales Foundation , description: This is single-org only from _ALL table. , implementation_dba_data: Not implemented in this database ,
-
View: AS_INTEREST_CODES
12.2.2
product: AS - Sales Foundation , description: This is single-org only from _ALL table. , implementation_dba_data: Not implemented in this database ,
-
View: ICX_LEADS_V
12.2.2
product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.MSD_SR_OPPORTUNITY_V
12.2.2
-
View: MSD_SR_OPPORTUNITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_OPPORTUNITY_V, object_name:MSD_SR_OPPORTUNITY_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View for Sales Opportunity. This view would be applied to an Oracle Applications 11i instance from which the Sales Opportunity information is to be retrieved. , implementation_dba_data: APPS.MSD_SR_OPPORTUNITY_V ,
-
View: ICX_LEADS_V
12.1.1
product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: MSD_SR_OPPORTUNITY_V
12.1.1
product: MSD - Demand Planning , description: This is the Source View for Sales Opportunity. This view would be applied to an Oracle Applications 11i instance from which the Sales Opportunity information is to be retrieved. , implementation_dba_data: Not implemented in this database ,
-
View: AS_ALL_INTEREST_TYPES_V
12.2.2
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_ALL_INTEREST_TYPES_V
12.1.1
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: ICX_QUOTE_LINES_V
12.1.1
product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
TABLE: OSM.AS_PE_INT_CATEGORIES
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_PE_INT_CATEGORIES, object_name:AS_PE_INT_CATEGORIES, status:VALID,
-
View: AS_QUOTE_LINES_V
12.2.2
product: AS - Sales Foundation , description: Quotation lines view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_LINES_V
12.1.1
product: AS - Sales Foundation , description: Quotation lines view , implementation_dba_data: Not implemented in this database ,
-
View: ICX_QUOTE_LINES_V
12.2.2
product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
TABLE: OSM.AS_PE_INT_CATEGORIES
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_PE_INT_CATEGORIES, object_name:AS_PE_INT_CATEGORIES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.CSF_DEBRIEF_PUB SQL Statements
12.2.2
-
APPS.CSF_DEBRIEF_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSF_DEBRIEF_PUB
12.1.1
-
PACKAGE BODY: APPS.CSF_DEBRIEF_PUB
12.2.2
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,