C_AdditionalProductGroup2Text

DDL: C_ADDITIONALPRODUCTGROUP2TEXT Type: view CONSUMPTION Package: VDM_MD_PRODUCT

Text View of C_AdditionalProductGroup2VH

C_AdditionalProductGroup2Text is a Consumption CDS View that provides data about "Text View of C_AdditionalProductGroup2VH" in SAP S/4HANA. It reads from 1 data source (I_AdditionalMaterialGroup2Text) and exposes 5 fields with key fields SecondSalesSpecProductGroup, Language. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F8712). Part of development package VDM_MD_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
I_AdditionalMaterialGroup2Text I_AdditionalMaterialGroup2Text from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_AdditionalProductGroup2VH _SecondSalesSpecProductGroup $projection.SecondSalesSpecProductGroup = _SecondSalesSpecProductGroup.SecondSalesSpecProductGroup

Annotations (13)

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

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F8712 ASQL_F8712 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SecondSalesSpecProductGroup MaterialGroup 2
KEY Language Language Report Text Language
AdditionalMaterialGroup2Name AdditionalMaterialGroup2Name TrContType name
_Language _Language
_SecondSalesSpecProductGroup _SecondSalesSpecProductGroup

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_AdditionalProductGroup2Text.
-- 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_AdditionalProductGroup2Text AS
SELECT
  cast(AdditionalMaterialGroup2 as secondsalesspecproductgroup preserving type ) AS SecondSalesSpecProductGroup,
  Language,
  AdditionalMaterialGroup2Name
FROM I_AdditionalMaterialGroup2Text
LEFT OUTER JOIN C_AdditionalProductGroup2VH AS _SecondSalesSpecProductGroup ON SecondSalesSpecProductGroup = _SecondSalesSpecProductGroup.SecondSalesSpecProductGroup  -- association [1..1]
;