C_AdditionalProductGroup1Text

DDL: C_ADDITIONALPRODUCTGROUP1TEXT Type: view CONSUMPTION

Text View of C_AdditionalProductGroup1VH

C_AdditionalProductGroup1Text is a Consumption CDS View that provides data about "Text View of C_AdditionalProductGroup1VH" in SAP S/4HANA. It reads from 1 data source (I_AdditionalMaterialGroup1Text) and exposes 5 fields with key fields FirstSalesSpecProductGroup, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_AdditionalMaterialGroup1Text I_AdditionalMaterialGroup1Text from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_AdditionalProductGroup1VH _FirstSalesSpecProductGroup $projection.FirstSalesSpecProductGroup = _FirstSalesSpecProductGroup.FirstSalesSpecProductGroup

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CADLPRDGRP1TXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text View of C_AdditionalProductGroup1VH view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey FirstSalesSpecProductGroup view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
VDM.viewType #CONSUMPTION view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FirstSalesSpecProductGroup MaterialGroup 1
KEY Language Language Report Text Language
AdditionalMaterialGroup1Name AdditionalMaterialGroup1Name TrContType name
_Language _Language
_FirstSalesSpecProductGroup _FirstSalesSpecProductGroup

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_AdditionalProductGroup1Text.
-- 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.

CREATE VIEW C_AdditionalProductGroup1Text AS
SELECT
  cast ( AdditionalMaterialGroup1 as firstsalesspecproductgroup preserving type ) AS FirstSalesSpecProductGroup,
  Language,
  AdditionalMaterialGroup1Name
FROM I_AdditionalMaterialGroup1Text
LEFT OUTER JOIN C_AdditionalProductGroup1VH AS _FirstSalesSpecProductGroup ON FirstSalesSpecProductGroup = _FirstSalesSpecProductGroup.FirstSalesSpecProductGroup  -- association [1..1]
;