I_Prst

DDL: I_PRST SQL: IPRST Type: view BASIC

Project - BOM link

I_Prst is a Basic CDS View that provides data about "Project - BOM link" in SAP S/4HANA. It reads from 1 data source (prst) and exposes 7 fields with key fields BillOfMaterial, BillOfMaterialVariant.

Data Sources (1)

SourceAliasJoin Type
prst prst from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPRST view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Project - BOM link view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial stlnr BOM
KEY BillOfMaterialVariant stlal AlternativeBOM
Material matnr Vehicle Model
Plant werks Receiving Plant
BillOfMaterialVariantUsage stlan Usage
BillOfMaterialCategory
WBSElementInternalID pspnr WBS Element

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_Prst.
-- 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: IPRST

CREATE VIEW I_Prst AS
SELECT
  stlnr AS BillOfMaterial,
  stlal AS BillOfMaterialVariant,
  matnr AS Material,
  werks AS Plant,
  stlan AS BillOfMaterialVariantUsage,
  cast ('P' as stlty preserving type) AS BillOfMaterialCategory,
  pspnr AS WBSElementInternalID
FROM prst
;