E_FieldLogisticsReturns

DDL: E_FIELDLOGISTICSRETURNS Type: view_entity EXTENSION Package: FLOG_RETURN

Field logistics Returns - Extension

E_FieldLogisticsReturns is a Extension CDS View that provides data about "Field logistics Returns - Extension" in SAP S/4HANA. It reads from 1 data source (flog_return) and exposes 6 fields with key fields Material, FldLogsRemotePlant, FldLogsReferenceDocumentNumber, ReferenceDocumentItem, FldLogsMaintenanceOrder. Part of development package FLOG_RETURN.

Data Sources (1)

SourceAliasJoin Type
flog_return Persistence from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Field logistics Returns - Extension view
VDM.viewType #EXTENSION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.elementSuffix IRP view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.quota.maximumFields 816 view
AbapCatalog.extensibility.quota.maximumBytes 8160 view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material flog_return matnr Vehicle Model
KEY FldLogsRemotePlant flog_return plant Valuation Area
KEY FldLogsReferenceDocumentNumber flog_return ref_doc Reference Key
KEY ReferenceDocumentItem flog_return ref_docitem Ref. Doc. Item
KEY FldLogsMaintenanceOrder flog_return work_order Order
KEY RemoteStorageLocation flog_return remote_lgort Location

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 E_FieldLogisticsReturns.
-- 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 E_FieldLogisticsReturns AS
SELECT
  Persistence.matnr AS Material,
  Persistence.plant AS FldLogsRemotePlant,
  Persistence.ref_doc AS FldLogsReferenceDocumentNumber,
  Persistence.ref_docitem AS ReferenceDocumentItem,
  Persistence.work_order AS FldLogsMaintenanceOrder,
  Persistence.remote_lgort AS RemoteStorageLocation
FROM flog_return AS Persistence
;