I_MaterialSerialNumberVH

DDL: I_MATERIALSERIALNUMBERVH SQL: IE_MSNVH Type: view COMPOSITE

Material Serial Number

I_MaterialSerialNumberVH is a Composite CDS View that provides data about "Material Serial Number" in SAP S/4HANA. It reads from 1 data source (I_Equipment) and exposes 11 fields with key field Equipment. It is exposed through 1 OData service (EAM_MATERIALSERIALNUMBER).

Data Sources (1)

SourceAliasJoin Type
I_Equipment I_Equipment from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IE_MSNVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
Search.searchable true view
ObjectModel.representativeKey Equipment view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Material Serial Number view

OData Services (1)

ServiceBindingVersionContractRelease
EAM_MATERIALSERIALNUMBER EAM_SB_MATERIALSERIALNUMBER V4 C1 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Equipment Equipment
Material Material
SerialNumber SerialNumber
UniqueItemIdentifier UniqueItemIdentifier
_EquipmentText _EquipmentText
Customer Customer
Supplier Supplier
AuthorizationGroup AuthorizationGroup
HasEquipmentData HasEquipmentData
_Customer _Customer
_Supplier _Supplier
@AbapCatalog.sqlViewName: 'IE_MSNVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP
@Consumption.ranked: true    // Optimize Type ahead for value helps - 2302

@Search: {
  searchable: true
}                           // Optimize Type ahead for value helps - 2302

@ObjectModel.representativeKey: 'Equipment'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L


@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_EquipmentText']

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Material Serial Number'

define view I_MaterialSerialNumberVH
  as select from I_Equipment
{
      @ObjectModel.text.association: '_EquipmentText'
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}  // Optimize Type ahead for value helps - 2302

      @Consumption.valueHelpDefault.binding.usage:#FILTER // Optimize Type ahead for value helps - 2302

  key Equipment,
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      Material,
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Consumption.valueHelpDefault.binding.usage:#FILTER
      SerialNumber,
      @UI.hidden: true
      //@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}

      UniqueItemIdentifier,
      _EquipmentText,
      @Consumption.hidden: true
      Customer,
      @Consumption.hidden: true
      Supplier,
      @Consumption.hidden: true
      AuthorizationGroup,
      @Consumption.hidden: true
      HasEquipmentData,

      @Consumption.hidden: true
      _Customer,
      @Consumption.hidden: true
      _Supplier
}
where
  SerialNumber <> ''