I_ProductStructureNode_2
Product Structure Node
I_ProductStructureNode_2 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)
| Source | Alias | Join Type |
|---|---|---|
| I_ProductStructureNodeBasic | _Node | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ClfnClass | _Class | _Node.ClassInternalID = _Class.ClassInternalID |
| [0..1] | I_ProdStrucLogAccMActive | _ProdStrucLogAccMActive | $projection.ProductStructureGnrcObjType = _ProdStrucLogAccMActive.LogAccMObjectType |
| [0..*] | I_ProdStrucLogAccMSecureAssgmt | _ProdStrucSecureIDAssgmt | $projection.ProductStructureNodeUniqueID = _ProdStrucSecureIDAssgmt.LogAccMObjectID and _ProdStrucSecureIDAssgmt.LogAccMObjectType = _Node.ProductStructureGnrcObjType |
| [0..*] | I_ProdStrucLogAccMUserAuthzn | _ProdStrucLogAccMUserAuthzn | $projection.ProductStructureNodeUniqueID = _ProdStrucLogAccMUserAuthzn.LogAccMObjectID and $projection.ProductStructureGnrcObjType = _ProdStrucLogAccMUserAuthzn.LogAccMObjectType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPSNODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.preserveKey | true | 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 |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductStructureNodeUUID | ProductStructureNodeUUID | ||
| ProductStructureNodeUniqueID | 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 | |||
| _ProdStrucLogAccMActive | _ProdStrucLogAccMActive | |||
| _ProdStrucSecureIDAssgmt | _ProdStrucSecureIDAssgmt | |||
| _ProdStrucLogAccMUserAuthzn | _ProdStrucLogAccMUserAuthzn |
@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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA