I_AROCompanyCode

DDL: I_AROCOMPANYCODE SQL: IAROCOMPCODE Type: view BASIC

ARO Company Code

I_AROCompanyCode is a Basic CDS View that provides data about "ARO Company Code" in SAP S/4HANA. It reads from 2 data sources (aro_tc_config, t001) and exposes 3 fields with key field CompanyCode.

Data Sources (2)

SourceAliasJoin Type
aro_tc_config _tc_config inner
t001 t001 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IAROCOMPCODE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label ARO Company Code view
ObjectModel.updateEnabled false view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t001 bukrs Value
CompanyCodeName t001 butxt Posting Text
AssetRetirementObligationType aro_tc_config obl_type Obl. Type

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_AROCompanyCode.
-- 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: IAROCOMPCODE

CREATE VIEW I_AROCompanyCode AS
SELECT
  t001.bukrs AS CompanyCode,
  t001.butxt AS CompanyCodeName,
  _tc_config.obl_type AS AssetRetirementObligationType
FROM t001
INNER JOIN aro_tc_config AS _tc_config ON /* join condition not captured in parsed metadata */
;