E_Customer

DDL: E_CUSTOMER SQL: ECUSTOMER Type: view EXTENSION

Extensibility Customer Core

E_Customer is a Extension CDS View that provides data about "Extensibility Customer Core" in SAP S/4HANA. It reads from 1 data source (kna1) and exposes 2 fields with key field Customer.

Data Sources (1)

SourceAliasJoin Type
kna1 Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ECUSTOMER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #EXTENSION view
EndUserText.label Extensibility Customer Core view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Customer kna1 kunnr
IsActiveEntity
@AbapCatalog.sqlViewName: 'ECUSTOMER'
@AbapCatalog.compiler.compareFilter: true
//@AccessControl.authorizationCheck: #NOT_ALLOWED

@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #EXTENSION
@EndUserText.label: 'Extensibility Customer Core'

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
define view E_Customer
  as select from kna1 as Persistence
{
  key Persistence.kunnr                                                    as Customer,
      cast( 'X' as sdraft_is_active preserving type )                      as IsActiveEntity

}