Application_Component

DDL: APPLICATION_COMPONENT SQL: APPLCOMP Type: view

Application Component

Application_Component is a CDS View that provides data about "Application Component" in SAP S/4HANA. It reads from 1 data source (df14l) and exposes 3 fields with key field ApplicationComponent. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
df14l df14l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] Application_Component_Text _Text $projection.ApplicationComponent = _Text.ApplicationComponent

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName APPLCOMP view
EndUserText.label Application Component view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ApplicationComponent df14l fctr_id
ApplicationComponentName df14l ps_posid
_Text _Text
@AbapCatalog.sqlViewName: 'APPLCOMP'
@EndUserText.label: 'Application Component'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality:  #C
@ObjectModel.usageType.sizeCategory:  #M
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Application_Component as select from df14l 
association [0..*] to Application_Component_Text as _Text on $projection.ApplicationComponent = _Text.ApplicationComponent {
  key df14l.fctr_id as ApplicationComponent,
  df14l.ps_posid as ApplicationComponentName,
  _Text
} where df14l.as4local = 'A' 
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DF14L"
],
"ASSOCIATED":
[
"APPLICATION_COMPONENT_TEXT"
],
"BASE":
[],
"VERSION":0
}
}*/