C_SubscrpnProdWthoutSpecVH

DDL: C_SUBSCRPNPRODWTHOUTSPECVH SQL: CSPRODWOSPECVH Type: view CONSUMPTION

Consumption value help Subscription Product w/o Specific.

C_SubscrpnProdWthoutSpecVH is a Consumption CDS View that provides data about "Consumption value help Subscription Product w/o Specific." in SAP S/4HANA. It reads from 1 data source (I_SubscrpnProdWthoutSpecVH) and exposes 9 fields with key field Product. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_SubscrpnProdWthoutSpecVH SubscrpnProdWithoutSpec from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_Product _Product _Product.Product = $projection.Product
[1..1] I_Producttype _ProductType _ProductType.ProductType = $projection.ProductType
[0..1] I_ProductTypeText _ProductTypeName _ProductTypeName.ProductType = $projection.ProductType and _ProductTypeName.Language = $session.system_language
[0..1] I_ProductGroup _ProductGroup _ProductGroup.MaterialGroup = $projection.ProductGroup

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CSPRODWOSPECVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consumption value help Subscription Product w/o Specific. view
Search.searchable true view
Consumption.ranked true view
ObjectModel.representativeKey Product view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Product I_SubscrpnProdWthoutSpecVH Product Product
ProductName I_SubscrpnProdWthoutSpecVH ProductName Description
ProductType I_SubscrpnProdWthoutSpecVH ProductType Product Type
_ProductTypeName _ProductTypeName
ProductGroup I_SubscrpnProdWthoutSpecVH ProductGroup Product Sold Group
AuthorizationGroup I_SubscrpnProdWthoutSpecVH AuthorizationGroup AuthorizGroup
_Product _Product
_ProductType _ProductType
_ProductGroup _ProductGroup

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 C_SubscrpnProdWthoutSpecVH.
-- 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: CSPRODWOSPECVH

CREATE VIEW C_SubscrpnProdWthoutSpecVH AS
SELECT
  SubscrpnProdWithoutSpec.Product AS Product,
  SubscrpnProdWithoutSpec.ProductName AS ProductName,
  SubscrpnProdWithoutSpec.ProductType AS ProductType,
  SubscrpnProdWithoutSpec.ProductGroup AS ProductGroup,
  SubscrpnProdWithoutSpec.AuthorizationGroup AS AuthorizationGroup
FROM I_SubscrpnProdWthoutSpecVH AS SubscrpnProdWithoutSpec
LEFT OUTER JOIN I_Product AS _Product ON _Product.Product = Product  -- association [0..1]
LEFT OUTER JOIN I_Producttype AS _ProductType ON _ProductType.ProductType = ProductType  -- association [1..1]
LEFT OUTER JOIN I_ProductTypeText AS _ProductTypeName ON _ProductTypeName.ProductType = ProductType AND _ProductTypeName.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_ProductGroup AS _ProductGroup ON _ProductGroup.MaterialGroup = ProductGroup  -- association [0..1]
;