I_CL_EDocCompanyCodeVH

DDL: I_CL_EDOCCOMPANYCODEVH Type: view_entity BASIC Package: GLO-EDO-CL

Chile Company Codes

I_CL_EDocCompanyCodeVH is a Basic CDS View that provides data about "Chile Company Codes" in SAP S/4HANA. It reads from 1 data source (t001) and exposes 4 fields with key field CompanyCode. It is exposed through 1 OData service (ASQL_F7074). Part of development package GLO-EDO-CL.

Data Sources (1)

SourceAliasJoin Type
t001 t001 from

Annotations (11)

NameValueLevelField
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view
ObjectModel.representativeKey CompanyCode view
EndUserText.label Chile Company Codes view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F7074 ASQL_F7074 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t001 bukrs Value
CompanyCodeName t001 butxt Posting Text
CityName t001 ort01 Province
Currency t001 waers Transaction Currency

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_CL_EDocCompanyCodeVH.
-- 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 I_CL_EDocCompanyCodeVH AS
SELECT
  t001.bukrs AS CompanyCode,
  t001.butxt AS CompanyCodeName,
  t001.ort01 AS CityName,
  t001.waers AS Currency
FROM t001
;