P_VarConfignXPlantProdVariant

DDL: P_VARCONFIGNXPLANTPRODVARIANT SQL: PAVCXPLANTPVAR Type: view BASIC

P_VarConfignXPlantProdVariant is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (mara) and exposes 5 fields with key field ProductVariant.

Data Sources (1)

SourceAliasJoin Type
mara mara from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PAVCXPLANTPVAR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProductVariant mara matnr Vehicle Model
Product satnr Cross-plant CM
CreatedByUser ernam User Name
CreationDate ersda Entry Date
ProductConfiguration cuobf Int. object no.

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_VarConfignXPlantProdVariant.
-- 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: PAVCXPLANTPVAR

CREATE VIEW P_VarConfignXPlantProdVariant AS
SELECT
  mara.matnr AS ProductVariant,
  satnr AS Product,
  ernam AS CreatedByUser,
  ersda AS CreationDate,
  cuobf AS ProductConfiguration
FROM mara
;