| Key | Field |
CDS Fields | Used in Views |
|
ApplicationComponent |
ApplicationComponent |
1 |
|
ApplicationComponentName |
ApplicationComponentName,EntSrchModelApplComponent |
2 |
|
ApplicationComponentText |
ApplicationComponentText,EntSrchModelApplComponentText |
2 |
@AbapCatalog.sqlViewName: 'PAPPLCOMP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'Application Component'
@ClientHandling.type: #CLIENT_INDEPENDENT
@ClientHandling.algorithm: #NONE
@VDM.private: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #P
define view P_ApplicationComponent
as select from df14l
association [1..*] to P_ApplicationComponentText as _Text on $projection.ApplicationComponent = _Text.ApplicationComponent
{
key df14l.fctr_id as ApplicationComponent,
df14l.ps_posid as ApplicationComponentName,
_Text[ 1: Language = $session.system_language ].ApplicationComponentText as ApplicationComponentText
}
where
df14l.as4local = 'A'