I_AvailMaterialSerialNumberVH

DDL: I_AVAILMATERIALSERIALNUMBERVH Type: view COMPOSITE Package: MPE_EXEC_SFI

Available Material Serial Number

I_AvailMaterialSerialNumberVH is a Composite CDS View that provides data about "Available Material Serial Number" in SAP S/4HANA. It reads from 1 data source (I_Equipment) and exposes 11 fields with key field Equipment. Part of development package MPE_EXEC_SFI.

Data Sources (1)

SourceAliasJoin Type
I_Equipment sn from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IAMSNVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Available Material Serial Number view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Equipment view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Equipment I_Equipment Equipment Equipment check
Material I_Equipment Material Vehicle Model
SerialNumber I_Equipment SerialNumber Serial Number
UniqueItemIdentifier I_Equipment UniqueItemIdentifier UII
ManufacturerSerialNumber I_Equipment ManufacturerSerialNumber Mnf.serial no.
_EquipmentText I_Equipment _EquipmentText
Customer I_Equipment Customer Sold-to Party
Supplier I_Equipment Supplier Supplier
AuthorizationGroup I_Equipment AuthorizationGroup AuthorizGroup
_Customer I_Equipment _Customer
_Supplier I_Equipment _Supplier

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_AvailMaterialSerialNumberVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_AvailMaterialSerialNumberVH AS
SELECT
  sn.Equipment AS Equipment,
  sn.Material AS Material,
  sn.SerialNumber AS SerialNumber,
  sn.UniqueItemIdentifier AS UniqueItemIdentifier,
  sn.ManufacturerSerialNumber AS ManufacturerSerialNumber,
  sn._EquipmentText AS _EquipmentText,
  sn.Customer AS Customer,
  sn.Supplier AS Supplier,
  sn.AuthorizationGroup AS AuthorizationGroup,
  sn._Customer AS _Customer,
  sn._Supplier AS _Supplier
FROM I_Equipment AS sn
;