Results for “won_amount”

8 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The AS_MC_SALES_CREDITS_DEN table is a multi-currency denormalized table within the Oracle E-Business Suite Sales Foundation (AS) product family. It stores sales credit amounts that have been converted into various reporting currencies, calculated using both daily exchange rates and pseudo period rates. The table is owned by the OSM schema and is documented as VALID in Oracle ETRM for releases 12.1.1 and 12.2.2.

This object plays a supporting role in the sales credit compensation and reporting flow. Where AS_SALES_CREDITS_DENORM captures the transactional sales credit detail in the source currency, AS_MC_SALES_CREDITS_DEN holds the currency-converted equivalents required for global reporting, revenue analysis, and incentive calculations across multiple ledgers and reporting currencies.

From a Data Vault modeling perspective, the heuristic classification derived from the foreign key structure suggests this table functions as a link. It connects the sales credit transaction (via SALES_CREDIT_ID) to currency conversion context objects — conversion type mappings, GL periods, and security groups — establishing relationships rather than acting as a standalone hub or a pure satellite attribute store.

Key Information Stored

The table contains 27 documented columns. The most significant are listed below, distinguishing surrogate key from business-key columns.

Common Use Cases and Queries

Typical usage centers on multi-currency sales compensation and revenue reporting. A common pattern joins this table to its parent transaction table to report converted credit amounts per salesperson or period:

SELECT s.sales_credit_id,
       m.to_currency_code,
       m.conversion_period_name,
       m.sales_credit_amount,
       m.weighted_amount
FROM   as_sales_credits_denorm s,
       as_mc_sales_credits_den m
WHERE  s.sales_credit_id = m.sales_credit_id
AND    m.conversion_status_flag = 'Y';

Other scenarios include reconciling failed conversions by filtering on CONVERSION_RATE_FOUND = 'N' or CONVERSION_RATE_STATUS, auditing the impact of a specific concurrent request through REQUEST_ID, and reporting converted pipeline or won amounts by period set for a given reporting currency.

Related Objects

  • AS_SALES_CREDITS_DENORM — Parent source of sales credit transactions; joined on SALES_CREDIT_ID.
  • AS_MC_TYPE_MAPPINGS — Defines conversion type and period type mappings referenced by CONVERSION_TYPE, CONVERSION_PERIOD_TYPE, and CONVERSION_PERIOD_SET_NAME.
  • GL_PERIODS — Provides period validation via CONVERSION_PERIOD_SET_NAME and CONVERSION_PERIOD_NAME.
  • FND_SECURITY_GROUPS — Enforces security group partitioning through SECURITY_GROUP_ID.