I_FldLogsPurOrdSpclStockDetail

DDL: I_FLDLOGSPURORDSPCLSTOCKDETAIL Type: view_entity COMPOSITE

Field Logistics PO Project Stock Detail

I_FldLogsPurOrdSpclStockDetail is a Composite CDS View that provides data about "Field Logistics PO Project Stock Detail" in SAP S/4HANA. It reads from 1 data source (I_FldLogsPurchaseOrderEnhanced) and exposes 8 fields with key fields ReferenceSDDocument, PurchasingDocumentItem, AccountAssignmentNumber.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsPurchaseOrderEnhanced I_FldLogsPurchaseOrderEnhanced from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Field Logistics PO Project Stock Detail view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ReferenceSDDocument PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
KEY AccountAssignmentNumber AccountAssignmentNumber Account Assgmt No.
InventorySpecialStockType InventorySpecialStockType Special Stock Type
WBSElementInternalID WBSElementInternalID WBS Internal ID
WBSElementExternalID WBSElementExternalID WBS Element External ID
WBSDescription WBSDescription WBS Element Name
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.

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_FldLogsPurOrdSpclStockDetail.
-- 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_FldLogsPurOrdSpclStockDetail AS
SELECT
  PurchasingDocument AS ReferenceSDDocument,
  PurchasingDocumentItem,
  AccountAssignmentNumber,
  InventorySpecialStockType,
  WBSElementInternalID,
  WBSElementExternalID,
  WBSDescription,
  IsEndOfPurposeBlocked
FROM I_FldLogsPurchaseOrderEnhanced
;