I_SerialNumberWithStkSgmtVH

DDL: I_SERIALNUMBERWITHSTKSGMTVH Type: view_entity COMPOSITE Package: VDM_EAM_EQUIPMENT

Help-View for serial numbers

I_SerialNumberWithStkSgmtVH is a Composite CDS View that provides data about "Help-View for serial numbers" in SAP S/4HANA. It reads from 1 data source (I_Equipment) and exposes 9 fields with key fields SerialNumber, Material, Equipment. Part of development package VDM_EAM_EQUIPMENT.

Data Sources (1)

SourceAliasJoin Type
I_Equipment I_Equipment from

Annotations (9)

NameValueLevelField
EndUserText.label Help-View for serial numbers view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SerialNumber SerialNumber
KEY Material Material
KEY Equipment Equipment
AuthorizationGroup AuthorizationGroup
Customer Customer
Supplier Supplier
_Customer _Customer
_Supplier _Supplier
_Material _Material
@EndUserText.label: 'Help-View for serial numbers'

@AccessControl: {
                    authorizationCheck: #CHECK,
                    personalData.blocking:#NOT_REQUIRED
                }

@VDM.viewType: #COMPOSITE

@ObjectModel: {
                usageType: {
                                sizeCategory: #L,
                                serviceQuality: #B,
                                dataClass:#MASTER
                            },

                dataCategory:#VALUE_HELP
              }

@Search.searchable: true


define view entity I_SerialNumberWithStkSgmtVH
  as select from I_Equipment
{
        @Search.defaultSearchElement: true
        @Search.fuzzinessThreshold: 0.8
  key   SerialNumber,
  key   Material,
        @UI.hidden: true
  key   Equipment,
  
        @Consumption.hidden: true
        AuthorizationGroup,
        @Consumption.hidden: true
        Customer,
        @Consumption.hidden: true
        Supplier,
        
        /* Associations */
        @Consumption.hidden: true
        _Customer,
        @Consumption.hidden: true
        _Supplier,
        @Consumption.hidden: true
        _Material
}
where
      SerialNumber                 <> ' '
  and EquipmentHasStockInformation =  'X'