I_PRODUCTSTRUCTURENODE_2
Product Structure Node
I_PRODUCTSTRUCTURENODE_2 is a CDS View in S/4HANA. Product Structure Node. It contains 7 fields. 3 CDS views read from this table.
CDS Views using this table (3)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_ProductStructureNode_2 | view | from | COMPOSITE | Read Nodes |
| C_ProdStrucNode | view | from | CONSUMPTION | Product Structure Node List |
| I_ProductStructureNodeVariant | view | from | COMPOSITE | Product Structure Node Variant |
Fields (7)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| ProductStrucLastChangedByUser | ProductStrucLastChangedByUser | 1 | |
| ProductStrucLastChangedDate | ProductStrucLastChangedDate | 1 | |
| ProductStructureCreatedByUser | ProductStructureCreatedByUser | 1 | |
| ProductStructureCreationDate | ProductStructureCreationDate | 1 | |
| ProductStructureGnrcObjType | ProductStructureGnrcObjType | 2 | |
| ProductStructureNodeType | ProductStructureNodeType | 1 | |
| ProductStructureNodeUniqueID | ProductStructureNodeUniqueID | 1 |
@AbapCatalog.sqlViewName: 'IPSNODE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'ProductStructureNodeUUID'
@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
define view I_ProductStructureNode_2
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 _ProdStrucLogAccMActive on $projection.ProductStructureGnrcObjType = _ProdStrucLogAccMActive.LogAccMObjectType
association [0..*] to I_ProdStrucLogAccMSecureAssgmt as _ProdStrucSecureIDAssgmt on $projection.ProductStructureNodeUniqueID = _ProdStrucSecureIDAssgmt.LogAccMObjectID
and _ProdStrucSecureIDAssgmt.LogAccMObjectType = _Node.ProductStructureGnrcObjType
association [0..*] to I_ProdStrucLogAccMUserAuthzn as _ProdStrucLogAccMUserAuthzn on $projection.ProductStructureNodeUniqueID = _ProdStrucLogAccMUserAuthzn.LogAccMObjectID
and $projection.ProductStructureGnrcObjType = _ProdStrucLogAccMUserAuthzn.LogAccMObjectType
{
@ObjectModel.text.association: '_Text'
key ProductStructureNodeUUID,
//bintohex( ProductStructureNodeUUID ) as ProductStructureNodeUniqueID,
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,
_ProdStrucLogAccMActive,
_ProdStrucSecureIDAssgmt,
_ProdStrucLogAccMUserAuthzn
}