P_PurgInfoRecdCndCheckRuleType

DDL: P_PURGINFORECDCNDCHECKRULETYPE SQL: PPIRCONDCHKRULE Type: view COMPOSITE

Checking Rule Type for Pricing Cond Type

P_PurgInfoRecdCndCheckRuleType is a Composite CDS View that provides data about "Checking Rule Type for Pricing Cond Type" in SAP S/4HANA. It reads from 1 data source (I_PricingConditionType) and exposes 3 fields with key field ConditionType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PricingConditionType I_PricingConditionType from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_PrcgScaleCheckingRuleText _ScaleRuleText _ScaleRuleText.PricingScaleCheckingRule = $projection.PricingScaleCheckingRule and _ScaleRuleText.Language = $session.system_language

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PPIRCONDCHKRULE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Checking Rule Type for Pricing Cond Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConditionType ConditionType Condition type
PricingScaleCheckingRule PricingScaleCheckingRule Check Scale
PricingScaleCheckingRuleName _ScaleRuleText PricingScaleCheckingRuleName

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 P_PurgInfoRecdCndCheckRuleType.
-- 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: PPIRCONDCHKRULE

CREATE VIEW P_PurgInfoRecdCndCheckRuleType AS
SELECT
  ConditionType,
  PricingScaleCheckingRule,
  _ScaleRuleText.PricingScaleCheckingRuleName AS PricingScaleCheckingRuleName
FROM I_PricingConditionType
LEFT OUTER JOIN I_PrcgScaleCheckingRuleText AS _ScaleRuleText ON _ScaleRuleText.PricingScaleCheckingRule = PricingScaleCheckingRule AND _ScaleRuleText.Language = $session.system_language  -- association [0..1]
;