Search Results profile_class
Overview
APPS.CE_FC_OEO_DISC_V is an internal Oracle E-Business Suite view owned by the APPS schema and registered under FND Design Data as CE.CE_FC_OEO_DISC_V. It is classified as an internal, unsupported object: Oracle Corporation does not support direct access to its data except through standard Oracle Applications programs. As its name suggests, the view belongs to the Cash Management (CE) family of "FC" (forecast/clearing) objects and relates to order-entry discount exposure ("OEO_DISC"), presenting order-level transactional amounts alongside security profile, order type, payment terms, and operating unit context.
In EBS 12.1.1 and 12.2.2 the view functions as a reporting and integration surface. Because it joins security-profile and access-control objects, it is oriented toward filtered, user-scoped queries — a row's visibility typically depends on the operating unit and security profile of the session. This makes it suitable for exposure reporting, reconciliation of order-related discounts or amounts against receivables terms, and downstream data extraction, but not for direct transactional DML.
Underlying Base Objects
The view is defined over a set of views, synonyms, and packages rather than base tables directly:
- CE_SECURITY_PROFILES_V — supplies the security profile and access context for restricting rows.
- CE_SO_FC_ORDERS_V and CE_SO_FC_ORDERS_TERMS_V — order and terms views providing order number, line, amount, and terms data.
- FND_ACCESS_CONTROL_UTIL, FND_GLOBAL, FND_PROFILE, and MO_GLOBAL — packages that resolve the current user, responsibility, operating unit, and Multi-Org context.
- FND_LOOKUP_VALUES — supplies decoded lookup meanings.
- HR_OPERATING_UNITS — provides the organization/operating unit name.
- RA_TERMS and SO_ORDER_TYPES_ALL — synonyms supplying payment terms and order type definitions.
- XTR_USER_ACCESS — a package supplying user access/authorization logic.
The view references these objects but is itself referenced by no database object, confirming its role as a terminal reporting object.
Key Columns
- REFERENCE_ID (VARCHAR2, 122) — primary identifying reference for the row.
- ORDER_NUMBER (NUMBER) — the source order number.
- TRX_AMOUNT (NUMBER) — the transactional amount associated with the order or line.
- LINE_NUMBER (NUMBER) — the order line identifier.
- STATUS (VARCHAR2, 80) — the current status of the order or transaction.
- PROFILE_CLASS (VARCHAR2, 30) — the security/access profile classification used to scope row visibility. This column is central to the user's search for "profile_class", as it exposes the profile-based segmentation applied by the view.
- ORDER_TYPE (VARCHAR2, 30) — the order type from SO_ORDER_TYPES_ALL.
- TERMS (VARCHAR2, 15) — the payment terms from RA_TERMS.
- ORGANIZATION (VARCHAR2, 240) — the operating unit / organization name from HR_OPERATING_UNITS.
Common Use Cases and Queries
Typical scenarios include exposure summaries grouped by profile class, terms, or operating unit; reconciliation of order amounts against receivables; and extracts feeding downstream reporting. Because the view honors security context, a session normally returns only rows permitted for the current user and operating unit.
Return all rows for the current session context:
- SELECT REFERENCE_ID, ORDER_NUMBER, TRX_AMOUNT, LINE_NUMBER, STATUS, PROFILE_CLASS, ORDER_TYPE, TERMS, ORGANIZATION FROM APPS.CE_FC_OEO_DISC_V;
Aggregate exposure by profile class and organization:
- SELECT PROFILE_CLASS, ORGANIZATION, SUM(TRX_AMOUNT) TOTAL_AMOUNT FROM APPS.CE_FC_OEO_DISC_V GROUP BY PROFILE_CLASS, ORGANIZATION ORDER BY TOTAL_AMOUNT DESC;
Filter by order type and status for a specific operating unit:
- SELECT ORDER_NUMBER, LINE_NUMBER, TRX_AMOUNT, STATUS, TERMS FROM APPS.CE_FC_OEO_DISC_V WHERE ORDER_TYPE = :p_order_type AND STATUS = :p_status;
As an unsupported internal view, it should be used for read-only reporting and integration only, with the understanding that its definition may change without notice.
-
VIEW: APPS.CE_FC_OEO_DISC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_OEO_DISC_V, object_name:CE_FC_OEO_DISC_V, status:VALID,
-
VIEW: APPS.CE_FC_ARI_DISC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_ARI_DISC_V, object_name:CE_FC_ARI_DISC_V, status:VALID,
-
VIEW: APPS.CE_FC_ARI_DISC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_ARI_DISC_V, object_name:CE_FC_ARI_DISC_V, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS, object_name:AR_CUSTOMER_ACCOUNTS, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LA, object_name:AR_CUSTOMER_ACCOUNTS_LA, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_CE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CE, object_name:AR_CUSTOMER_ACCOUNTS_CE, status:VALID,
-
VIEW: APPS.CE_FC_OEO_DISC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FC_OEO_DISC_V, object_name:CE_FC_OEO_DISC_V, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LE, object_name:AR_CUSTOMER_ACCOUNTS_LE, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_CA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CA, object_name:AR_CUSTOMER_ACCOUNTS_CA, status:VALID,
-
VIEW: APPS.HZ_PROFILE_AMTS_V
12.1.1
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS, object_name:AR_CUSTOMER_ACCOUNTS, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_CA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CA, object_name:AR_CUSTOMER_ACCOUNTS_CA, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_CE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CE, object_name:AR_CUSTOMER_ACCOUNTS_CE, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LE, object_name:AR_CUSTOMER_ACCOUNTS_LE, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LA, object_name:AR_CUSTOMER_ACCOUNTS_LA, status:VALID,
-
View: PN_SPACE_ASSIGN_CUST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_SPACE_ASSIGN_CUST_V, object_name:PN_SPACE_ASSIGN_CUST_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_SPACE_ASSIGN_CUST_V ,
-
View: PN_SPACE_ASSIGN_CUST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_SPACE_ASSIGN_CUST_V, object_name:PN_SPACE_ASSIGN_CUST_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_SPACE_ASSIGN_CUST_V ,
-
VIEW: APPS.HZ_PROFILE_AMTS_V
12.2.2
-
Lookup Type: CUSTOMER_EZLINK_ERRORS
12.1.1
product: AR - Receivables , meaning: Customer Ezlink Errors , description: Error messages for customer ezlink program ,
-
VIEW: APPS.CE_AR_FC_INVOICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AR_FC_INVOICES_V, object_name:CE_AR_FC_INVOICES_V, status:VALID,
-
VIEW: APPS.PN_SPACE_ASSIGN_CUST_V
12.2.2
-
VIEW: APPS.PN_SPACE_ASSIGN_CUST_V
12.1.1
-
VIEW: APPS.CE_AR_FC_INVOICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_AR_FC_INVOICES_V, object_name:CE_AR_FC_INVOICES_V, status:VALID,
-
View: PN_SPACE_ASSIGN_CUST_PUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_SPACE_ASSIGN_CUST_PUB_V, object_name:PN_SPACE_ASSIGN_CUST_PUB_V, status:VALID, product: PN - Property Manager , description: Public view used to view customer assignment information , implementation_dba_data: APPS.PN_SPACE_ASSIGN_CUST_PUB_V ,
-
View: PN_SPACE_ASSIGN_CUST_PUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_SPACE_ASSIGN_CUST_PUB_V, object_name:PN_SPACE_ASSIGN_CUST_PUB_V, status:VALID, product: PN - Property Manager , description: Public view used to view customer assignment information , implementation_dba_data: APPS.PN_SPACE_ASSIGN_CUST_PUB_V ,
-
APPS.ARH_ARXCUDCI_PKG SQL Statements
12.1.1
-
APPS.ARH_ARXCUDCI_PKG SQL Statements
12.2.2
-
Lookup Type: CUSTOMER_EZLINK_ERRORS
12.2.2
product: AR - Receivables , meaning: Customer Ezlink Errors , description: Error messages for customer ezlink program ,
-
VIEW: APPS.CE_SO_FC_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SO_FC_ORDERS_V, object_name:CE_SO_FC_ORDERS_V, status:VALID,
-
View: AR_CUSTOMER_ACCOUNTS_CE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CE, object_name:AR_CUSTOMER_ACCOUNTS_CE, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_CE ,
-
VIEW: APPS.PN_SPACE_ASSIGN_CUST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_SPACE_ASSIGN_CUST_V, object_name:PN_SPACE_ASSIGN_CUST_V, status:VALID,
-
View: AR_CUSTOMER_ACCOUNTS_LA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LA, object_name:AR_CUSTOMER_ACCOUNTS_LA, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_LA ,
-
VIEW: APPS.CE_SO_FC_ORDERS_NO_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SO_FC_ORDERS_NO_TERMS_V, object_name:CE_SO_FC_ORDERS_NO_TERMS_V, status:VALID,
-
View: AR_CUSTOMER_ACCOUNTS_CA
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CA, object_name:AR_CUSTOMER_ACCOUNTS_CA, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_CA ,
-
VIEW: APPS.CE_SO_FC_ORDERS_NO_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SO_FC_ORDERS_NO_TERMS_V, object_name:CE_SO_FC_ORDERS_NO_TERMS_V, status:VALID,
-
View: AR_CUSTOMER_ACCOUNTS_CA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CA, object_name:AR_CUSTOMER_ACCOUNTS_CA, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_CA ,
-
VIEW: APPS.CE_SO_FC_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SO_FC_ORDERS_V, object_name:CE_SO_FC_ORDERS_V, status:VALID,
-
View: AR_CUSTOMER_ACCOUNTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS, object_name:AR_CUSTOMER_ACCOUNTS, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS ,
-
APPS.ARP_ARXCUDCI_PKG SQL Statements
12.1.1
-
APPS.ARP_ARXCUDCI_PKG SQL Statements
12.2.2
-
VIEW: APPS.CE_SO_FC_ORDERS_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SO_FC_ORDERS_TERMS_V, object_name:CE_SO_FC_ORDERS_TERMS_V, status:VALID,
-
View: AR_CUSTOMER_ACCOUNTS_LE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LE, object_name:AR_CUSTOMER_ACCOUNTS_LE, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_LE ,
-
View: AR_CUSTOMER_ACCOUNTS_LE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LE, object_name:AR_CUSTOMER_ACCOUNTS_LE, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_LE ,
-
View: AR_CUSTOMER_ACCOUNTS_LA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_LA, object_name:AR_CUSTOMER_ACCOUNTS_LA, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_LA ,
-
View: AR_CUSTOMER_ACCOUNTS_CE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS_CE, object_name:AR_CUSTOMER_ACCOUNTS_CE, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS_CE ,
-
VIEW: APPS.PN_SPACE_ASSIGN_CUST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_SPACE_ASSIGN_CUST_V, object_name:PN_SPACE_ASSIGN_CUST_V, status:VALID,
-
View: AR_CUSTOMER_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_ACCOUNTS, object_name:AR_CUSTOMER_ACCOUNTS, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_ACCOUNTS ,
-
VIEW: APPS.CE_SO_FC_ORDERS_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_SO_FC_ORDERS_TERMS_V, object_name:CE_SO_FC_ORDERS_TERMS_V, status:VALID,
-
VIEW: APPS.PN_SPACE_ASSIGN_CUST_PUB_V
12.2.2
-
VIEW: APPS.PN_SPACE_ASSIGN_CUST_PUB_V
12.1.1