I_ARunDemandSortRule

DDL: I_ARUNDEMANDSORTRULE SQL: IARNDMNDSRTRL Type: view BASIC

ARun Demand Sort Rule

I_ARunDemandSortRule is a Basic CDS View that provides data about "ARun Demand Sort Rule" in SAP S/4HANA. It reads from 1 data source (arun_dsort_rule) and exposes 10 fields with key field ARunDemandSortRuleUUID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
arun_dsort_rule arun_dsort_rule from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_ARunDemandSortRuleText _SortRuleText $projection.ARunDemandSortRuleUUID = _SortRuleText.ARunDemandSortRuleUUID and _SortRuleText.Language = $session.system_language
[0..*] I_ARunDemandSortAttrib _SortAttrib $projection.ARunDemandSortRuleUUID = _SortAttrib.ARunDemandSortRuleUUID
[0..*] I_ARunDemandSortAttribVal _SortAttribVal $projection.ARunDemandSortRuleUUID = _SortAttribVal.ARunDemandSortRuleUUID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IARNDMNDSRTRL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label ARun Demand Sort Rule view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.compositionRoot true view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ARunDemandSortRuleUUID arundemandsortruleuuid ARun Sort Rule UUID
ARunDemandSortRule arundemandsortrule ARun Demand Sort Rul
ARunDemandSortRuleText _SortRuleText ARunDemandSortRuleText ARun Sort Rule Text
CreatedByUser createdbyuser User Name
CreationDateTime creationdatetime Timestamp
LastChangedByUser lastchangedbyuser User Name
LastChangeDateTime lastchangedatetime Timestamp
_SortRuleText _SortRuleText
_SortAttrib _SortAttrib
_SortAttribVal _SortAttribVal

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_ARunDemandSortRule.
-- 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: IARNDMNDSRTRL

CREATE VIEW I_ARunDemandSortRule AS
SELECT
  ARunDemandSortRuleUUID,
  ARunDemandSortRule,
  _SortRuleText.ARunDemandSortRuleText AS ARunDemandSortRuleText,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LastChangeDateTime
FROM arun_dsort_rule
LEFT OUTER JOIN I_ARunDemandSortRuleText AS _SortRuleText ON ARunDemandSortRuleUUID = _SortRuleText.ARunDemandSortRuleUUID AND _SortRuleText.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_ARunDemandSortAttrib AS _SortAttrib ON ARunDemandSortRuleUUID = _SortAttrib.ARunDemandSortRuleUUID  -- association [0..*]
LEFT OUTER JOIN I_ARunDemandSortAttribVal AS _SortAttribVal ON ARunDemandSortRuleUUID = _SortAttribVal.ARunDemandSortRuleUUID  -- association [0..*]
;