I_ConsolidationPostingRuleText

DDL: I_CONSOLIDATIONPOSTINGRULETEXT Type: view_entity BASIC

Posting Rule - Text

I_ConsolidationPostingRuleText is a Basic CDS View that provides data about "Posting Rule - Text" in SAP S/4HANA. It reads from 1 data source (fincs_rulet) and exposes 5 fields with key fields ConsolidationPostingRule, Language.

Data Sources (1)

SourceAliasJoin Type
fincs_rulet fincs_rulet from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Posting Rule - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Analytics.technicalName IConsolidationPostingRuleT view
ObjectModel.representativeKey ConsolidationPostingRule view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationPostingRule rule_id Rule ID
KEY Language Primary lang.
ConsolidationPostingRuleText descr WSS Profile
CnsldtnPostingRuleLongText long_descr
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_ConsolidationPostingRuleText.
-- 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_ConsolidationPostingRuleText AS
SELECT
  rule_id AS ConsolidationPostingRule,
  cast( langu as spras preserving type ) AS Language,
  descr AS ConsolidationPostingRuleText,
  long_descr AS CnsldtnPostingRuleLongText,
  local_last_changed_at AS ChangedDateTime
FROM fincs_rulet
;