I_RecipePurposeText

DDL: I_RECIPEPURPOSETEXT SQL: IRECIPEPURPOSET Type: view BASIC

Recipe Purpose Text

I_RecipePurposeText is a Basic CDS View that provides data about "Recipe Purpose Text" in SAP S/4HANA. It reads from 1 data source (/plmb/rcp_usgdes) and exposes 5 fields with key fields RecipePurpose, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/plmb/rcp_usgdes /plmb/rcp_usgdes from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IRECIPEPURPOSET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT 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 Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RecipePurpose /plmb/rcp_usgdes rcp_usg_id
KEY Language /plmb/rcp_usgdes spras
RecipePurposeDescription /plmb/rcp_usgdes rcp_usg_des
_Language _Language
_RecipePurpose _RecipePurpose
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IRECIPEPURPOSET'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@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 Text'
define view I_RecipePurposeText
  as select from /plmb/rcp_usgdes

  association [0..1] to I_Language      as _Language      on $projection.Language = _Language.Language
  association [1..1] to I_RecipePurpose as _RecipePurpose on $projection.RecipePurpose = _RecipePurpose.RecipePurpose

{
      @ObjectModel.foreignKey.association: '_RecipePurpose'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key /plmb/rcp_usgdes.rcp_usg_id  as RecipePurpose,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language
  key /plmb/rcp_usgdes.spras       as Language,

      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      /plmb/rcp_usgdes.rcp_usg_des as RecipePurposeDescription,


      /* Associations */
      _Language,
      _RecipePurpose
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMB/RCP_USGDES"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RECIPEPURPOSE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/