I_Tpst

DDL: I_TPST SQL: ITPST Type: view BASIC

Link Between Functional Location and BOM

I_Tpst is a Basic CDS View that provides data about "Link Between Functional Location and BOM" in SAP S/4HANA. It reads from 1 data source (tpst) and exposes 6 fields with key fields BillOfMaterial, BillOfMaterialVariant.

Data Sources (1)

SourceAliasJoin Type
tpst tpst from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ITPST 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 Link Between Functional Location and BOM view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial stlnr BOM
KEY BillOfMaterialVariant stlal AlternativeBOM
Plant werks Receiving Plant
BillOfMaterialVariantUsage stlan Usage
BillOfMaterialCategory
FunctionalLocation tplnr Functional loc.

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_Tpst.
-- 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: ITPST

CREATE VIEW I_Tpst AS
SELECT
  stlnr AS BillOfMaterial,
  stlal AS BillOfMaterialVariant,
  werks AS Plant,
  stlan AS BillOfMaterialVariantUsage,
  cast ('T' as stlty preserving type) AS BillOfMaterialCategory,
  tplnr AS FunctionalLocation
FROM tpst
;