I_ChmlCmplncApplication

DDL: I_CHMLCMPLNCAPPLICATION Type: view BASIC

Application

I_ChmlCmplncApplication is a Basic CDS View that provides data about "Application" in SAP S/4HANA. It reads from 1 data source (ehfndc_applic) and exposes 2 fields with key field ChmlCmplncApplication. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ehfndc_applic ehfndc_applic from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ApplicationText _Text $projection.ChmlCmplncApplication = _Text.ChmlCmplncApplication

Annotations (11)

NameValueLevelField
EndUserText.label Application view
AbapCatalog.sqlViewName ICCAPPL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ChmlCmplncApplication view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncApplication
_Text _Text
--Label of view
@EndUserText.label: 'Application'

@AbapCatalog:
{
  -- SQL view name (16 characters)
  sqlViewName: 'ICCAPPL',

  --If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
  compiler.compareFilter: true,
  preserveKey: true
}

--Access Control: Authorizations Checks
@AccessControl:
{
  // no authorization check required because view only reads customizing for which a check is not needed

  authorizationCheck: #NOT_REQUIRED
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM view type
@VDM.viewType: #BASIC

@ObjectModel:
{
  --Performance Annotations
  usageType:
  {
    dataClass: #CUSTOMIZING,
    sizeCategory: #S,
    serviceQuality: #B
  },
  representativeKey: 'ChmlCmplncApplication'
}

define view I_ChmlCmplncApplication
  --Select data from customizing table 'Application'
  as select from ehfndc_applic

  --Text association
  association [0..*] to I_ApplicationText as _Text on $projection.ChmlCmplncApplication = _Text.ChmlCmplncApplication
{
      @ObjectModel.text.association: '_Text'
  key cast( application as ehfnd_cci_application_nce preserving type ) as ChmlCmplncApplication,


      /*Association*/
      _Text
}