I_CostEstimateStatusText

DDL: I_COSTESTIMATESTATUSTEXT Type: view_entity BASIC Package: FINS_PCP_COSTING_RUN

Cost Estimate Status - Text

I_CostEstimateStatusText is a Basic CDS View that provides data about "Cost Estimate Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields CostEstimateStatus, Language. It has 1 association to related views. Part of development package FINS_PCP_COSTING_RUN.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CostEstimateStatus _CostEstimateStatus $projection.CostEstimateStatus = _CostEstimateStatus.CostEstimateStatus

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Cost Estimate Status - Text view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.representativeKey CostEstimateStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #TEXT view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CostEstimateStatus
KEY Language
DomainValue dd07t domvalue_l
CostEstimateStatusText ddtext
_CostEstimateStatus _CostEstimateStatus
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Cost Estimate Status - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel: {
  representativeKey: 'CostEstimateStatus',
  usageType: {
    serviceQuality: #A,
    sizeCategory: #S,
    dataClass: #MASTER
  },
  dataCategory: #TEXT
}
@Search.searchable: true

define view entity I_CostEstimateStatusText
  as select from dd07t

  association [1..1] to I_CostEstimateStatus as _CostEstimateStatus on $projection.CostEstimateStatus = _CostEstimateStatus.CostEstimateStatus
{

  key cast(domvalue_l as fpc_cost_estimate_status) as CostEstimateStatus,

      @Semantics.language: true
  key cast(ddlanguage as spras preserving type)    as Language,

      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l                             as DomainValue,

      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      ddtext                                       as CostEstimateStatusText,

      _CostEstimateStatus
}
where
      domname  = 'FPC_COST_ESTIMATE_STATUS'
  and as4local = 'A';