I_ENTPROJECTPROFILECODETEXT
Project Profile Description
I_ENTPROJECTPROFILECODETEXT is a CDS View in S/4HANA. Project Profile Description. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_EntProjectProfileCodeText | view_entity | projection | COMPOSITE | Project Profile Description |
@AbapCatalog.sqlViewName: 'IENTPOJPROFCODET'
@EndUserText.label: 'Project Profile Description'
@ObjectModel.representativeKey: 'ProjectProfileCode'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
define view I_EntProjectProfileCodeText
as select from I_ProjectProfileCodeText
association to parent I_EntProjectProfileCode as _ProjectProfileCode
on $projection.ProjectProfileCode = _ProjectProfileCode.ProjectProfileCode
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key Language as Language,
@ObjectModel.foreignKey.association: '_ProjectProfileCode'
@ObjectModel.text.element: ['ProjectProfileCode']
key ProjectProfileCode as ProjectProfileCode,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
ProjectProfileCodeText as ProjectProfileCodeText,
_ProjectProfileCode,
_Language
}