E_CUSCO_D

DDL: E_CUSCO_D SQL: ECUSCOC Type: view EXTENSION Package: VDM_MD_BP

Extensibility Customer Company Code Core

E_CUSCO_D is a Extension CDS View that provides data about "Extensibility Customer Company Code Core" in SAP S/4HANA. It reads from 1 data source (knb1) and exposes 3 fields with key fields Customer, CompanyCode. Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
knb1 Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ECUSCOC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #EXTENSION view
EndUserText.label Extensibility Customer Company Code Core view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Customer knb1 kunnr
KEY CompanyCode knb1 bukrs
IsActiveEntity
@AbapCatalog.sqlViewName: 'ECUSCOC'
//@AccessControl.authorizationCheck: #NOT_ALLOWED

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

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
define view E_CUSCO_D
  as select from knb1 as Persistence
{
  key Persistence.kunnr                               as Customer,
  key Persistence.bukrs                               as CompanyCode,
      cast( 'X' as sdraft_is_active preserving type ) as IsActiveEntity
}