Search Results term_l




Overview

APPS.CE_SO_FC_ORDERS_TERMS_V is a reporting view in Oracle E-Business Suite that projects order line revenue and payment-term scheduling information for open sales orders. It is designed for cash forecasting and cash management (CE) purposes, allowing expected cash inflows to be derived from outstanding order commitments and their associated payment terms. The view joins sales order header and line data from the Order Management tables with payment term line definitions from Receivables, producing one row per order line and payment term schedule line. In EBS 12.1.1 and 12.2.2 the object is delivered as an APPS-owned view and is typically consumed by cash forecasting, collections planning, and custom reporting rather than by transactional forms.

Underlying Base Objects

The view is defined over five documented base objects, all accessed through APPS synonyms:

Order lines are linked to headers on HEADER_ID, and to payment terms on the effective term (line-level PAYMENT_TERM_ID, falling back to header-level PAYMENT_TERM_ID). Customer profile joining resolves the applicable profile class via CP_CUST (account level, with NULL SITE_USE_ID) and CP_SITE (site level).

Key Columns

Common Use Cases and Queries

The view is most commonly used to forecast expected receipts from open, booked orders by exploding each line across its payment term schedule. Because the WHERE clause restricts to OPEN_FLAG = 'Y' and lines whose INVOICE_INTERFACE_STATUS_CODE is 'NO' or 'PARTIAL', only uninvoiced or partially invoiced lines are returned, which is appropriate for remaining cash expectations. A typical query retrieves forecast amounts by due date and currency:

  • SELECT org_id, transactional_curr_code, term_due_date, term_due_days, SUM(amount) FROM CE_SO_FC_ORDERS_TERMS_V GROUP BY org_id, transactional_curr_code, term_due_date, term_due_days;
  • SELECT order_number, line_number, flow_status_code, term_due_date, relative_amount FROM CE_SO_FC_ORDERS_TERMS_V WHERE org_id = :p_org_id AND transactional_curr_code = :p_currency;
  • SELECT profile_class_id, name, COUNT(*) FROM CE_SO_FC_ORDERS_TERMS_V GROUP BY profile_class_id, name;

Typical scenarios include cash forecasting by due date, aging of uninvoiced order backlog, and profile-class based analysis of expected collections. The view should not be used for transactional processing; it is read-only reporting metadata whose joins assume the standard EBS multi-org and trading-community model.