P_PPM_DomainValueText

DDL: P_PPM_DOMAINVALUETEXT SQL: PPPMDOMAINVALUET Type: view BASIC Package: VDM_PPM_OBJECTS_COMMON

Access to Domain Value Texts for PPM

P_PPM_DomainValueText is a Basic CDS View that provides data about "Access to Domain Value Texts for PPM" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 9 fields with key fields domname, ddlanguage, as4local, valpos, as4vers. Part of development package VDM_PPM_OBJECTS_COMMON.

Data Sources (1)

SourceAliasJoin Type
dd07t text from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PPPMDOMAINVALUET view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY domname dd07t domname
KEY ddlanguage dd07t ddlanguage
KEY as4local dd07t as4local
KEY valpos dd07t valpos
KEY as4vers dd07t as4vers
ddtext dd07t ddtext
domval_ld dd07t domval_ld
domval_hd dd07t domval_hd
domvalue_l dd07t domvalue_l
@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
}