C_AdditionalProductGroup4Text

DDL: C_ADDITIONALPRODUCTGROUP4TEXT Type: view CONSUMPTION

Text View of C_AdditionalProductGroup4VH

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

Data Sources (1)

SourceAliasJoin Type
I_AdditionalMaterialGroup4Text I_AdditionalMaterialGroup4Text from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_AdditionalProductGroup4VH _FourthSalesSpecProductGroup $projection.FourthSalesSpecProductGroup = _FourthSalesSpecProductGroup.FourthSalesSpecProductGroup

Annotations (13)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FourthSalesSpecProductGroup MaterialGroup 4
KEY Language Language Report Text Language
AdditionalMaterialGroup4Name AdditionalMaterialGroup4Name TrContType name
_Language _Language
_FourthSalesSpecProductGroup _FourthSalesSpecProductGroup

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_AdditionalProductGroup4Text.
-- 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_AdditionalProductGroup4Text AS
SELECT
  cast(AdditionalMaterialGroup4 as fourthsalesspecproductgroup preserving type ) AS FourthSalesSpecProductGroup,
  Language,
  AdditionalMaterialGroup4Name
FROM I_AdditionalMaterialGroup4Text
LEFT OUTER JOIN C_AdditionalProductGroup4VH AS _FourthSalesSpecProductGroup ON FourthSalesSpecProductGroup = _FourthSalesSpecProductGroup.FourthSalesSpecProductGroup  -- association [1..1]
;