I_IntlTrdCompanyCodeVH

DDL: I_INTLTRDCOMPANYCODEVH SQL: IINTCOMPCDVH Type: view BASIC

Company Code

I_IntlTrdCompanyCodeVH is a Basic CDS View that provides data about "Company Code" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 2 fields with key field CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Annotations (12)

NameValueLevelField
EndUserText.label Company Code view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IINTCOMPCDVH view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CompanyCode view
Search.searchable true view
Consumption.ranked true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
CompanyCodeName CompanyCodeName Company 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 I_IntlTrdCompanyCodeVH.
-- 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: IINTCOMPCDVH

CREATE VIEW I_IntlTrdCompanyCodeVH AS
SELECT
  CompanyCode,
  CompanyCodeName
FROM I_CompanyCode
;