I_EstdCostRunProcgModeT

DDL: I_ESTDCOSTRUNPROCGMODET Type: view BASIC

Estimated Cost Costing Run Processing Mode Text

I_EstdCostRunProcgModeT is a Basic CDS View that provides data about "Estimated Cost Costing Run Processing Mode Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, EstdCostCostgRunProcessingMode. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIESTDCOSTPRGMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey EstdCostCostgRunProcessingMode 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
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Estimated Cost Costing Run Processing Mode Text view

Fields (6)

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

define view I_EstdCostRunProcgModeT
  as select from dd07t
  association [0..1] to I_EstdCostRunProcgMode as _EstdCostRunProcgMode on $projection.EstdCostCostgRunProcessingMode = _EstdCostRunProcgMode.EstdCostCostgRunProcessingMode
  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 preserving type )                    as Language,
  key cast( substring ( domvalue_l, 1, 1 ) as fml_processing_mode ) as EstdCostCostgRunProcessingMode,
      
      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l                                              as DomainValue,
      
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      ddtext                                                        as EstdCostCostgRunProcgModeName,
      
      _EstdCostRunProcgMode,
      _Language
}
where
      domname  = 'FML_PROCESSING_MODE'
  and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_ESTDCOSTRUNPROCGMODE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/