P_PPM_DOMAINVALUETEXT
Access to Domain Value Texts for PPM
P_PPM_DOMAINVALUETEXT is a CDS View in S/4HANA. Access to Domain Value Texts for PPM. It contains 3 fields. 4 CDS views read from this table.
CDS Views using this table (4)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_EntProjRankingProcgStatusTxt | view | from | BASIC | Ranking Processing Status Texts |
| I_PPM_AmountTypeText | view | from | BASIC | Amount Types Text |
| I_PPM_ProjectRoleTypeCatText | view | from | BASIC | Project Role Type Category Text |
| I_PPM_ProjProcessingStsTxt | view | from | BASIC | Project Processing Status Texts |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | ddlanguage | LanguageCode | 2 |
| KEY | domvalue_l | ProcessingStatus,ProjectRoleCategory | 3 |
| ddtext | ProcessingStatusText,ProjectRoleCategoryText | 3 |
@AbapCatalog.sqlViewName: 'PPPMDOMAINVALUET'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel: {
// dataCategory: #TEXT,
usageType: {
serviceQuality: #A,
dataClass: #MASTER,
sizeCategory: #S
}
}
@Search.searchable: true
// @EndUserText.label: 'Access to Domain Value Texts for PPM'
define view P_PPM_DomainValueText as select from dd07t as text
{
key text.domname,
@Semantics.language: true
key text.ddlanguage,
key text.as4local,
key text.valpos,
key text.as4vers,
@Semantics.text: true
@Search: {
defaultSearchElement: true,
ranking: #HIGH
}
text.ddtext,
text.domval_ld,
text.domval_hd,
text.domvalue_l
}