C_FldLogsVoyHndlgUnitAssgmtVH

DDL: C_FLDLOGSVOYHNDLGUNITASSGMTVH Type: view_entity CONSUMPTION

Field Logistics Voyage Assignment

C_FldLogsVoyHndlgUnitAssgmtVH is a Consumption CDS View that provides data about "Field Logistics Voyage Assignment" in SAP S/4HANA. It reads from 1 data source (I_FldLogsVoyHndlgUnitRecord) and exposes 14 fields with key field FldLogsShptVoyAssgmtItemUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsVoyHndlgUnitRecord I_FldLogsVoyHndlgUnitRecord from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FldLogsShipmentItemTypeText _ItemTypeText $projection.FldLogsShipmentItemTypeCode = _ItemTypeText.FldLogsShipmentItemTypeCode

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Field Logistics Voyage Assignment view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY FldLogsShptVoyAssgmtItemUUID FldLogsShptVoyAssgmtItemUUID Shipment Item ID
DeliveryDocument DeliveryDocument Delivery Document
FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Doc Number
FldLogsShptItmHndlgUnitID FldLogsShptItmHndlgUnitID Handling Unit
FldLogsSrcePlnt FldLogsSrcePlnt From Plant
FldLogsDestPlnt FldLogsDestPlnt To Plant
FldLogsVoyageSrceStage FldLogsVoyageSrceStage Shipping Point
FldLogsVoyageDestStage FldLogsVoyageDestStage Receiving Point
FldLogsShipmentItemTypeCode FldLogsShipmentItemTypeCode Shpt Item Type Code
FldLogsShipmentItemTypeText _ItemTypeText FldLogsShipmentItemTypeText
FldLogsStatusTxt Plant / Point Filter
FieldLogisticsKitHeaderUUID FieldLogisticsKitHeaderUUID kit header id
FieldLogisticsKitIdentifier FieldLogisticsKitIdentifier Kit ID
_ItemTypeText _ItemTypeText

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_FldLogsVoyHndlgUnitAssgmtVH.
-- 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 C_FldLogsVoyHndlgUnitAssgmtVH AS
SELECT
  FldLogsShptVoyAssgmtItemUUID,
  DeliveryDocument,
  FldLogsReferenceDocumentNumber,
  FldLogsShptItmHndlgUnitID,
  FldLogsSrcePlnt,
  FldLogsDestPlnt,
  FldLogsVoyageSrceStage,
  FldLogsVoyageDestStage,
  FldLogsShipmentItemTypeCode,
  _ItemTypeText.FldLogsShipmentItemTypeText AS FldLogsShipmentItemTypeText,
  concat(FldLogsSrcePlnt,concat(FldLogsDestPlnt,concat(FldLogsVoyageSrceStage,FldLogsVoyageDestStage))) AS FldLogsStatusTxt,
  FieldLogisticsKitHeaderUUID,
  FieldLogisticsKitIdentifier
FROM I_FldLogsVoyHndlgUnitRecord
LEFT OUTER JOIN I_FldLogsShipmentItemTypeText AS _ItemTypeText ON FldLogsShipmentItemTypeCode = _ItemTypeText.FldLogsShipmentItemTypeCode  -- association [0..*]
;