I_ProductStructureNode

DDL: I_PRODUCTSTRUCTURENODE SQL: IPRODSTRUCNODE Type: view BASIC

Product Structure Node

I_ProductStructureNode is a Basic CDS View that provides data about "Product Structure Node" in SAP S/4HANA. It reads from 1 data source (I_ProductStructureNodeBasic) and exposes 15 fields with key field ProductStructureNodeUUID. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductStructureNodeBasic _Node from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_ClfnClass _Class _Node.ClassInternalID = _Class.ClassInternalID
[0..1] I_ProdStrucLogAccMActive _ChangeMasterLogAccMActive _ChangeMasterLogAccMActive.LogAccMObjectType = 'PLM_PPEPF' or _ChangeMasterLogAccMActive.LogAccMObjectType = 'PLM_PPEPI'
[0..*] I_ProdStrucLogAccMSecureAssgmt _ChgMstrLogAccMSecureIDAssgmt $projection.ProductStructureNodeUniqueID = _ChgMstrLogAccMSecureIDAssgmt.LogAccMObjectID and $projection.ProductStructureGnrcObjType = _ChgMstrLogAccMSecureIDAssgmt.LogAccMObjectType
[0..*] I_ProdStrucLogAccMUserAuthzn _ProdStrucLogAccMUserAuthzn $projection.ProductStructureNodeUniqueID = _ProdStrucLogAccMUserAuthzn.LogAccMObjectID and $projection.ProductStructureGnrcObjType = _ProdStrucLogAccMUserAuthzn.LogAccMObjectType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPRODSTRUCNODE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ProductStructureNodeUUID view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Product Structure Node view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ProductStructureNode_2 view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY ProductStructureNodeUUID ProductStructureNodeUUID
ProductStructureNodeUniqueID
ProductStructureNodeName ProductStructureNodeName
ClassInternalID I_ProductStructureNodeBasic ClassInternalID
ProductStructureNodeType I_ProductStructureNodeBasic ProductStructureNodeType
ProductStructureGnrcObjType I_ProductStructureNodeBasic ProductStructureGnrcObjType
ProductStructureCreationDate ProductStructureCreationDate
ProductStructureCreatedByUser ProductStructureCreatedByUser
ProductStrucLastChangedDate ProductStrucLastChangedDate
ProductStrucLastChangedByUser ProductStrucLastChangedByUser
_Text _Text
_Class _Class
_ChangeMasterLogAccMActive _ChangeMasterLogAccMActive
_ChgMstrLogAccMSecureIDAssgmt _ChgMstrLogAccMSecureIDAssgmt
_ProdStrucLogAccMUserAuthzn _ProdStrucLogAccMUserAuthzn
@AbapCatalog.sqlViewName: 'IPRODSTRUCNODE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'ProductStructureNodeUUID'
//@ObjectModel.semanticKey: 'ProductStructureNode'


@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY ]

@EndUserText.label: 'Product Structure Node'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'I_ProductStructureNode_2'
//This CDS View will be deprecated, please use the new one I_ProductStructureNode_2

define view I_ProductStructureNode
  as select from I_ProductStructureNodeBasic as _Node
  association [0..1] to I_ClfnClass                as _Class on _Node.ClassInternalID = _Class.ClassInternalID
  association [0..1] to I_ProdStrucLogAccMActive  as _ChangeMasterLogAccMActive  on  _ChangeMasterLogAccMActive.LogAccMObjectType = 'PLM_PPEPF'
                                                                                or  _ChangeMasterLogAccMActive.LogAccMObjectType = 'PLM_PPEPI'
  association [0..*] to I_ProdStrucLogAccMSecureAssgmt as _ChgMstrLogAccMSecureIDAssgmt on  $projection.ProductStructureNodeUniqueID      = _ChgMstrLogAccMSecureIDAssgmt.LogAccMObjectID
                                                                                    and $projection.ProductStructureGnrcObjType = _ChgMstrLogAccMSecureIDAssgmt.LogAccMObjectType
  association [0..*] to I_ProdStrucLogAccMUserAuthzn  as _ProdStrucLogAccMUserAuthzn on  $projection.ProductStructureNodeUniqueID = _ProdStrucLogAccMUserAuthzn.LogAccMObjectID   //   I_ChangeMstrLogAccMUserAuthzn

                                                                                    and $projection.ProductStructureGnrcObjType   = _ProdStrucLogAccMUserAuthzn.LogAccMObjectType
{
      @ObjectModel.text.association: '_Text'
  key ProductStructureNodeUUID,
      bintohex( ProductStructureNodeUUID ) as ProductStructureNodeUniqueID,
      ProductStructureNodeName,
      _Node.ClassInternalID,
      _Node.ProductStructureNodeType,
      _Node.ProductStructureGnrcObjType,
      @Semantics.businessDate.at: true
      @Semantics.businessDate.createdAt: true
      ProductStructureCreationDate,
      @Semantics.user.createdBy: true
      ProductStructureCreatedByUser,
      @Semantics.businessDate.at: true
      @Semantics.businessDate.lastChangedAt: true
      ProductStrucLastChangedDate,
      @Semantics.user.lastChangedBy: true
      ProductStrucLastChangedByUser,
      _Text,
      _Class,
      //_LogAccMObjSecureIDAssgmt.LogAccMObjectID,

      _ChangeMasterLogAccMActive,
      _ChgMstrLogAccMSecureIDAssgmt,
      _ProdStrucLogAccMUserAuthzn
}