P_ApplicationComponentText

DDL: P_APPLICATIONCOMPONENTTEXT SQL: PAPPLCOMPNTTEXT Type: view BASIC

P_ApplicationComponentText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (df14t) and exposes 3 fields with key fields ApplicationComponent, Language.

Data Sources (1)

SourceAliasJoin Type
df14t df14t from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PAPPLCOMPNTTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #CLIENT_INDEPENDENT view
ClientHandling.algorithm #NONE view
VDM.private true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #P view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ApplicationComponent df14t fctr_id
KEY Language df14t langu
ApplicationComponentText df14t name
@AbapCatalog.sqlViewName: 'PAPPLCOMPNTTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'Application Component Text'


@ClientHandling.type: #CLIENT_INDEPENDENT
@ClientHandling.algorithm: #NONE
 
@VDM.private: true
@VDM.viewType: #BASIC

@ObjectModel.usageType.serviceQuality: #P

define view P_ApplicationComponentText as select from df14t {  
  key df14t.fctr_id as ApplicationComponent,
  key df14t.langu as Language,
  df14t.name as ApplicationComponentText
} where df14t.as4local = 'A'