I_RecipePurpose

DDL: I_RECIPEPURPOSE SQL: IRECIPEPURPOSE Type: view BASIC

Recipe Purpose

I_RecipePurpose is a Basic CDS View that provides data about "Recipe Purpose" in SAP S/4HANA. It reads from 1 data source (/plmb/rcp_usg) and exposes 3 fields with key field RecipePurpose. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/plmb/rcp_usg /plmb/rcp_usg from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_RecipePurposeText _RecipePurposeText $projection.RecipePurpose = _RecipePurposeText.RecipePurpose
[0..*] I_Recipe _Recipe $projection.RecipePurpose = _Recipe.RecipePurpose

Annotations (13)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IRECIPEPURPOSE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey RecipePurpose view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Recipe Purpose view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY RecipePurpose /plmb/rcp_usg rcp_usg_id
_RecipePurposeText _RecipePurposeText
_Recipe _Recipe
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IRECIPEPURPOSE'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.representativeKey: 'RecipePurpose'
@ObjectModel.semanticKey: [ 'RecipePurpose' ]
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC

@Search.searchable: true

@EndUserText.label: 'Recipe Purpose'
define view I_RecipePurpose
  as select from /plmb/rcp_usg

  association [0..*] to I_RecipePurposeText as _RecipePurposeText on $projection.RecipePurpose = _RecipePurposeText.RecipePurpose
  association [0..*] to I_Recipe            as _Recipe            on $projection.RecipePurpose = _Recipe.RecipePurpose
{
      @ObjectModel.text.association: '_RecipePurposeText'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key /plmb/rcp_usg.rcp_usg_id as RecipePurpose,

      /* Associations */
      _RecipePurposeText,
      _Recipe
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMB/RCP_USG"
],
"ASSOCIATED":
[
"I_RECIPE",
"I_RECIPEPURPOSETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/