I_FldLogsTransfSuplrItmReturn

DDL: I_FLDLOGSTRANSFSUPLRITMRETURN Type: view_entity COMPOSITE

Transfer Supplier Item Return Data

I_FldLogsTransfSuplrItmReturn is a Composite CDS View that provides data about "Transfer Supplier Item Return Data" in SAP S/4HANA. It reads from 1 data source (I_FldLogsFlogReturnBasic) and exposes 6 fields with key fields Material, FldLogsRemotePlant, FldLogsReferenceDocumentNumber, ReferenceDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsFlogReturnBasic I_FldLogsFlogReturnBasic from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Transfer Supplier Item Return Data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY FldLogsRemotePlant FldLogsRemotePlant Plant
KEY FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Doc Number
KEY ReferenceDocumentItem ReferenceDocumentItem Reference item
FldLogsReturnStatus FldLogsReturnStatus Return Status
FldLogsSuplrItemUUID FldLogsSuplrItemUUID Suplr Item UUID

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 I_FldLogsTransfSuplrItmReturn.
-- 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 I_FldLogsTransfSuplrItmReturn AS
SELECT
  Material,
  FldLogsRemotePlant,
  FldLogsReferenceDocumentNumber,
  ReferenceDocumentItem,
  FldLogsReturnStatus,
  FldLogsSuplrItemUUID
FROM I_FldLogsFlogReturnBasic
;