I_DataMdmExchCustTreePrptyDrft

DDL: I_DATAMDMEXCHCUSTTREEPRPTYDRFT Type: view_entity BASIC

DMEE Customer Tree Property Draft

I_DataMdmExchCustTreePrptyDrft is a Basic CDS View that provides data about "DMEE Customer Tree Property Draft" in SAP S/4HANA. It reads from 1 data source (dmecr_tree_head) and exposes 27 fields with key fields HierarchyTreeType, HierarchyTree, HierarchyTreeVersion, DraftUUID.

Data Sources (1)

SourceAliasJoin Type
dmecr_tree_head dmecr_tree_head from

Annotations (6)

NameValueLevelField
EndUserText.label DMEE Customer Tree Property Draft view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY HierarchyTreeType hierarchytreetype Mapping Type ID
KEY HierarchyTree hierarchytree Format Mapping Name
KEY HierarchyTreeVersion hierarchytreeversion Format Mapping Version
KEY DraftUUID draftuuid UUID
HierarchyTreeParametersStruc hierarchytreeparametersstruc Tree Parameters Structure
OutputStructureDelimiterType outputstructuredelimitertype Output Structure Delimiter Type
SegmentGroupDelimiterCharValue segmentgroupdelimitercharvalue Segment Group Delimiter Sign
SegmentDelimiterCharacterValue segmentdelimitercharactervalue Segment Delimiter Sign
CompositeDelimiterCharValue compositedelimitercharvalue Composite Delimiter Sign
DelimiterIsCompressed delimiteriscompressed Compress Delimiters
DelimiterEscapeCharacterValue delimiterescapecharactervalue Delimiter Escape Sign
HierarchyRootNode hierarchyrootnode Root Node
SgmtGrpIsCarriageRetSeparated sgmtgrpiscarriageretseparated Segment Group CR Separated
SegmentGrpIsLineFeedSeparated segmentgrpislinefeedseparated Segment Group LF Separated
SegmentIsCarriageRetSeparated segmentiscarriageretseparated Segment CR Separated
SegmentIsLineFeedSeparated segmentislinefeedseparated Segment LF Separated
AccompanyingSheetType accompanyingsheettype Accompanying Sheet Type
LastChangedByUser lastchangedbyuser User Name
LastChangeDate lastchangedate Time Stamp
LastChangeTime lastchangetime Time changed
SpecialHandlingCharacter specialhandlingcharacter Special Handling Character
SpecialHandlingCharacterIsExcl specialhandlingcharacterisexcl Exclude Special Handling Character
PostProcessingProgramName postprocessingprogramname Program for Post Processing
LengthIsBytes lengthisbytes Length in Bytes
DataReleaseRequestID datareleaserequestid Request ID
HierarchyTreeVersionType hierarchytreeversiontype Version Type
HierarchyTreeDraftUUID draftadministrativedatauuid UUID

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_DataMdmExchCustTreePrptyDrft.
-- 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.

CREATE VIEW I_DataMdmExchCustTreePrptyDrft AS
SELECT
  HierarchyTreeType,
  HierarchyTree,
  HierarchyTreeVersion,
  DraftUUID,
  HierarchyTreeParametersStruc,
  OutputStructureDelimiterType,
  SegmentGroupDelimiterCharValue,
  SegmentDelimiterCharacterValue,
  CompositeDelimiterCharValue,
  DelimiterIsCompressed,
  DelimiterEscapeCharacterValue,
  HierarchyRootNode,
  SgmtGrpIsCarriageRetSeparated,
  SegmentGrpIsLineFeedSeparated,
  SegmentIsCarriageRetSeparated,
  SegmentIsLineFeedSeparated,
  AccompanyingSheetType,
  LastChangedByUser,
  LastChangeDate,
  LastChangeTime,
  SpecialHandlingCharacter,
  SpecialHandlingCharacterIsExcl,
  PostProcessingProgramName,
  LengthIsBytes,
  DataReleaseRequestID,
  HierarchyTreeVersionType,
  draftadministrativedatauuid AS HierarchyTreeDraftUUID
FROM dmecr_tree_head
;