I_MASTERPROJECTPPMOBJECT
CProject Higher Level Nodes
I_MASTERPROJECTPPMOBJECT is a CDS View in S/4HANA. CProject Higher Level Nodes. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_CProjectItem | view | inner | BASIC | CProject Item |
@AbapCatalog.sqlViewName: 'IMSTRPPMPROOBJ'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'CProject Higher Level Nodes'
@VDM.viewType: #BASIC
define view I_MasterProjectPpmObject
as select from /s4ppm/hierarchy as hier
inner join /s4ppm/task as task on task.project_guid = hier.root_object_guid
{
cast(bintohex(hier.object_guid) as iaom_ext_object_id) as ExternalObjectIdentifier,
cast(bintohex(task.guid) as iaom_ext_object_id) as ExternalProjectTaskIdentifier,
task.technical_id as ObjectTechnicalIdentifier,
task.external_id as ObjectExternalIdentifier,
task.object_type as ObjectType,
task.project_guid as ProjectTaskUUID
}