I_StorLocOfGRBlockStock_VH

DDL: I_STORLOCOFGRBLOCKSTOCK_VH SQL: ISTLOCGRBLSTVH Type: view TRANSACTIONAL

Value Help for Storage Location of GR Blocked Stock

I_StorLocOfGRBlockStock_VH is a Transactional CDS View that provides data about "Value Help for Storage Location of GR Blocked Stock" in SAP S/4HANA. It reads from 1 data source (I_PurchaseOrderHistory) and exposes 5 fields with key field Plant.

Data Sources (1)

SourceAliasJoin Type
I_PurchaseOrderHistory _PurchaseOrderHistory inner

Annotations (15)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName ISTLOCGRBLSTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Value Help for Storage Location of GR Blocked Stock view
ObjectModel.dataCategory #VALUE_HELP view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.private false view
VDM.viewType #TRANSACTIONAL view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Plant _PurchasingDocumentItem Plant Valuation Area
StorageLocation _PurchasingDocumentItem StorageLocation StorageLocation
StorageLocationName Storage Location Name
IsStorLocAuthznCheckActive
_Plant _Plant

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_StorLocOfGRBlockStock_VH.
-- 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: ISTLOCGRBLSTVH

CREATE VIEW I_StorLocOfGRBlockStock_VH AS
SELECT
  _PurchasingDocumentItem.Plant AS Plant,
  _PurchasingDocumentItem.StorageLocation AS StorageLocation,
  _PurchasingDocumentItem._StorageLocation.StorageLocationName AS StorageLocationName,
  _PurchasingDocumentItem._StorageLocation.IsStorLocAuthznCheckActive AS IsStorLocAuthznCheckActive
INNER JOIN I_PurchaseOrderHistory AS _PurchaseOrderHistory ON /* join condition not captured in parsed metadata */
;