I_CnsldtnPstRlPostingLine

DDL: I_CNSLDTNPSTRLPOSTINGLINE Type: view_entity BASIC

Rule Posting Line

I_CnsldtnPstRlPostingLine is a Basic CDS View that provides data about "Rule Posting Line" in SAP S/4HANA. It reads from 1 data source (fincs_rule_pl) and exposes 4 fields with key fields ConsolidationPostingRule, CnsldtnPostingRulePostingLine.

Data Sources (1)

SourceAliasJoin Type
fincs_rule_pl fincs_rule_pl from

Annotations (7)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationPostingRule rule_id Rule ID
KEY CnsldtnPostingRulePostingLine pl_id
CnsldtnPostingRuleSequence sequence Visit Sequence
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_CnsldtnPstRlPostingLine.
-- 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_CnsldtnPstRlPostingLine AS
SELECT
  rule_id AS ConsolidationPostingRule,
  pl_id AS CnsldtnPostingRulePostingLine,
  sequence AS CnsldtnPostingRuleSequence,
  local_last_changed_at AS ChangedDateTime
FROM fincs_rule_pl
;