P_SubscrpnProdWithoutSpec

DDL: P_SUBSCRPNPRODWITHOUTSPEC SQL: PSPRODWOSPEC Type: view BASIC

P_SubscrpnProdWithoutSpec is a Basic CDS View in SAP S/4HANA. It reads from 3 data sources (mara, t134, crms4d_som_spsd) and exposes 4 fields with key field Product.

Data Sources (3)

SourceAliasJoin Type
mara Product from
t134 ProductType inner
crms4d_som_spsd SubscrpnProdSpec left_outer

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PSPRODWOSPEC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey Product view
VDM.private true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Product mara matnr Vehicle Model
ProductType mara mtart Product Type
ProductGroup mara matkl Product Sold Group
AuthorizationGroup mara begru AuthorizGroup

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_SubscrpnProdWithoutSpec.
-- 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: PSPRODWOSPEC

CREATE VIEW P_SubscrpnProdWithoutSpec AS
SELECT
  Product.matnr AS Product,
  Product.mtart AS ProductType,
  Product.matkl AS ProductGroup,
  Product.begru AS AuthorizationGroup
FROM mara AS Product
LEFT OUTER JOIN crms4d_som_spsd AS SubscrpnProdSpec ON /* join condition not captured in parsed metadata */
INNER JOIN t134 AS ProductType ON /* join condition not captured in parsed metadata */
;