P_FsvCategory

DDL: P_FSVCATEGORY SQL: PFSVCATEG Type: view BASIC

P_FsvCategory is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (P_FsvItemsWithCategory) and exposes 4 fields with key fields versn, ergsl.

Data Sources (1)

SourceAliasJoin Type
P_FsvItemsWithCategory P_FsvItemsWithCategory from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PFSVCATEG view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
VDM.private true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY versn versn Version
KEY ergsl ergsl FS Item
id id WorklistID
stufe stufe Level Number

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 P_FsvCategory.
-- 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: PFSVCATEG

CREATE VIEW P_FsvCategory AS
SELECT
  versn,
  ergsl,
  id,
  stufe
FROM P_FsvItemsWithCategory
;