C_LoadingPointVH
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. Part of development package VDM_MM_PUR_SCHD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_LocationBasic | LoadingPointDetail | from |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| Search.searchable | true | view | |
| EndUserText.label | Loading Point | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LoadingPointForDelivery | I_LocationBasic | Location | Loading Point |
| LoadingLocationText | LocationText | LocationDescription | Loading Point Description | |
| IsBusinessPurposeCompleted | I_LocationBasic | IsBusinessPurposeCompleted | ||
| AuthorizationGroup | I_LocationBasic | AuthorizationGroup | ||
| BusinessPartnerUUID | I_LocationBasic | BusinessPartnerUUID | ||
| CollaborationPartner | I_LocationBasic | CollaborationPartner | ||
| WarehouseNumber | WarehouseDetail | WarehouseNumber | Warehouse | |
| _BusinessPartner | I_LocationBasic | _BusinessPartner | ||
| _CollaborationPartner | I_LocationBasic | _CollaborationPartner |
//// This view will be deprecated later. Please do not use this. ////
@AbapCatalog.sqlViewName: 'CLOADPOINTTVH'
@VDM.viewType: #CONSUMPTION
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.lifecycle.contract.type: #NONE
@ObjectModel.dataCategory:#VALUE_HELP
@ObjectModel.representativeKey: 'LoadingPointForDelivery'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@AccessControl.authorizationCheck: #MANDATORY
//@AccessControl.personalData.blockingIndicator: [ 'IsBusinessPurposeCompleted', '_BusinessPartner.IsBusinessPurposeCompleted', '_CollaborationPartner.IsBusinessPurposeCompleted' ]
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Consumption.ranked:true
@VDM.lifecycle.status: #DEPRECATED
@Search.searchable: true
@EndUserText.label: 'Loading Point'
define view C_LoadingPointVH
as select from I_LocationBasic as LoadingPointDetail
left outer to one join I_LocationText as LocationText on LocationText.LocationUUID = LoadingPointDetail.LocationUUID and
LocationText.Language = $session.system_language
left outer to one join I_StorMgmtDoorToEWMDoorLoadgPt as WarehouseDetail on WarehouseDetail.LoadingPointForDelivery = LoadingPointDetail.Location
{
@EndUserText.label: 'Loading Point'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key LoadingPointDetail.Location as LoadingPointForDelivery,
@EndUserText.label: 'Loading Point Description'
LocationText.LocationDescription as LoadingLocationText,
@UI.hidden: true
@Semantics.booleanIndicator
LoadingPointDetail.IsBusinessPurposeCompleted,
@UI.hidden: true
LoadingPointDetail.AuthorizationGroup,
@UI.hidden: true
LoadingPointDetail.BusinessPartnerUUID,
@UI.hidden: true
LoadingPointDetail.CollaborationPartner,
@EndUserText.label: 'Warehouse'
WarehouseDetail.WarehouseNumber,
// @EndUserText.label: 'Plant'
// cast( '' as werks_d ) as Plant,
// @EndUserText.label: 'Storage Location'
// cast( '' as lgort_d ) as StorageLocation,
@UI.hidden: true
LoadingPointDetail._BusinessPartner,
@UI.hidden: true
LoadingPointDetail._CollaborationPartner
}
where LoadingPointDetail.LocationType = '1200'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA