ICA_COMPANYCODE

DDL: ICA_COMPANYCODE SQL: ICARBUKRS Type: view

ICA_COMPANYCODE is a CDS View in SAP S/4HANA. It reads from 1 data source (t001) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
t001 t001 from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ICARBUKRS view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view

Fields (2)

KeyFieldSource TableSource FieldDescription
RBUKRS bukrs Value
unitName butxt Posting Text

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 ICA_COMPANYCODE.
-- 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: ICARBUKRS

CREATE VIEW ICA_COMPANYCODE AS
SELECT
  bukrs AS RBUKRS,
  butxt AS unitName
FROM t001
;