C_FldLogsVoyItmAssignmentVH

DDL: C_FLDLOGSVOYITMASSIGNMENTVH Type: view_entity CONSUMPTION

Field Logistics Voyage Assignment

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

Data Sources (1)

SourceAliasJoin Type
I_FldLogsVoyItmAssgmtRecord I_FldLogsVoyItmAssgmtRecord 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 (13)

KeyFieldSource TableSource FieldDescription
KEY FldLogsShptVoyAssgmtItemUUID FldLogsShptVoyAssgmtItemUUID Shipment Item ID
FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Document
DeliveryDocument DeliveryDocument Delivery Document
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_FldLogsVoyItmAssignmentVH.
-- 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_FldLogsVoyItmAssignmentVH AS
SELECT
  FldLogsShptVoyAssgmtItemUUID,
  FldLogsReferenceDocumentNumber,
  DeliveryDocument,
  FldLogsSrcePlnt,
  FldLogsDestPlnt,
  FldLogsVoyageSrceStage,
  FldLogsVoyageDestStage,
  FldLogsShipmentItemTypeCode,
  _ItemTypeText.FldLogsShipmentItemTypeText AS FldLogsShipmentItemTypeText,
  concat(FldLogsSrcePlnt,concat(FldLogsDestPlnt,concat(FldLogsVoyageSrceStage,FldLogsVoyageDestStage))) AS FldLogsStatusTxt,
  FieldLogisticsKitHeaderUUID,
  FieldLogisticsKitIdentifier
FROM I_FldLogsVoyItmAssgmtRecord
LEFT OUTER JOIN I_FldLogsShipmentItemTypeText AS _ItemTypeText ON FldLogsShipmentItemTypeCode = _ItemTypeText.FldLogsShipmentItemTypeCode  -- association [0..*]
;