E_Customer
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)
| Source | Alias | Join Type |
|---|---|---|
| kna1 | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA