C_ProductLanguage

DDL: C_PRODUCTLANGUAGE SQL: CPRODLANG Type: view CONSUMPTION Package: VDM_MD_PRODUCT

Language view for Product Master

C_ProductLanguage is a Consumption CDS View that provides data about "Language view for Product Master" in SAP S/4HANA. It reads from 1 data source (I_Language) and exposes 3 fields with key field Language. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F7465). Part of development package VDM_MD_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
I_Language I_Language from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_LanguageText _Text $projection.Language = _Text.LanguageCode

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPRODLANG view
EndUserText.label Language view for Product Master view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Language view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F7465 ASQL_F7465 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
_Text _Text
LanguageISOCode Language ISO Code

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_ProductLanguage.
-- 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: CPRODLANG

CREATE VIEW C_ProductLanguage AS
SELECT
  Language,
  cast(LanguageISOCode as languageisocode preserving type ) AS LanguageISOCode
FROM I_Language
LEFT OUTER JOIN I_LanguageText AS _Text ON Language = _Text.LanguageCode  -- association [0..*]
;