I_FldLogsReturnPurchaseOrderVH

DDL: I_FLDLOGSRETURNPURCHASEORDERVH Type: view_entity COMPOSITE Package: FLOG_RETURN_PROCG_BASE

Field Logistics Returns Purchase Order

I_FldLogsReturnPurchaseOrderVH is a Composite CDS View that provides data about "Field Logistics Returns Purchase Order" in SAP S/4HANA. It reads from 1 data source (I_FieldLogisticsPurchaseOrder) and exposes 6 fields with key fields PurchasingDocument, PurchasingDocumentItem. Part of development package FLOG_RETURN_PROCG_BASE.

Data Sources (1)

SourceAliasJoin Type
I_FieldLogisticsPurchaseOrder I_FieldLogisticsPurchaseOrder from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Field Logistics Returns Purchase Order view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey PurchasingDocument view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName IFLDLOGSRETPOVH view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
Plant Plant Valuation Area
Material Material Vehicle Model
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.
IsReturnsItem IsReturnsItem Returns Item

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_FldLogsReturnPurchaseOrderVH.
-- 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_FldLogsReturnPurchaseOrderVH AS
SELECT
  PurchasingDocument,
  PurchasingDocumentItem,
  Plant,
  Material,
  IsEndOfPurposeBlocked,
  IsReturnsItem
FROM I_FieldLogisticsPurchaseOrder
;