C_PurOrdMaintainStorLocValHelp

DDL: C_PURORDMAINTAINSTORLOCVALHELP SQL: CPOMAINTVHSTOLOC Type: view CONSUMPTION

PO Maintenance: Value Help for Storage Location

C_PurOrdMaintainStorLocValHelp is a Consumption CDS View that provides data about "PO Maintenance: Value Help for 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 (8)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName CPOMAINTVHSTOLOC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label PO Maintenance: Value Help for Storage Location view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant I_StorageLocation Plant Valuation Area
KEY StorageLocation I_StorageLocation StorageLocation StorageLocation
StorageLocationName I_StorageLocation 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 C_PurOrdMaintainStorLocValHelp.
-- 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: CPOMAINTVHSTOLOC

CREATE VIEW C_PurOrdMaintainStorLocValHelp AS
SELECT
  I_StorageLocation.Plant AS Plant,
  I_StorageLocation.StorageLocation AS StorageLocation,
  I_StorageLocation.StorageLocationName AS StorageLocationName
FROM I_StorageLocation
;