Search Results ce_so_fc_orders_v
Overview
CE_SO_FC_ORDERS_V is a seeded, read-only view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It belongs to the Cash Management (CE) product and serves as a forecasting source for sales orders. Specifically, the view is designed to retrieve open sales order lines for use in cash forecasting when the user has not enabled the option to include payment terms in the forecast calculation. In this configuration, Cash Management projects anticipated cash inflows directly from unshipped or uninvoiced order lines rather than deriving them from payment term schedules.
Because it is a database view, CE_SO_FC_ORDERS_V exposes no storage of its own and performs no DML. Its status is recorded as VALID, and it is queried internally by the Cash Management forecasting engine, which aggregates its rows by organization, currency, and date to build the anticipated receipts component of the cash forecast. Report developers and integration specialists also use it to reconcile the forecast figures produced by standard Cash Management functionality.
Underlying Base Objects
The view is defined over four documented base objects, all accessed through APPS synonyms:
- OE_ORDER_HEADERS_ALL — the order header, supplying organization, transactional currency, conversion type, ordered date, requested date, booking status, order type, and order number.
- OE_ORDER_LINES_ALL — the order line, supplying line category, ordered quantity, invoiced quantity, unit selling price, tax value, requested date, commitment, project, flow status, and line identifiers.
- HZ_CUSTOMER_PROFILES — accessed twice (aliased CP_SITE for the site/account profile and CP_CUST for the customer account profile) to resolve the applicable profile class.
- HZ_CUST_PROFILE_CLASSES — aliased CP_CLASS, providing the profile class name and identifier used to associate the correct credit and payment terms profile for forecasting.
The joins restrict output to open orders (H.OPEN_FLAG = 'Y'), exclude fully interfaced lines (INVOICE_INTERFACE_STATUS_CODE in 'NO' or 'PARTIAL'), and resolve the profile class through an outer join on the site use with a fallback to the customer account level.
Key Columns
- ORG_ID — operating unit owning the order; primary partitioning dimension for the forecast.
- TRANSACTIONAL_CURR_CODE — currency of the sales order, used to group forecast amounts before conversion.
- Two computed amount columns (positions 3 and 4) hold the forecast value: line category decoded as 1 for ORDER and -1 for RETURN, multiplied by ((ORDERED_QUANTITY - INVOICED_QUANTITY) × UNIT_SELLING_PRICE) plus tax where the residual quantity is non-zero.
- ORDERED_DATE / REQUEST_DATE — truncated dates that determine the forecast period into which the amount falls.
- BOOKED_FLAG — indicates whether the order is booked.
- CONVERSION_TYPE_CODE and conversion rate date — drive currency conversion of non-functional currency orders.
- COMMITMENT_ID, PROJECT_ID, PROFILE_CLASS_ID, NAME — supporting attributes for commitment, project, and profile class context.
- ORDER_TYPE_ID, ORDER_NUMBER, LINE_NUMBER, LINE_ID, FLOW_STATUS_CODE — audit and identification columns for traceability back to the source order line.
Common Use Cases and Queries
Typical scenarios include validating forecast receipts against open order backlog, analyzing residual order value by operating unit and currency, and diagnosing discrepancies between order entry and forecast output.
SELECT org_id, transactional_curr_code, SUM(forecast_amount)
FROM ce_so_fc_orders_v
GROUP BY org_id, transactional_curr_code;
Identifying open lines for a specific order number:
SELECT order_number, line_number, flow_status_code
FROM ce_so_fc_orders_v
WHERE order_number = :order_number
AND booked_flag = 'Y';
Because the view excludes lines where payment terms are used in forecasting and filters on open, partially interfaced orders, results should be interpreted as the sales order contribution under the non-payment-term forecast option only.
-
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_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: APPS.CE_FC_OEO_DISC_V
12.1.1
-
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: APPS.CE_FC_OEO_DISC_V
12.2.2
-
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: 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, product: CE - Cash Management , implementation_dba_data: APPS.CE_FC_OEO_DISC_V ,
-
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,
-
SYNONYM: APPS.HZ_CUST_PROFILE_CLASSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_PROFILE_CLASSES, status:VALID,
-
View: 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, product: CE - Cash Management , implementation_dba_data: APPS.CE_FC_OEO_DISC_V ,
-
SYNONYM: APPS.HZ_CUST_PROFILE_CLASSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_PROFILE_CLASSES, status:VALID,
-
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,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_CUSTOMER_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUSTOMER_PROFILES, status:VALID,
-
SYNONYM: APPS.HZ_CUSTOMER_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUSTOMER_PROFILES, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
PACKAGE BODY: APPS.XTR_CSH_FCST_POP
12.1.1
-
PACKAGE BODY: APPS.XTR_CSH_FCST_POP
12.2.2
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
APPS.XTR_CSH_FCST_POP dependencies on XTR_DEBUG_PKG
12.1.1
-
APPS.XTR_CSH_FCST_POP dependencies on XTR_DEBUG_PKG
12.2.2
-
PACKAGE BODY: APPS.CE_CSH_FCST_POP
12.1.1
-
PACKAGE BODY: APPS.CE_CSH_FCST_POP
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CE_CSH_FCST_POP dependencies on STANDARD
12.1.1
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
APPS.CE_CSH_FCST_POP dependencies on CEP_STANDARD
12.1.1
-
APPS.CE_CSH_FCST_POP dependencies on CEP_STANDARD
12.2.2
-
APPS.CE_CSH_FCST_POP dependencies on STANDARD
12.2.2