I_CnsldtnPstRlValueCalculation

DDL: I_CNSLDTNPSTRLVALUECALCULATION Type: view_entity BASIC

Value Calculation

I_CnsldtnPstRlValueCalculation is a Basic CDS View that provides data about "Value Calculation" in SAP S/4HANA. It reads from 1 data source (fincs_rule_plvc) and exposes 6 fields with key fields ConsolidationPostingRule, CnsldtnPostingRulePostingLine, CnsldtnPostingRuleSequence.

Data Sources (1)

SourceAliasJoin Type
fincs_rule_plvc fincs_rule_plvc from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value Calculation view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationPostingRule rule_id Rule ID
KEY CnsldtnPostingRulePostingLine pl_id
KEY CnsldtnPostingRuleSequence formula_sequence
CnsldtnPstRlValCalcTokenType token_type
CnsldtnPstRlValCalcTokenValue token_value
ChangedDateTime local_last_changed_at Time Stamp

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_CnsldtnPstRlValueCalculation.
-- 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.

CREATE VIEW I_CnsldtnPstRlValueCalculation AS
SELECT
  rule_id AS ConsolidationPostingRule,
  pl_id AS CnsldtnPostingRulePostingLine,
  formula_sequence AS CnsldtnPostingRuleSequence,
  token_type AS CnsldtnPstRlValCalcTokenType,
  token_value AS CnsldtnPstRlValCalcTokenValue,
  local_last_changed_at AS ChangedDateTime
FROM fincs_rule_plvc
;