C_SalesContractItmFlfmtQ
Sales Contract Fulfillment Rate - Query
C_SalesContractItmFlfmtQ is a Consumption CDS View that provides data about "Sales Contract Fulfillment Rate - Query" in SAP S/4HANA. It reads from 1 data source (I_SalesContractItemFlfmtCube) and exposes 17 fields with key fields SalesContract, SalesContractItem. It is used in 1 Fiori application: Sales Contract Fulfillment Rates.
SAP Help Documentation
| Category | Sales Contract |
|---|---|
| Data Category | Query |
| Status | Released |
| Corresponding DataSource | 2CCSDSLSCONTRIQ |
This CDS view provides sales contract fulfillment rates by various dimensions such as sales organization, customer, product, and employee responsible. It provides the prerequisites for answering the following business questions: To what extent are my contracts being fulfilled? Which contracts will expire soon? What are my top 10 contracts by target value? Note Only sales contracts that meet all of the following criteria are considered in this CDS view: Valid on the current date Total net value> 0 (greater than zero) Not fully released by sales orders Overall status is not completed
Prerequisites
This query is built on top of the cube view Analytics - Sales Contract Fulfillment Rate Cube ( I_SalesContractItemFlfmtCube ). You can use this query to create sales reports. Users who want to run these reports must have the relevant authorizations as required for using the cube view Sales Contract Fulfillment Rate - Cube .
Structure
Object types This view is built on the following object type: Sales Contract Main CDS parameters and filters The main CDS parameters are: P_Date : used to specify the date on which your report is generated. The default value is the current date. P_ExchangeRateType : used to specify the exchange rate type for currency conversion. The default value is M (standard translation at average rate). P_DisplayCurrency : used to specify the target currency for currency conversion. No filters are provided. Measures and attributes The following table explains the most important measures in the view. Measure Description SalesContractTargetAmountInDC Target value of sales contracts in display currency SalesContractReleasedAmtInDC Target value that has been released in sales contracts in display currency SlsContrPeriodElapsedPercent Percentage of elapsed time over contract validity period SalesContractFulfillmentRate Percentage of the target value that has been released in sales contracts Note For currency conversion, the exchange rate is determined by the exchange rate type and the creation date of the sales contract item. Some important attributes are: Sales organization Valid-to date Sold-to party Product
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesContractItemFlfmtCube | I_SalesContractItemFlfmtCube | from |
Parameters (3)
| Name | Type | Default |
|---|---|---|
| P_Date | sydate | |
| P_ExchangeRateType | kurst | |
| P_DisplayCurrency | vdm_v_display_currency |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Sales Contract Fulfillment Rate - Query | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AbapCatalog.sqlViewName | CSDSLSCONTRIQ | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Analytics.query | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_QUERY | view | |
| OData.publish | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F1905 | Sales Contract Fulfillment Rates | Analytical | An application to show the percentage of the target value that has been released in a sales contract. You can use the application to analyze how well the contracts in your responsible sales area are being fulfilled. |
Sales Contract Fulfillment Rates
Business Role: Internal Sales Representative
This analytical app displays the Key Performance Indicator (KPI) Sales Contract Fulfillment Rates, which indicates the percentage of the target value that has been released in a sales contract. As an internal sales representative or a sales manager, you can use this KPI to analyze how well the contracts in your responsible sales area are being fulfilled. You can quickly identify contracts that need to be renewed soon, as well as contracts that are not being fulfilled as expected.
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesContract | SalesContract | Sales Document | |
| KEY | SalesContractItem | SalesContractItem | Item | |
| SalesOrganization | SalesOrganization | Sales Organization | ||
| PartnerCompany | PartnerCompany | Trading Partner | ||
| SoldToParty | SoldToParty | Sold-to Party | ||
| ResponsibleEmployee | ResponsibleEmployee | Employee Resp. | ||
| SalesEmployee | SalesEmployee | Sales Employee | ||
| Material | Material | Vehicle Model | ||
| Product | Product | Product Sold | ||
| SDDocumentRejectionStatus | SDDocumentRejectionStatus | |||
| DisplayCurrency | DisplayCurrency | Display Currency | ||
| SlsContrPeriodElapsedPercent | SlsContrPeriodElapsedPercent | Elapsed Time over Contract Period % | ||
| SalesContractTargetAmountInDC | SalesContractTargetAmountInDC | |||
| SalesContractTargetValue | SalesContractTargetAmountInDC | |||
| SalesContractReleasedAmtInDC | SalesContractReleasedAmtInDC | |||
| ReleasedNetAmount | SalesContractReleasedAmtInDC | |||
| SalesContractFulfillmentRate | 1 | Contract Fulfillment Rate |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view C_SalesContractItmFlfmtQ.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- Parameters: P_Date : sydate, P_ExchangeRateType : kurst, P_DisplayCurrency : vdm_v_display_currency
CREATE VIEW C_SalesContractItmFlfmtQ AS
SELECT
SalesContract,
SalesContractItem,
SalesOrganization,
PartnerCompany,
SoldToParty,
ResponsibleEmployee,
SalesEmployee,
Material,
Product,
SDDocumentRejectionStatus,
DisplayCurrency,
SlsContrPeriodElapsedPercent,
SalesContractTargetAmountInDC,
SalesContractTargetAmountInDC AS SalesContractTargetValue,
SalesContractReleasedAmtInDC,
SalesContractReleasedAmtInDC AS ReleasedNetAmount,
1 AS SalesContractFulfillmentRate
FROM I_SalesContractItemFlfmtCube
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Fiori Apps Architecture — How Fiori Apps Connect to Data
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA