I_TravelCompanyCodeVH

DDL: I_TRAVELCOMPANYCODEVH Type: view BASIC

Travel Company Codes

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

Data Sources (1)

SourceAliasJoin Type
t001 t001 from

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ITRVLCMPYCODEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Travel Company Codes view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey CompanyCode view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs Value
CompanyCodeName butxt Posting Text
CityName ort01 Province
Currency 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_TravelCompanyCodeVH.
-- 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_TravelCompanyCodeVH AS
SELECT
  bukrs AS CompanyCode,
  butxt AS CompanyCodeName,
  ort01 AS CityName,
  waers AS Currency
FROM t001
;