C_PMAssetLocationVH

DDL: C_PMASSETLOCATIONVH SQL: CMAINTASSETLOC Type: view CONSUMPTION

Asset Location Value Help

C_PMAssetLocationVH is a Consumption CDS View that provides data about "Asset Location Value Help" in SAP S/4HANA. It reads from 1 data source (I_Location) and exposes 6 fields with key fields Location, Plant.

Data Sources (1)

SourceAliasJoin Type
I_Location I_Location from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CMAINTASSETLOC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey Location view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Asset Location Value Help view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #CONSUMPTION view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Location I_Location Location Text
KEY Plant I_Location Plant Valuation Area
AddressID I_Location AddressID Ship-to address
LocationName I_Location LocationName Location Name
_Address I_Location _Address
_Plant I_Location _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 C_PMAssetLocationVH.
-- 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: CMAINTASSETLOC

CREATE VIEW C_PMAssetLocationVH AS
SELECT
  I_Location.Location AS Location,
  I_Location.Plant AS Plant,
  I_Location.AddressID AS AddressID,
  I_Location.LocationName AS LocationName,
  I_Location._Address AS _Address,
  I_Location._Plant AS _Plant
FROM I_Location
;