P_ApplicationComponent

DDL: P_APPLICATIONCOMPONENT SQL: PAPPLCOMP Type: view BASIC Package: S_ESH_MSM

Application Component

P_ApplicationComponent is a Basic 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. Part of development package S_ESH_MSM.

Data Sources (1)

SourceAliasJoin Type
df14l df14l from

Associations (1)

CardinalityTargetAliasCondition
[1..*] P_ApplicationComponentText _Text $projection.ApplicationComponent = _Text.ApplicationComponent

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PAPPLCOMP 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 df14l fctr_id
ApplicationComponentName df14l ps_posid
ApplicationComponentText
@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'