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