C_SerialNumbersForGdsMvtVH

DDL: C_SERIALNUMBERSFORGDSMVTVH SQL: CSRNRGDSMVTVH Type: view CONSUMPTION

Value Help for Serial numbers for Goods Movement

C_SerialNumbersForGdsMvtVH is a Consumption CDS View that provides data about "Value Help for Serial numbers for Goods Movement" in SAP S/4HANA. It reads from 1 data source (I_Equipment) and exposes 20 fields with key fields SerialNumber, Material, Equipment. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_Equipment I_Equipment from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_EquipmentStockSegment _stocksegment $projection.Equipment = _stocksegment.Equipment

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CSRNRGDSMVTVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Value Help for Serial numbers for Goods Movement view
Search.searchable true view
Consumption.ranked true view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY SerialNumber SerialNumber Serial Number
KEY Material Material Vehicle Model
KEY Equipment Equipment Equipment check
EquipmentHasStockInformation EquipmentHasStockInformation
Batch Batch Lot No.
Plant _stocksegment Plant Valuation Area
StorageLocation _stocksegment StorageLocation StorageLocation
InventoryStockType _stocksegment InventoryStockType Stock Type
InventorySpecialStockType _stocksegment InventorySpecialStockType Special Stock Type
StockIdentifyingBatch _stocksegment Batch Lot No.
SpecialStockIdfgSupplier _stocksegment Supplier Supplier
SalesOrder _stocksegment SalesOrder SD Document
SalesOrderItem _stocksegment SalesOrderItem Sales Order Item
WBSElement
AuthorizationGroup AuthorizationGroup AuthorizGroup
Customer Customer Sold-to Party
Supplier Supplier Supplier
_Customer _Customer
_Supplier _Supplier
_Material _Material

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 C_SerialNumbersForGdsMvtVH.
-- 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.
-- SQL view name: CSRNRGDSMVTVH

CREATE VIEW C_SerialNumbersForGdsMvtVH AS
SELECT
  SerialNumber,
  Material,
  Equipment,
  EquipmentHasStockInformation,
  Batch,
  _stocksegment.Plant AS Plant,
  _stocksegment.StorageLocation AS StorageLocation,
  _stocksegment.InventoryStockType AS InventoryStockType,
  _stocksegment.InventorySpecialStockType AS InventorySpecialStockType,
  _stocksegment.Batch AS StockIdentifyingBatch,
  _stocksegment.Supplier AS SpecialStockIdfgSupplier,
  _stocksegment.SalesOrder AS SalesOrder,
  _stocksegment.SalesOrderItem AS SalesOrderItem,
  _stocksegment._WBSElementByInternalKey.WBSElementExternalID AS WBSElement,
  AuthorizationGroup,
  Customer,
  Supplier
FROM I_Equipment
LEFT OUTER JOIN I_EquipmentStockSegment AS _stocksegment ON Equipment = _stocksegment.Equipment  -- association [0..1]
;