A_DigitalVehicleStorageLoc

DDL: A_DIGITALVEHICLESTORAGELOC Type: view_entity CONSUMPTION

Digital Vehicle Storage Location

A_DigitalVehicleStorageLoc is a Consumption CDS View that provides data about "Digital Vehicle Storage Location" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 3 fields with key fields Plant, StorageLocation.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation I_StorageLocation from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
OData.entityType.name DigitalVehStorageLoc_Type view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Digital Vehicle Storage Location view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
StorageLocationName StorageLocationName Storage Loc. Name

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 A_DigitalVehicleStorageLoc.
-- 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 A_DigitalVehicleStorageLoc AS
SELECT
  Plant,
  StorageLocation,
  StorageLocationName
FROM I_StorageLocation
;