I_PubSecSplittingRuleT

DDL: I_PUBSECSPLITTINGRULET SQL: PUBSECSPLITRULET Type: view BASIC

Splitting Rule - Text

I_PubSecSplittingRuleT is a Basic CDS View that provides data about "Splitting Rule - Text" in SAP S/4HANA. It reads from 1 data source (fmsplit_rulet) and exposes 5 fields with key fields Language, PubSecSplitRule. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
fmsplit_rulet fmsplit_rulet from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey PubSecSplitRule view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName PUBSECSPLITRULET view
EndUserText.label Splitting Rule - Text view
AbapCatalog.preserveKey true view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language fmsplit_rulet lang Language
KEY PubSecSplitRule fmsplit_rulet split_rule Distrib. Rule
PubSecSplitRuleName fmsplit_rulet text User Group
_Language _Language
_PubSecSplittingRule _PubSecSplittingRule

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_PubSecSplittingRuleT.
-- 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: PUBSECSPLITRULET

CREATE VIEW I_PubSecSplittingRuleT AS
SELECT
  fmsplit_rulet.lang AS Language,
  fmsplit_rulet.split_rule AS PubSecSplitRule,
  fmsplit_rulet.text AS PubSecSplitRuleName
FROM fmsplit_rulet
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;