Search Results ce_so_fc_orders_terms_v
Overview
CE_SO_FC_ORDERS_TERMS_V is a Cash Management (CE) forecasting source view owned by the APPS schema. It exposes open sales order lines together with their associated payment term components, providing the data set that the Cash Management forecasting engine consumes when projecting future cash receipts from sales orders. The view name reflects its composition: CE (Cash Management), SO (sales order), FC (forecast), ORDERS, and TERMS, the last indicating that payment term schedule detail is joined into the result set. Because it is a view rather than a table, it is functionally read-only and derives every row at query time from Oracle Order Management, Receivables, and Trading Community Architecture base objects.
The object carries a VALID status in the ETRM 12.2.2 repository, meaning its definition compiles and its dependencies resolve in a supported configuration. The user search term term_due_date corresponds directly to the TERM_DUE_DATE column defined in the view text as TERM_L.DUE_DATE, sourced from RA_TERMS_LINES.
Underlying Base Objects
The view is defined over five referenced base objects, all reached through APPS synonyms:
- OE_ORDER_HEADERS_ALL — supplies order-level attributes such as ORG_ID, ORDERED_DATE, BOOKED_FLAG, CONVERSION_TYPE_CODE, ORDER_TYPE_ID, ORDER_NUMBER, and the header-level PAYMENT_TERM_ID. The predicate H.OPEN_FLAG = 'Y' restricts the result to open orders.
- OE_ORDER_LINES_ALL — supplies line-level attributes including ORDERED_QUANTITY, INVOICED_QUANTITY, UNIT_SELLING_PRICE, TAX_VALUE, LINE_CATEGORY_CODE, REQUEST_DATE, COMMITMENT_ID, PROJECT_ID, LINE_NUMBER, FLOW_STATUS_CODE, PAYMENT_TERM_ID, and LINE_ID. A filter excludes lines whose INVOICE_INTERFACE_STATUS_CODE is neither 'NO' nor 'PARTIAL'.
- RA_TERMS_LINES — the payment term schedule table, aliased TERM_L, which contributes DUE_DATE, DUE_DAYS, DUE_DAY_OF_MONTH, DUE_MONTHS_FORWARD, RELATIVE_AMOUNT, TERM_ID, and SEQUENCE_NUM.
- HZ_CUSTOMER_PROFILES — joined twice (aliases CP_SITE and CP_CUST) to resolve the applicable customer profile class at site and account level.
- HZ_CUST_PROFILE_CLASSES — supplies PROFILE_CLASS_ID and NAME used to classify the customer profile.
The joins are outer where site-level profile data may be absent, and the customer account join enforces CP_CUST.SITE_USE_ID IS NULL so that only account-level profile records are matched.
Key Columns
- TERM_DUE_DATE — the scheduled due date of the payment term line; the column most directly associated with the search term term_due_date.
- TERM_DUE_DAYS, TERM_DUE_DAY_OF_MONTH, TERM_DUE_MONTHS_FORWARD — the relative components used to derive term schedules.
- RELATIVE_AMOUNT — the portion of the term amount applicable to the schedule line.
- ORG_ID, TRANSACTIONAL_CURR_CODE — operating unit and transaction currency context.
- Forecast amount expressions — the two DECODE-based amount columns compute ordered less invoiced quantity multiplied by unit selling price, plus tax, signed positive for 'ORDER' and negative for 'RETURN' line categories.
- ORDERED_DATE, REQUEST_DATE — truncated dates defaulting to SYSDATE where null, supporting forecast date placement.
- BOOKED_FLAG, FLOW_STATUS_CODE, ORDER_NUMBER, LINE_NUMBER — identification and lifecycle status.
- PROFILE_CLASS_ID, NAME — customer profile classification resolved through HZ tables.
- The final concatenated expression (LINE_ID, TERM_ID, SEQUENCE_NUM) provides a synthetic unique key per forecast row.
Common Use Cases and Queries
Typical use is Cash Management forecast analysis and reconciliation of projected receipts by payment term due date. A representative query filters by operating unit and due date window:
SELECT order_number, line_number, transactional_curr_code,
term_due_date, relative_amount
FROM apps.ce_so_fc_orders_terms_v
WHERE org_id = :p_org_id
AND term_due_date BETWEEN :p_from_date AND :p_to_date
ORDER BY term_due_date;
Aggregation by due date supports cash positioning:
SELECT TRUNC(term_due_date) due_date,
transactional_curr_code,
SUM(relative_amount) forecast_amount
FROM apps.ce_so_fc_orders_terms_v
WHERE org_id = :p_org_id
GROUP BY TRUNC(term_due_date), transactional_curr_code;
Because the view is not indexed directly, performance depends on the underlying Order Management and Receivables indexes; queries should always be constrained by ORG_ID and a date range. Reporting tools and custom Cash Management forecast extensions frequently query this view as a substitute for the standard forecast generation program when line-level term detail is required.
-
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_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.CE_FC_OEO_DISC_V
12.1.1
-
VIEW: APPS.CE_FC_OEO_DISC_V
12.2.2
-
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: 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.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_PROFILE_CLASSES, 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,
-
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,
-
SYNONYM: APPS.RA_TERMS_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_TERMS_LINES, status:VALID,
-
SYNONYM: APPS.RA_TERMS_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_TERMS_LINES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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: 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,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
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.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,
-
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,
-
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 ,
-
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
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
APPS.CE_CSH_FCST_POP dependencies on STANDARD
12.1.1
-
APPS.CE_CSH_FCST_POP dependencies on CEP_STANDARD
12.1.1
-
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.2.2
-
APPS.CE_CSH_FCST_POP dependencies on STANDARD
12.2.2