A_CnsldtnCompanyCodeT

DDL: A_CNSLDTNCOMPANYCODET SQL: ACSCOMPCODET Type: view BASIC

Company Code Text

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

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSCOMPCODET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Company Code Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY CompanyCode CompanyCode Receiver Company Code
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 A_CnsldtnCompanyCodeT.
-- 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: ACSCOMPCODET

CREATE VIEW A_CnsldtnCompanyCodeT AS
SELECT
  Language,
  CompanyCode,
  cast(CompanyCodeName as fincs_bukrs_t preserving type) AS CompanyCodeName
FROM I_CompanyCode
;