I_ARunDemandSortAttribVal

DDL: I_ARUNDEMANDSORTATTRIBVAL SQL: IDMNDATVAL Type: view BASIC

ARun Demand Sort Attribute Values

I_ARunDemandSortAttribVal is a Basic CDS View that provides data about "ARun Demand Sort Attribute Values" in SAP S/4HANA. It reads from 1 data source (arun_dsort_attvl) and exposes 10 fields with key field ARunDemandSortAttribValUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
arun_dsort_attvl arun_dsort_attvl from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ARunDemandSortRule _SortRule $projection.ARunDemandSortRuleUUID = _SortRule.ARunDemandSortRuleUUID
[1..1] I_ARunDemandSortAttrib _SortAttrib $projection.ARunDemandSortAttribUUID = _SortAttrib.ARunDemandSortAttribUUID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IDMNDATVAL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label ARun Demand Sort Attribute Values view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ARunDemandSortAttribValUUID arundemandsortattribvaluuid Attr. Value UUID
ARunDemandSortAttribUUID arundemandsortattribuuid ARun Demand Sort Att
ARunDemandSortRuleUUID arundemandsortruleuuid ARun Sort Rule UUID
ARunDemandSortAttribValPrio arundemandsortattribvalprio Value Priority
ARunDemandSortAttribValue arundemandsortattribvalue Attribute Value
ARunDemandSortPositionIsLow arundemandsortpositionislow Low
BusPrpsOfRefdValueIsCompleted busprpsofrefdvalueiscompleted Purpose Completed
ABOPSortAttributeFldPathUUID _SortAttrib ABOPSortAttributeFldPathUUID Product Allocation Characteristic Catalog Path UUID
_SortAttrib _SortAttrib
_SortRule _SortRule

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_ARunDemandSortAttribVal.
-- 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: IDMNDATVAL

CREATE VIEW I_ARunDemandSortAttribVal AS
SELECT
  ARunDemandSortAttribValUUID,
  ARunDemandSortAttribUUID,
  ARunDemandSortRuleUUID,
  ARunDemandSortAttribValPrio,
  ARunDemandSortAttribValue,
  ARunDemandSortPositionIsLow,
  BusPrpsOfRefdValueIsCompleted,
  _SortAttrib.ABOPSortAttributeFldPathUUID AS ABOPSortAttributeFldPathUUID
FROM arun_dsort_attvl
LEFT OUTER JOIN I_ARunDemandSortRule AS _SortRule ON ARunDemandSortRuleUUID = _SortRule.ARunDemandSortRuleUUID  -- association [1..1]
LEFT OUTER JOIN I_ARunDemandSortAttrib AS _SortAttrib ON ARunDemandSortAttribUUID = _SortAttrib.ARunDemandSortAttribUUID  -- association [1..1]
;