I_FldLogsSourceStorageBinVH

DDL: I_FLDLOGSSOURCESTORAGEBINVH SQL: IFLSTORAGEBIN Type: view BASIC

FL Source Storage Bin

I_FldLogsSourceStorageBinVH is a Basic CDS View that provides data about "FL Source Storage Bin" in SAP S/4HANA. It reads from 1 data source (I_EWM_AvailableStock) and exposes 17 fields with key fields ParentHandlingUnitUUID, StockItemUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_EWM_AvailableStock _AvailableStock from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Product _Material _AvailableStock.ProductUUID = _Material.ProductUUID
[0..1] I_WBSElementBasicData _WBSElement $projection.StockDocumentNumber = _WBSElement.WBSElementInternalID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFLSTORAGEBIN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label FL Source Storage Bin view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.representativeKey StockItemUUID view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY ParentHandlingUnitUUID ParentHandlingUnitUUID Parent
KEY StockItemUUID StockItemUUID GUID Stock
EWMWarehouse EWMWarehouse Warehouse No.
Product _Material Product Product Sold
EWMStorageType EWMStorageType Storage Type
FieldLogisticsStorageBin EWMStorageBin Storage Bin
HandlingUnitNumber HandlingUnitNumber
Batch Batch Lot No.
AvailableEWMStockQty AvailableEWMStockQty Quantity
EWMStockQuantityBaseUnit EWMStockQuantityBaseUnit UoM
StockKeepingAlternativeUoM StockKeepingAlternativeUoM Unit of measure
EWMBatchIsInRestrictedUseStock EWMBatchIsInRestrictedUseStock Restricted-use
ShelfLifeExpirationDate ShelfLifeExpirationDate SLED/BBD
EWMStockType EWMStockType Stock Type
EntitledToDisposeParty EntitledToDisposeParty Disposal Party
StockDocumentNumber StockDocumentNumber Stk Ref. Doc.
_WBSElement _WBSElement

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_FldLogsSourceStorageBinVH.
-- 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: IFLSTORAGEBIN

CREATE VIEW I_FldLogsSourceStorageBinVH AS
SELECT
  ParentHandlingUnitUUID,
  StockItemUUID,
  EWMWarehouse,
  _Material.Product AS Product,
  EWMStorageType,
  EWMStorageBin AS FieldLogisticsStorageBin,
  HandlingUnitNumber,
  Batch,
  AvailableEWMStockQty,
  EWMStockQuantityBaseUnit,
  StockKeepingAlternativeUoM,
  EWMBatchIsInRestrictedUseStock,
  ShelfLifeExpirationDate,
  EWMStockType,
  EntitledToDisposeParty,
  StockDocumentNumber
FROM I_EWM_AvailableStock AS _AvailableStock
LEFT OUTER JOIN I_Product AS _Material ON _AvailableStock.ProductUUID = _Material.ProductUUID  -- association [0..1]
LEFT OUTER JOIN I_WBSElementBasicData AS _WBSElement ON StockDocumentNumber = _WBSElement.WBSElementInternalID  -- association [0..1]
;