I_PubSecSplittingRule

DDL: I_PUBSECSPLITTINGRULE SQL: PUBSECSPLITRULE Type: view BASIC

Public Sector Splitting Rule

I_PubSecSplittingRule is a Basic CDS View that provides data about "Public Sector Splitting Rule" in SAP S/4HANA. It reads from 1 data source (fmsplit_rule) and exposes 13 fields with key field PubSecSplitRule. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
fmsplit_rule fmsplit_rule from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PubSecSplittingRuleT _Text

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PUBSECSPLITRULE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Public Sector Splitting Rule view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY PubSecSplitRule split_rule Distrib. Rule
PubSecSplitRuleGroupID group_id UUID
PubSecSplitRuleStatus status Workflow Status
PubSecSplitRuleFieldProfID fprof_id Field Profile
PubSecSplitRuleActionProfID aprof_id Action Profile
PubSecSplitRuleType rule_type Rule Type
PubSecSplitBindingType binding_type Service Binding Type
PubSecSplitRuleRemainderType remainder_type Remainder
CreatedByUser created_by Version Created By
CreationDate created_on Variant created on
LastChangedByUser modified_by User Name
LastChangeDate modified_on Last Modified on
_Text _Text

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_PubSecSplittingRule.
-- 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: PUBSECSPLITRULE

CREATE VIEW I_PubSecSplittingRule AS
SELECT
  split_rule AS PubSecSplitRule,
  group_id AS PubSecSplitRuleGroupID,
  status AS PubSecSplitRuleStatus,
  fprof_id AS PubSecSplitRuleFieldProfID,
  aprof_id AS PubSecSplitRuleActionProfID,
  rule_type AS PubSecSplitRuleType,
  binding_type AS PubSecSplitBindingType,
  remainder_type AS PubSecSplitRuleRemainderType,
  created_by AS CreatedByUser,
  created_on AS CreationDate,
  modified_by AS LastChangedByUser,
  modified_on AS LastChangeDate
FROM fmsplit_rule
LEFT OUTER JOIN I_PubSecSplittingRuleT AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;