C_SalesContractItmFlfmtQ

DDL: C_SALESCONTRACTITMFLFMTQ Type: view CONSUMPTION

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

CategorySales Contract
Data CategoryQuery
StatusReleased
Corresponding DataSource2CCSDSLSCONTRIQ
Purpose
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

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
I_SalesContractItemFlfmtCube I_SalesContractItemFlfmtCube from

Parameters (3)

NameTypeDefault
P_Date sydate
P_ExchangeRateType kurst
P_DisplayCurrency vdm_v_display_currency

Annotations (14)

NameValueLevelField
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 IDApp NameTypeDescription
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)

KeyFieldSource TableSource FieldDescription
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
;