I_PPM_ProjProcessingStsTxt

DDL: I_PPM_PROJPROCESSINGSTSTXT SQL: IPPMPROPRCSTSTXT Type: view BASIC

Project Processing Status Texts

I_PPM_ProjProcessingStsTxt is a Basic CDS View that provides data about "Project Processing Status Texts" in SAP S/4HANA. It reads from 1 data source (P_PPM_DomainValueText) and exposes 3 fields with key fields LanguageCode, ProcessingStatus.

Data Sources (1)

SourceAliasJoin Type
P_PPM_DomainValueText text from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPPMPROPRCSTSTXT 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
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProcessingStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
EndUserText.label Project Processing Status Texts view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LanguageCode P_PPM_DomainValueText ddlanguage
KEY ProcessingStatus P_PPM_DomainValueText domvalue_l
ProcessingStatusText P_PPM_DomainValueText ddtext
@AbapCatalog.sqlViewName: 'IPPMPROPRCSTSTXT'
@AbapCatalog.compiler.compareFilter: true

@ClientHandling.algorithm: #SESSION_VARIABLE  

@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED

@VDM.viewType: #BASIC

@ObjectModel: {
   dataCategory: #TEXT,
   representativeKey:  'ProcessingStatus',
   usageType: {
     serviceQuality:  #A,
     dataClass:       #MASTER,
     sizeCategory:    #S
    }
}

@Search.searchable: true

@EndUserText.label: 'Project Processing Status Texts'
@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API 

define view I_PPM_ProjProcessingStsTxt as select from P_PPM_DomainValueText as text {
      @Semantics.language: true
      @UI.hidden: true
  key text.ddlanguage as LanguageCode,
      @UI.hidden: true    
      @ObjectModel.text.element: 'ProcessingStatusText'
  key text.domvalue_l as ProcessingStatus,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      text.ddtext as ProcessingStatusText

} where ( domname = 'DPR_PROC_STATUS' )
    and ( as4local = 'A' )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_PPM_DOMAINVALUETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/