I_MDPropertyToNodeType

DDL: I_MDPROPERTYTONODETYPE SQL: IMDPRPTYNTYPE Type: view BASIC

Master Data Property To Node Type

I_MDPropertyToNodeType is a Basic CDS View that provides data about "Master Data Property To Node Type" in SAP S/4HANA. It reads from 1 data source (hpnodetypeattr) and exposes 9 fields with key fields MasterDataNodeType, MasterDataProperty. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
hpnodetypeattr hpnodetypeattr from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_MasterDataNodeType _MasterDataNodeType $projection.MasterDataNodeType = _MasterDataNodeType.MasterDataNodeType
[1..1] I_MasterDataProperty _MasterDataProperty $projection.MasterDataProperty = _MasterDataProperty.MasterDataProperty

Annotations (10)

NameValueLevelField
EndUserText.label Master Data Property To Node Type view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IMDPRPTYNTYPE view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey MasterDataProperty view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY MasterDataNodeType node_type Type
KEY MasterDataProperty attribute_name Element
MDPrptyIsDisplayRelevant display_relevant Display Relevant
MDPrptyDisplaySequenceNumber attribute_seqno Sequence No.
MDNodeCDSPropertyAttribField value_fname Value Field Name
MDNodeCDSPrptyAttribTextField valuetxt_fname ValTxt. Field Name
MasterDataNodeCDSLangField langu_fname Lang. Field Name
_MasterDataNodeType _MasterDataNodeType
_MasterDataProperty _MasterDataProperty

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_MDPropertyToNodeType.
-- 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: IMDPRPTYNTYPE

CREATE VIEW I_MDPropertyToNodeType AS
SELECT
  node_type AS MasterDataNodeType,
  attribute_name AS MasterDataProperty,
  display_relevant AS MDPrptyIsDisplayRelevant,
  attribute_seqno AS MDPrptyDisplaySequenceNumber,
  value_fname AS MDNodeCDSPropertyAttribField,
  valuetxt_fname AS MDNodeCDSPrptyAttribTextField,
  langu_fname AS MasterDataNodeCDSLangField
FROM hpnodetypeattr
LEFT OUTER JOIN I_MasterDataNodeType AS _MasterDataNodeType ON MasterDataNodeType = _MasterDataNodeType.MasterDataNodeType  -- association [1..1]
LEFT OUTER JOIN I_MasterDataProperty AS _MasterDataProperty ON MasterDataProperty = _MasterDataProperty.MasterDataProperty  -- association [1..1]
;