I_PubSecSplitRuleStatusText

DDL: I_PUBSECSPLITRULESTATUSTEXT SQL: SPLITRULET Type: view BASIC

Splitting Rule Status - Text

I_PubSecSplitRuleStatusText is a Basic CDS View that provides data about "Splitting Rule Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PubSecSplitRuleStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName SPLITRULET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Splitting Rule Status - Text view
ObjectModel.representativeKey PubSecSplitRuleStatus view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY PubSecSplitRuleStatus
PubSecSplitRuleStatusText
_Language _Language
_SplittingRuleStatus _SplittingRuleStatus

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_PubSecSplitRuleStatusText.
-- 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: SPLITRULET

CREATE VIEW I_PubSecSplitRuleStatusText AS
SELECT
  cast( dd07t.ddlanguage as lang ) AS Language,
  cast( substring( dd07t.domvalue_l, 1, 1 ) as fmsp_status ) AS PubSecSplitRuleStatus,
  cast ( dd07t.ddtext as psm_s4c_split_rule_dom_txt ) AS PubSecSplitRuleStatusText
FROM dd07t
;