I_CustomCDSViewAccProtection

DDL: I_CUSTOMCDSVIEWACCPROTECTION SQL: APS_CCV_I_VAP Type: view BASIC Package: SAPS_CCV_DB

Custom CDS View Access Protection

I_CustomCDSViewAccProtection is a Basic CDS View that provides data about "Custom CDS View Access Protection" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field AccessProtection. Part of development package SAPS_CCV_DB.

Data Sources (2)

SourceAliasJoin Type
dd07l dd07l from
dd07t text left_outer

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AccessProtection view
AbapCatalog.sqlViewName APS_CCV_I_VAP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Custom CDS View Access Protection view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AccessProtection
AccessProtectionText dd07t ddtext
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'AccessProtection'
@AbapCatalog.sqlViewName: 'APS_CCV_I_VAP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.dataClass: #META
@ObjectModel : { resultSet.sizeCategory: #XS }
@EndUserText.label: 'Custom CDS View Access Protection'
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
define view I_CustomCDSViewAccProtection
  as select from dd07l
    left outer join   dd07t as text on  text.domname    = dd07l.domname
                               and text.as4local   = dd07l.as4local
                               and text.as4vers    = dd07l.as4vers
                               and text.valpos     = dd07l.valpos
                               and text.ddlanguage = $session.system_language

{
      @ObjectModel.text.element: ['AccessProtectionText']
  key substring(dd07l.domvalue_l, 1, 1)     as AccessProtection,
      @Semantics.text:true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      text.ddtext                           as AccessProtectionText
}
where
      dd07l.domname  = 'APS_CKGE_ACCESS_PROT'
  and dd07l.as4local = 'A';