Application_Component_Text

DDL: APPLICATION_COMPONENT_TEXT SQL: APPLCOMPTEXT Type: view

Application Component Description

Application_Component_Text is a CDS View that provides data about "Application Component Description" 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 (5)

NameValueLevelField
AbapCatalog.sqlViewName APPLCOMPTEXT view
EndUserText.label Application Component Description view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ApplicationComponent df14t fctr_id
KEY Language df14t langu
ApplicationComponentText df14t name
@AbapCatalog.sqlViewName: 'APPLCOMPTEXT'
@EndUserText.label: 'Application Component Description'
@ObjectModel.usageType.serviceQuality:  #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Application_Component_Text as select from df14t {  
  key df14t.fctr_id as ApplicationComponent,
  key df14t.langu as Language,
  df14t.name as ApplicationComponentText
} where df14t.as4local = 'A' 
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DF14T"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/