I_CommodityCustomer

DDL: I_COMMODITYCUSTOMER SQL: ICMMDTYCUSTMSTER Type: view BASIC Package: LOG_CMM_PRC_CMMDTY_QTY_CUST

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. Part of development package LOG_CMM_PRC_CMMDTY_QTY_CUST.

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
}