I_SerialNumberWithStkSgmtVH

DDL: I_SERIALNUMBERWITHSTKSGMTVH Type: view BASIC

Help-View for serial numbers

I_SerialNumberWithStkSgmtVH is a Basic 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.

Data Sources (1)

SourceAliasJoin Type
I_Equipment I_Equipment from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMMIMSERNRVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Help-View for serial numbers view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE 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
@AbapCatalog: {
                    sqlViewName: 'IMMIMSERNRVH',
                    compiler.compareFilter: true,
                    preserveKey: true
              }

@EndUserText.label: 'Help-View for serial numbers'

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

@VDM.viewType: #BASIC

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

                dataCategory:#VALUE_HELP
              }

@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true

define view 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'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EQUIPMENT"
],
"ASSOCIATED":
[
"I_CUSTOMER",
"I_MATERIAL",
"I_SUPPLIER"
],
"BASE":
[
"I_EQUIPMENT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/