I_ProjectStructureHierarchy
Project Structure Hierarchy
I_ProjectStructureHierarchy is a Basic CDS View that provides data about "Project Structure Hierarchy" in SAP S/4HANA. It reads from 1 data source (proj_struc_hier) and exposes 3 fields with key field ProjectStructureHierarchy.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| proj_struc_hier | proj_struc_hier | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPROJSTRUCHIER | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | ProjectStructureHierarchy | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Project Structure Hierarchy | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectStructureHierarchy | hryid | ||
| LastChangedByUser | upduser | |||
| LastChangeTime | updtime |
@AbapCatalog.sqlViewName: 'IPROJSTRUCHIER'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'ProjectStructureHierarchy'
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Project Structure Hierarchy'
define view I_ProjectStructureHierarchy
as select from proj_struc_hier
{
key hryid as ProjectStructureHierarchy,
@Semantics.user.lastChangedBy: true
upduser as LastChangedByUser,
@Semantics.systemDateTime.lastChangedAt: true
updtime as LastChangeTime
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PROJ_STRUC_HIER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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