I_GrantTimeSplitRuleText

DDL: I_GRANTTIMESPLITRULETEXT SQL: ITISPLRULEGRTXT Type: view BASIC Package: PSM_S4C_GM_MD

Text for grant time slice split rule

I_GrantTimeSplitRuleText is a Basic CDS View that provides data about "Text for grant time slice split rule" in SAP S/4HANA. It reads from 1 data source (gmsplitrulest) and exposes 5 fields with key fields Language, GteeMTimeSliceSplittingRule. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F4182, ASQL_F7335). Part of development package PSM_S4C_GM_MD.

Data Sources (1)

SourceAliasJoin Type
gmsplitrulest gmsplitrulest from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language association[0..1] to I_GrantTimeSplitRule as _GrantTimeSplitRule on $projection.GteeMTimeSliceSplittingRule = _GrantTimeSplitRule.GteeMTimeSliceSplittingRule

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ITISPLRULEGRTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Text for grant time slice split rule view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey GteeMTimeSliceSplittingRule view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F4182 ASQL_F4182 C2 NOT_RELEASED
ASQL_F7335 ASQL_F7335 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language language Report Text Language
KEY GteeMTimeSliceSplittingRule splitting_rule Split Rule
GteeMTimeSplittingRuleText rule_text Rounding rule text
_Language _Language
_GrantTimeSplitRule _GrantTimeSplitRule

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_GrantTimeSplitRuleText.
-- 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: ITISPLRULEGRTXT

CREATE VIEW I_GrantTimeSplitRuleText AS
SELECT
  Language,
  splitting_rule AS GteeMTimeSliceSplittingRule,
  rule_text AS GteeMTimeSplittingRuleText
FROM gmsplitrulest
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language association[0..1] to I_GrantTimeSplitRule as _GrantTimeSplitRule on GteeMTimeSliceSplittingRule = _GrantTimeSplitRule.GteeMTimeSliceSplittingRule  -- association [1..1]
;