Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

C_FrtOrdExecutionEvent

DDL: C_FRTORDEXECUTIONEVENT SQL: CTORFOEXECEEVT Type: view CONSUMPTION

Freight Order Execution Event

C_FrtOrdExecutionEvent is a Consumption CDS View that provides data about "Freight Order Execution Event" in SAP S/4HANA. It reads from 1 data source (I_TranspOrdExecution) and exposes 12 fields with key field TransportationOrderEventUUID.

Data Sources (1)

SourceAliasJoin Type
I_TranspOrdExecution I_TranspOrdExecution from

Annotations (14)

NameValueLevelField
EndUserText.label Freight Order Execution Event view
ObjectModel.representativeKey TransportationOrderEventUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName CTORFOEXECEEVT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
Metadata.allowExtensions true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY TransportationOrderEventUUID TransportationOrderEventUUID UUID
TransportationOrderUUID TransportationOrderUUID
TranspOrdExecution TranspOrdExecution
TranspOrdEventCode TranspOrdEventCode Event
TranspOrdEventCodeDesc
CreatedByUser CreatedByUser User Name
TranspOrdEvtActualDateTime TranspOrdEvtActualDateTime
LocationUUID LocationUUID UUID
LocationAdditionalUUID LocationAdditionalUUID
LocationDescription
_CreatedByUser _CreatedByUser
_TranspOrdEventCode _TranspOrdEventCode

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_FrtOrdExecutionEvent.
-- 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: CTORFOEXECEEVT

CREATE VIEW C_FrtOrdExecutionEvent AS
SELECT
  TransportationOrderEventUUID,
  TransportationOrderUUID,
  TranspOrdExecution,
  TranspOrdEventCode,
  _TranspOrdEventCode._Text[1:Language = $session.system_language].TranspOrdEventCodeDesc AS TranspOrdEventCodeDesc,
  CreatedByUser,
  TranspOrdEvtActualDateTime,
  LocationUUID,
  LocationAdditionalUUID,
  _TransportationOrderStop._Locationdescr.AddressObjectDescription AS LocationDescription
FROM I_TranspOrdExecution
;