P_APPLICATIONCOMPONENT

CDS View

Application Component

P_APPLICATIONCOMPONENT is a CDS View in S/4HANA. Application Component. It contains 3 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_EntSrchCDSModelPckgCompDet view left_outer BASIC CDS View for Package and Application component details
P_CdsViewPkgAppComp view left_outer BASIC CDS Views Package and Application Component Info

Fields (3)

KeyField CDS FieldsUsed 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'