I_EstdCostCostgRunStpText

DDL: I_ESTDCOSTCOSTGRUNSTPTEXT Type: view BASIC

Estimated Cost Costing Run Step Text

I_EstdCostCostgRunStpText is a Basic CDS View that provides data about "Estimated Cost Costing Run Step Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, EstimatedCostCostingRunStep. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (14)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY EstimatedCostCostingRunStep
DomainValue domvalue_l
EstdCostCostingRunStepName
_Language _Language
@AbapCatalog: {
  sqlViewName: 'IFIESTDCOSTSTPT',
  preserveKey: true, 
  compiler.compareFilter: true }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { 
  representativeKey: 'EstimatedCostCostingRunStep',
  usageType: {
    serviceQuality: #A,
    sizeCategory: #S,
    dataClass: #MASTER },
  dataCategory: #TEXT}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Estimated Cost Costing Run Step Text'

define view I_EstdCostCostgRunStpText
  as select from dd07t
  association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(ddlanguage as spras)                                 as Language,
  key cast(domvalue_l as ck_kalastep)                           as EstimatedCostCostingRunStep,
      
      @Analytics.hidden: true
      @Consumption.hidden: true
      domvalue_l                                                as DomainValue,
      
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      cast(ddtext as fml_costing_run_step_text preserving type) as EstdCostCostingRunStepName,
      
      _Language
}
where
      domname       = 'CK_KALASTEP'
  and as4local      = 'A'
  and dd07t.as4vers = '0000';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/