Cds_Application_Component

DDL: CDS_APPLICATION_COMPONENT SQL: CDSAPPLCOMP Type: view

CDS Application Component

Cds_Application_Component is a CDS View that provides data about "CDS Application Component" in SAP S/4HANA. It reads from 2 data sources (tadir, tdevc) and exposes 3 fields with key fields ObjectName, ApplicationComponent. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
tadir tadir from
tdevc tdevc inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] Application_Component _ApplComp $projection.ApplicationComponent = _ApplComp.ApplicationComponent

Annotations (5)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ObjectName tadir obj_name
KEY ApplicationComponent tdevc component
_ApplComp _ApplComp
@AbapCatalog.sqlViewName: 'CDSAPPLCOMP'
@EndUserText.label: 'CDS Application Component'
@ObjectModel.usageType.serviceQuality:  #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Cds_Application_Component as select from tadir 
inner join tdevc on tadir.devclass = tdevc.devclass and tadir.object = 'DDLS'
association [1..1] to Application_Component as _ApplComp on $projection.ApplicationComponent = _ApplComp.ApplicationComponent {
  key tadir.obj_name as ObjectName,
  key tdevc.component as ApplicationComponent,
  _ApplComp
}