I_EstdCostCostgRunStp

DDL: I_ESTDCOSTCOSTGRUNSTP Type: view BASIC

Estimated Cost Costing Run Step

I_EstdCostCostgRunStp is a Basic CDS View (Dimension) that provides data about "Estimated Cost Costing Run Step" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field EstimatedCostCostingRunStep. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EstdCostCostgRunStpText _Text $projection.EstimatedCostCostingRunStep = _Text.EstimatedCostCostingRunStep

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIESTDCOSTSTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
ObjectModel.representativeKey EstimatedCostCostingRunStep view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Estimated Cost Costing Run Step view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EstimatedCostCostingRunStep Lower Value
DomainValue domvalue_l Lower Value
_Text _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 I_EstdCostCostgRunStp.
-- 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_EstdCostCostgRunStp AS
SELECT
  cast(domvalue_l as ck_kalastep) AS EstimatedCostCostingRunStep,
  domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_EstdCostCostgRunStpText AS _Text ON EstimatedCostCostingRunStep = _Text.EstimatedCostCostingRunStep  -- association [0..*]
;