I_ENTPROJELMNTLONGTEXT
Enterprise Project Element Description
I_ENTPROJELMNTLONGTEXT is a CDS View in S/4HANA. Enterprise Project Element Description. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_EntProjElmntLongTextTP | view | from | TRANSACTIONAL | Long Text on Project Task Level |
@AbapCatalog.sqlViewName: 'IENTELMNTLTXT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType:
{
serviceQuality: #C,
dataClass: #TRANSACTIONAL,
sizeCategory: #L
}
@AbapCatalog.preserveKey:true
@ObjectModel.representativeKey: 'TaskUUID'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Enterprise Project Element Description'
define view I_EntProjElmntLongText as select from I_PPM_Task as Task
left outer to one join /s4ppm/longtext as TaskLongText
on Task.TaskUUID = TaskLongText.referenceobjectuuid
{
key Task.TaskUUID as TaskUUID,
Task.ProjectUUID as ProjectUUID,
TaskLongText.longtext_string as LongText
}
where ObjectType <> 'DPO'