I_EntProjectLongText

DDL: I_ENTPROJECTLONGTEXT SQL: IENTPROJLTXT Type: view BASIC

Enterprise Project Description

I_EntProjectLongText is a Basic CDS View that provides data about "Enterprise Project Description" in SAP S/4HANA. It reads from 1 data source (I_PPM_Task) and exposes 2 fields with key field ProjectUUID.

Data Sources (1)

SourceAliasJoin Type
I_PPM_Task ProjectElement from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IENTPROJLTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ProjectUUID view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Enterprise Project Description view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID I_PPM_Task ProjectUUID
LongText LongText longtext_string
@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'