I_CmmdtyPricingCalculationRule

DDL: I_CMMDTYPRICINGCALCULATIONRULE SQL: ICALCULATIONRULE Type: view BASIC

CPE Calculation Rule

I_CmmdtyPricingCalculationRule is a Basic CDS View that provides data about "CPE Calculation Rule" in SAP S/4HANA. It reads from 1 data source (cpec_calcrule) and exposes 4 fields with key fields OriginSystem, PrcgCndnTermCalculationRule, CndnCalcRuleValdtyStrtDateTime. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
cpec_calcrule cpec_calcrule from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CmmdtyPrcgCalcRuleText _Text _Text.OriginSystem = $projection.OriginSystem and _Text.PrcgCndnTermCalculationRule = $projection.PrcgCndnTermCalculationRule

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICALCULATIONRULE view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CPE Calculation Rule view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey PrcgCndnTermCalculationRule view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OriginSystem logsys Source system
KEY PrcgCndnTermCalculationRule calcrule Calculation Rule
KEY CndnCalcRuleValdtyStrtDateTime Vers.Valid To
_Text _Text

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 I_CmmdtyPricingCalculationRule.
-- 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.
-- SQL view name: ICALCULATIONRULE

CREATE VIEW I_CmmdtyPricingCalculationRule AS
SELECT
  logsys AS OriginSystem,
  calcrule AS PrcgCndnTermCalculationRule,
  cast( validto as cpet_validfrom_cds preserving type ) AS CndnCalcRuleValdtyStrtDateTime
FROM cpec_calcrule
LEFT OUTER JOIN I_CmmdtyPrcgCalcRuleText AS _Text ON _Text.OriginSystem = OriginSystem AND _Text.PrcgCndnTermCalculationRule = PrcgCndnTermCalculationRule  -- association [1..*]
;