FAC_CDS_VE_COMPANYCODE

DDL: FAC_CDS_VE_COMPANYCODE SQL: FACV_VE_COCD Type: view Package: FIN_VE_CENTRAL

Company Code in Flexible Hierarchy

FAC_CDS_VE_COMPANYCODE is a CDS View that provides data about "Company Code in Flexible Hierarchy" in SAP S/4HANA. It reads from 1 data source (t001) and exposes 3 fields with key field CompanyCode. Part of development package FIN_VE_CENTRAL.

Data Sources (1)

SourceAliasJoin Type
t001 t001 from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName FACV_VE_COCD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Company Code in Flexible Hierarchy view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t001 bukrs Value
CompanyCode_T t001 butxt Posting Text
NodeTextUpper

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 FAC_CDS_VE_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: FACV_VE_COCD

CREATE VIEW FAC_CDS_VE_COMPANYCODE AS
SELECT
  t001.bukrs AS CompanyCode,
  t001.butxt AS CompanyCode_T,
  cast(upper(t001.butxt) as butxt ) AS NodeTextUpper
FROM t001
;