I_CommodityCustomer

DDL: I_COMMODITYCUSTOMER SQL: ICMMDTYCUSTMSTER Type: view BASIC

Customer Master for Commodities

I_CommodityCustomer is a Basic CDS View that provides data about "Customer Master for Commodities" in SAP S/4HANA. It reads from 1 data source (I_Customer) and exposes 6 fields with key field Customer.

Data Sources (1)

SourceAliasJoin Type
I_Customer I_Customer from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYCUSTMSTER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Customer Master for Commodities view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer
Country Country
CustomerName CustomerName
AuthorizationGroup AuthorizationGroup
DeletionIndicator DeletionIndicator
IsBusinessPurposeCompleted IsBusinessPurposeCompleted
@AbapCatalog.sqlViewName: 'ICMMDTYCUSTMSTER'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #XL,
  dataClass: #MIXED
}
@VDM.viewType: #BASIC
@ClientHandling.algorithm : #SESSION_VARIABLE
@EndUserText.label: 'Customer Master for Commodities'
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@Search.searchable: true
define view I_CommodityCustomer

  as select from I_Customer
{
  key Customer,

      Country,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      CustomerName,

      AuthorizationGroup,

      DeletionIndicator,

      IsBusinessPurposeCompleted
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CUSTOMER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/