I_ABAPApplicationComponent

DDL: I_ABAPAPPLICATIONCOMPONENT Type: view_entity BASIC Package: SDFM

ABAP Application Component

I_ABAPApplicationComponent is a Basic CDS View that provides data about "ABAP Application Component" in SAP S/4HANA. It reads from 1 data source (df14l) and exposes 11 fields with key field ABAPApplicationComponent. It has 1 association to related views. Part of development package SDFM.

Data Sources (1)

SourceAliasJoin Type
df14l df14l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ABAPApplCompText _Text

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ABAP Application Component view
VDM.viewType #BASIC view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey ABAPApplicationComponent view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ABAPApplicationComponent fctr_id
ABAPApplCompRespUser fstuser
CreationDate fstdate
CreationTime fsttime
LastChangedByUser lstuser
LastChangeDate lstdate
LastChangeTime lsttime
ABAPApplCompExternalID ps_posid
ABAPApplCompIsVisible visible
ABAPApplCompIsSelectable selectable
_Text _Text
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABAP Application Component'
@VDM.viewType: #BASIC
@ObjectModel.compositionRoot: true
@ObjectModel.representativeKey: 'ABAPApplicationComponent'
define root view entity I_ABAPApplicationComponent
  as select from df14l
  composition [0..*] of I_ABAPApplCompText as _Text 
{
      @ObjectModel.text.association: '_Text'
  key fctr_id    as ABAPApplicationComponent,
      fstuser    as ABAPApplCompRespUser,
      fstdate    as CreationDate,
      fsttime    as CreationTime,
      lstuser    as LastChangedByUser,
      lstdate    as LastChangeDate,
      lsttime    as LastChangeTime,
      ps_posid   as ABAPApplCompExternalID,
      visible    as ABAPApplCompIsVisible,
      selectable as ABAPApplCompIsSelectable,
      // @ObjectModel.association.type: [#TO_COMPOSITION_CHILD] -- no more needed

      _Text
}
where
  as4local = 'A' and
  synch   <> 'D'