C_PurCatTargetLangValueHelp

DDL: C_PURCATTARGETLANGVALUEHELP SQL: CPURCATTARGETLVH Type: view CONSUMPTION

Target Language of Purchasing Category

C_PurCatTargetLangValueHelp is a Consumption CDS View that provides data about "Target Language of Purchasing Category" in SAP S/4HANA. It reads from 1 data source (I_LanguageText) and exposes 2 fields with key field PurgCatTranslationTgtLang.

Data Sources (1)

SourceAliasJoin Type
I_LanguageText LanguageText left_outer

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPURCATTARGETLVH view
EndUserText.label Target Language of Purchasing Category view
ObjectModel.representativeKey PurgCatTranslationTgtLang view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurgCatTranslationTgtLang I_PurchasingCatTranslationSts PurgCatTranslationTgtLang
LanguageName I_LanguageText LanguageName Name

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_PurCatTargetLangValueHelp.
-- 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: CPURCATTARGETLVH

CREATE VIEW C_PurCatTargetLangValueHelp AS
SELECT
  I_PurchasingCatTranslationSts.PurgCatTranslationTgtLang AS PurgCatTranslationTgtLang,
  LanguageText.LanguageName AS LanguageName
LEFT OUTER JOIN I_LanguageText AS LanguageText ON /* join condition not captured in parsed metadata */
;