Search Results cp_site
Overview
APPS.CE_SO_FC_ORDERS_NO_TERMS_V is a cash management forecasting view in Oracle E-Business Suite, deployed across both 12.1.1 and 12.2.2. It exposes sales order lines from Oracle Order Management that are open, not yet fully interfaced to Accounts Receivable, and that carry no payment terms at either the line or header level. The view derives a signed sales order amount per line, using line category codes to invert the sign for returns, and projects an anticipated cash receipt date.
The view is part of the Cash Forecasting (CE) family of objects used by the Cash Management module and by the ETRM/Financials reporting layer. Its distinction from sibling forecast views is the NO_TERMS predicate: records qualify only when both OE_ORDER_LINES_ALL.PAYMENT_TERM_ID and OE_ORDER_HEADERS_ALL.PAYMENT_TERM_ID are null. Such orders cannot have due dates computed from terms, so downstream cash forecasting consumers must apply an alternative date derivation, which this view supplies through ordered and requested dates.
Underlying Base Objects
The view is defined over four documented base objects, all accessed through APPS synonyms:
- OE_ORDER_HEADERS_ALL — supplies sales order header attributes:
ORG_ID,TRANSACTIONAL_CURR_CODE,ORDERED_DATE,REQUEST_DATE,BOOKED_FLAG,CONVERSION_TYPE_CODE,CONVERSION_RATE_DATE,ORDER_TYPE_ID,ORDER_NUMBER,OPEN_FLAG,INVOICE_TO_ORG_ID,SHIP_TO_ORG_ID,SOLD_TO_ORG_ID, andPAYMENT_TERM_ID. - OE_ORDER_LINES_ALL — supplies line-level measures and identifiers:
LINE_ID,LINE_NUMBER,LINE_CATEGORY_CODE,ORDERED_QUANTITY,INVOICED_QUANTITY,UNIT_SELLING_PRICE,TAX_VALUE,REQUEST_DATE,FLOW_STATUS_CODE,COMMITMENT_ID,PROJECT_ID,INVOICE_INTERFACE_STATUS_CODE, andPAYMENT_TERM_ID. - HZ_CUSTOMER_PROFILES — joined twice, once aliased
CP_SITEfor the site-level customer profile and once aliasedCP_CUSTfor the account-level profile used to resolve the applicable profile class. - HZ_CUST_PROFILE_CLASSES — referenced as
CP_CLASS, providingPROFILE_CLASS_IDand the descriptiveNAMEof the resolved profile class.
The join between headers and lines is on HEADER_ID. The customer profile join is lineage-based rather than direct foreign key: CP_CLASS.PROFILE_CLASS_ID resolves to the site profile class when a site profile exists (CP_SITE.CUST_ACCOUNT_PROFILE_ID is not null), otherwise to the account profile class (CP_CUST.PROFILE_CLASS_ID). NVL(H.INVOICE_TO_ORG_ID, H.SHIP_TO_ORG_ID) is matched to CP_SITE.SITE_USE_ID as an outer join, and H.SOLD_TO_ORG_ID is matched to CP_CUST.CUST_ACCOUNT_ID with the restriction CP_CUST.SITE_USE_ID IS NULL so only the account-level profile row is used.
Key Columns
- ORG_ID — operating unit identifier from the order header; drives multi-org security and reporting partitions.
- TRANSACTIONAL_CURR_CODE — transactional currency of the order; the currency in which the forecast amount is denominated.
- Signed amount columns — two positional DECODE-based expressions compute
(ordered quantity − invoiced quantity) × unit selling priceplus tax, multiplied by 1 forORDER, −1 forRETURN, and 0 for any other line category code. Tax is included only when the residual quantity is non-zero. - Date columns —
TRUNC(NVL(H.ORDERED_DATE, SYSDATE))andTRUNC(NVL(L.REQUEST_DATE, NVL(H.REQUEST_DATE, SYSDATE)))provide order and request dates for cash timing. - BOOKED_FLAG, CONVERSION_TYPE_CODE, CONVERSION_RATE_DATE — booking status and currency conversion attributes; the rate date defaults to the request date, then to
SYSDATE. - COMMITMENT_ID, PROJECT_ID — linkage to commitments and projects for commitment-based cash forecasting.
- CP_CLASS.NAME / PROFILE_CLASS_ID — the resolved customer profile class name and identifier.
- FLOW_STATUS_CODE, ORDER_NUMBER, LINE_NUMBER, ORDER_TYPE_ID — line workflow state and order/line identity for traceability.
- TO_CHAR(LINE_ID) — line identifier exposed as a character string.
- A literal
1is projected in the position of a row-count/sequence indicator.
Common Use Cases and Queries
The view is typically consumed in cash forecasting and receivables-projection reporting where terms-based due dates are unavailable; the forecast date must instead be inferred from order and request dates. A representative query:
- Filter by operating unit and currency:
SELECT org_id, transactional_curr_code, order_number, line_number, cp_class.name, flow_status_code FROM apps.ce_so_fc_orders_no_terms_v WHERE org_id = :p_org_id AND transactional_curr_code = :p_currency; - Aggregate forecast exposure by operating unit:
SELECT org_id, transactional_curr_code, SUM(signed_amount) FROM apps.ce_so_fc_orders_no_terms_v GROUP BY org_id, transactional_curr_code; - Isolate unbooked orders:
SELECT order_number, line_number, booked_flag FROM apps.ce_so_fc_orders_no_terms_v WHERE booked_flag = 'N'; - Join to commitments and projects via
commitment_idandproject_idfor project cash forecasting.
Because the view filters on OPEN_FLAG = 'Y', INVOICE_INTERFACE_STATUS_CODE IN ('NO','PARTIAL') (with null defaulted to 'NO'), and null payment terms at both line and header, results are restricted to genuinely open, uninvoiced, terms-less order lines. The outer join on the site profile means rows are retained even where no site-level customer profile exists, in which case the account-level profile class governs the CP_CLASS result.
-
VIEW: APPS.CE_SO_FC_ORDERS_NO_TERMS_V
12.1.1
-
VIEW: APPS.CE_SO_FC_ORDERS_NO_TERMS_V
12.2.2
-
VIEW: APPS.CE_AR_FC_INVOICES_V
12.1.1
-
VIEW: APPS.CE_AR_FC_INVOICES_V
12.2.2
-
VIEW: APPS.CE_SO_FC_ORDERS_TERMS_V
12.2.2
-
VIEW: APPS.CE_SO_FC_ORDERS_V
12.2.2
-
VIEW: APPS.CE_SO_FC_ORDERS_TERMS_V
12.1.1
-
VIEW: APPS.CE_SO_FC_ORDERS_V
12.1.1
-
View: 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, product: CE - Cash Management , description: Forecasting source - AR invoices , implementation_dba_data: APPS.CE_AR_FC_INVOICES_V ,
-
View: 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, product: CE - Cash Management , description: Forecasting source - sales orders. This view retrieves sales orders for forecasting when the option of including payment terms in the forecast calculation is not enabled , implementation_dba_data: APPS.CE_SO_FC_ORDERS_V ,
-
View: 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, product: CE - Cash Management , description: Forecasting source - sales orders , implementation_dba_data: APPS.CE_SO_FC_ORDERS_NO_TERMS_V ,
-
View: 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, product: CE - Cash Management , description: Forecasting source - sales orders. , implementation_dba_data: APPS.CE_SO_FC_ORDERS_TERMS_V ,
-
View: 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, product: CE - Cash Management , description: Forecasting source - AR invoices , implementation_dba_data: APPS.CE_AR_FC_INVOICES_V ,
-
View: 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, product: CE - Cash Management , description: Forecasting source - sales orders , implementation_dba_data: APPS.CE_SO_FC_ORDERS_NO_TERMS_V ,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LA
12.2.2
-
View: 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, product: CE - Cash Management , description: Forecasting source - sales orders. This view retrieves sales orders for forecasting when the option of including payment terms in the forecast calculation is not enabled , implementation_dba_data: APPS.CE_SO_FC_ORDERS_V ,
-
View: 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, product: CE - Cash Management , description: Forecasting source - sales orders. , implementation_dba_data: APPS.CE_SO_FC_ORDERS_TERMS_V ,
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LA
12.1.1
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LE
12.1.1
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS_LE
12.2.2
-
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.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: 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: APPS.AR_CUSTOMER_ACCOUNTS
12.1.1
-
VIEW: APPS.AR_CUSTOMER_ACCOUNTS
12.2.2
-
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 ,
-
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 ,
-
APPS.AR_INVOICE_SQL_FUNC_PUB SQL Statements
12.2.2
-
APPS.AR_INVOICE_SQL_FUNC_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AR_ARXCBH_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.AR_ARXCBH_XMLP_PKG
12.2.2
-
APPS.AR_BPA_UTILS_PKG SQL Statements
12.2.2
-
APPS.AR_BPA_UTILS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AR_INVOICE_SQL_FUNC_PUB
12.1.1
-
PACKAGE BODY: APPS.AR_INVOICE_SQL_FUNC_PUB
12.2.2
-
APPS.AR_INVOICE_SQL_FUNC_PUB dependencies on HZ_CUSTOMER_PROFILES
12.2.2
-
APPS.AR_INVOICE_SQL_FUNC_PUB dependencies on HZ_CUSTOMER_PROFILES
12.1.1
-
APPS.AR_BPA_UTILS_PKG dependencies on HZ_CUSTOMER_PROFILES
12.2.2
-
APPS.AR_BPA_UTILS_PKG dependencies on HZ_CUSTOMER_PROFILES
12.1.1
-
APPS.AR_INVOICE_SQL_FUNC_PUB dependencies on HZ_CUST_SITE_USES
12.1.1
-
APPS.AR_INVOICE_SQL_FUNC_PUB dependencies on HZ_CUST_SITE_USES
12.2.2
-
PACKAGE BODY: APPS.AR_BPA_UTILS_PKG
12.1.1
-
PACKAGE BODY: APPS.AR_BPA_UTILS_PKG
12.2.2