I_CostComponentText

DDL: I_COSTCOMPONENTTEXT Type: view BASIC Package: FINS_PCP_CUST_VDM

Cost Component Text

I_CostComponentText is a Basic CDS View that provides data about "Cost Component Text" in SAP S/4HANA. It reads from 1 data source (tckh1) and exposes 6 fields with key fields Language, CostComponentStructure, CostComponent. It has 2 associations to related views. It is exposed through 2 OData services (ASQL_F4095, ASQL_F4254). Part of development package FINS_PCP_CUST_VDM.

Data Sources (1)

SourceAliasJoin Type
tckh1 tckh1 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CostComponentStructure _CostComponentStructure $projection.CostComponentStructure = _CostComponentStructure.CostComponentStructure
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IFICOSTCOMPT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AbapCatalog.buffering.status #ACTIVE view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Cost Component Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CostComponent view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F4095 ASQL_F4095 C2 NOT_RELEASED
ASQL_F4254 ASQL_F4254 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY CostComponentStructure elehk Reserve
KEY CostComponent elemt Cost Component
CostComponentName Name of Cost Comp.
_CostComponentStructure _CostComponentStructure
_Language _Language

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_CostComponentText.
-- 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_CostComponentText AS
SELECT
  spras AS Language,
  elehk AS CostComponentStructure,
  elemt AS CostComponent,
  cast(txele as fis_ck_txele preserving type ) AS CostComponentName
FROM tckh1
LEFT OUTER JOIN I_CostComponentStructure AS _CostComponentStructure ON CostComponentStructure = _CostComponentStructure.CostComponentStructure  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;