I_RecipeIngredientIsUsedAsText

DDL: I_RECIPEINGREDIENTISUSEDASTEXT SQL: IRCPISUSEDAST Type: view BASIC

Recipe Ingredient Is Used As Text

I_RecipeIngredientIsUsedAsText is a Basic CDS View that provides data about "Recipe Ingredient Is Used As Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields RecipeIngredientIsUsedAs, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_RecipeIngredientIsUsedAs _RecipeIngredientIsUsedAs $projection.RecipeIngredientIsUsedAs = _RecipeIngredientIsUsedAs.RecipeIngredientIsUsedAs
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IRCPISUSEDAST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Recipe Ingredient Is Used As Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey RecipeIngredientIsUsedAs view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RecipeIngredientIsUsedAs
KEY Language dd07t ddlanguage
RecipeIngredientIsUsedAsDesc
_RecipeIngredientIsUsedAs _RecipeIngredientIsUsedAs
_Language _Language
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IRCPISUSEDAST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

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

@EndUserText.label: 'Recipe Ingredient Is Used As Text'

@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.representativeKey:  'RecipeIngredientIsUsedAs'
@ObjectModel.semanticKey:  [ 'RecipeIngredientIsUsedAs' ]


define view I_RecipeIngredientIsUsedAsText
  as select from dd07t
  association [0..1] to I_RecipeIngredientIsUsedAs as _RecipeIngredientIsUsedAs on $projection.RecipeIngredientIsUsedAs = _RecipeIngredientIsUsedAs.RecipeIngredientIsUsedAs
  association [0..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_RecipeIngredientIsUsedAs'
  key cast( dd07t.domvalue_l as /plmb/rcp_ingr_is_used_as )      as RecipeIngredientIsUsedAs,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                           as Language,

      @Semantics.text
      cast( dd07t.ddtext as /plmb/rcp_ingr_is_used_as_desc )     as RecipeIngredientIsUsedAsDesc,

      /* Associations */
      _RecipeIngredientIsUsedAs,
      _Language
}
where
      dd07t.domname  = '/PLMB/RCP_INGR_IS_USED_AS'
  and dd07t.as4local = 'A'

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RECIPEINGREDIENTISUSEDAS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/