C_CompanyCodeVHTemp

DDL: C_COMPANYCODEVHTEMP SQL: CCOMPANYCODEVH Type: view CONSUMPTION

Value Help for Company Code

C_CompanyCodeVHTemp is a Consumption CDS View that provides data about "Value Help for Company Code" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 6 fields with key field CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Annotations (11)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName CCOMPANYCODEVH view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey CompanyCode view
Search.searchable true view
EndUserText.label Value Help for Company Code view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
Language Language Report Text Language
CompanyCodeName CompanyCodeName Company Name
CityName CityName Name
Currency Currency Valuation Crcy
Country Country Venue: Ctry/Reg

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_CompanyCodeVHTemp.
-- 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: CCOMPANYCODEVH

CREATE VIEW C_CompanyCodeVHTemp AS
SELECT
  CompanyCode,
  Language,
  CompanyCodeName,
  CityName,
  Currency,
  Country
FROM I_CompanyCode
;