C_LoadingPointVH

DDL: C_LOADINGPOINTVH SQL: CLOADPOINTTVH Type: view CONSUMPTION

Loading Point

C_LoadingPointVH is a Consumption CDS View that provides data about "Loading Point" in SAP S/4HANA. It reads from 1 data source (I_LocationBasic) and exposes 9 fields with key field LoadingPointForDelivery.

Data Sources (1)

SourceAliasJoin Type
I_LocationBasic LoadingPointDetail from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName CLOADPOINTTVH view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.lifecycle.contract.type #NONE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey LoadingPointForDelivery view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
EndUserText.label Loading Point view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY LoadingPointForDelivery I_LocationBasic Location Loading Point
LoadingLocationText LocationText LocationDescription Loading Point Description
IsBusinessPurposeCompleted I_LocationBasic IsBusinessPurposeCompleted Purpose Completed
AuthorizationGroup I_LocationBasic AuthorizationGroup AuthorizGroup
BusinessPartnerUUID I_LocationBasic BusinessPartnerUUID UUID
CollaborationPartner I_LocationBasic CollaborationPartner
WarehouseNumber WarehouseDetail WarehouseNumber Warehouse
_BusinessPartner I_LocationBasic _BusinessPartner
_CollaborationPartner I_LocationBasic _CollaborationPartner

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_LoadingPointVH.
-- 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: CLOADPOINTTVH

CREATE VIEW C_LoadingPointVH AS
SELECT
  LoadingPointDetail.Location AS LoadingPointForDelivery,
  LocationText.LocationDescription AS LoadingLocationText,
  LoadingPointDetail.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  LoadingPointDetail.AuthorizationGroup AS AuthorizationGroup,
  LoadingPointDetail.BusinessPartnerUUID AS BusinessPartnerUUID,
  LoadingPointDetail.CollaborationPartner AS CollaborationPartner,
  WarehouseDetail.WarehouseNumber AS WarehouseNumber,
  LoadingPointDetail._BusinessPartner AS _BusinessPartner,
  LoadingPointDetail._CollaborationPartner AS _CollaborationPartner
FROM I_LocationBasic AS LoadingPointDetail
;