I_ControlRecipeDestination

DDL: I_CONTROLRECIPEDESTINATION SQL: IPPCTRLRECDEST Type: view BASIC

Control Recipe Destination

I_ControlRecipeDestination is a Basic CDS View (Dimension) that provides data about "Control Recipe Destination" in SAP S/4HANA. It reads from 1 data source (tc52) and exposes 8 fields with key fields Plant, ControlRecipeDestination. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tc52 tc52 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[1..1] I_ControlRecipeDestinationType _Type $projection.ControlRecipeDestinationType = _Type.ControlRecipeDestinationType

Annotations (24)

NameValueLevelField
AbapCatalog.sqlViewName IPPCTRLRECDEST view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 002 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #CLIENT_DEPENDENT view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ControlRecipeDestination view
ObjectModel.sapObjectNodeType.name ControlRecipeDestination view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Control Recipe Destination view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Plant tc52 werks
KEY ControlRecipeDestination
ControlRecipeDestinationType tc52 comty
ControlRecipeDestinationName tc52 sebez
DigitalSignatureIsRequired tc52 elec_sign
NumberOfPhasesDisplayed tc52 vis_phases
_Plant _Plant
_Type _Type
@AbapCatalog.sqlViewName: 'IPPCTRLRECDEST'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 002}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@ClientHandling.type: #CLIENT_DEPENDENT
@Consumption.ranked: true
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'ControlRecipeDestination'
@ObjectModel.sapObjectNodeType.name: 'ControlRecipeDestination'
@ObjectModel.semanticKey: ['Plant', 'ControlRecipeDestination']
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Control Recipe Destination'

/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_ControlRecipeDestination
  as select from tc52 as tc52

  association [1..1] to I_Plant                        as _Plant on  $projection.Plant = _Plant.Plant
  association [1..1] to I_ControlRecipeDestinationType as _Type  on  $projection.ControlRecipeDestinationType = _Type.ControlRecipeDestinationType
{
      // Key

      @ObjectModel.foreignKey.association: '_Plant'
      @Search: {defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8}
  key tc52.werks      as Plant,
      @ObjectModel.text.element: ['ControlRecipeDestinationName']
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(tc52.phseq as vdm_phseq preserving type) as ControlRecipeDestination,
      @ObjectModel.foreignKey.association: '_Type'
      tc52.comty      as ControlRecipeDestinationType,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      tc52.sebez      as ControlRecipeDestinationName,
      tc52.elec_sign  as DigitalSignatureIsRequired,
      tc52.vis_phases as NumberOfPhasesDisplayed,

      // Associations

      _Plant,
      _Type
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TC52"
],
"ASSOCIATED":
[
"I_CONTROLRECIPEDESTINATIONTYPE",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/