I_CnsldtnPstRlFieldAssignment

DDL: I_CNSLDTNPSTRLFIELDASSIGNMENT Type: view_entity BASIC

Rule Posting Line Field Assignment

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

Data Sources (1)

SourceAliasJoin Type
fincs_rule_plasg fincs_rule_plasg from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Rule Posting Line Field Assignment 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 (8)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationPostingRule rule_id Rule ID
KEY CnsldtnPostingRulePostingLine pl_id
KEY ConsolidationPostingRuleField fieldname UI Group FieldName
CnsldtnPostingRuleSequence sequence Visit Sequence
CnsldtnPstRlAssignmentOperator assgmt_operator
CnsldtnPstRlFldAssignmentValue assgmt_value
CnsldtnPstRlFldAssgmtCondition cond Condition
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_CnsldtnPstRlFieldAssignment.
-- 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_CnsldtnPstRlFieldAssignment AS
SELECT
  rule_id AS ConsolidationPostingRule,
  pl_id AS CnsldtnPostingRulePostingLine,
  fieldname AS ConsolidationPostingRuleField,
  sequence AS CnsldtnPostingRuleSequence,
  assgmt_operator AS CnsldtnPstRlAssignmentOperator,
  assgmt_value AS CnsldtnPstRlFldAssignmentValue,
  cond AS CnsldtnPstRlFldAssgmtCondition,
  local_last_changed_at AS ChangedDateTime
FROM fincs_rule_plasg
;