I_RECIPETEXT
Recipe Description
I_RECIPETEXT is a CDS View in S/4HANA. Recipe Description. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_RecipeTextTP | view | from | TRANSACTIONAL | Recipe Description (Transactional Processing) |
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IRECIPETEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RecipeUUID'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Recipe Description'
define view I_RecipeText
as select from /plmb/rcp_descr
association [1..1] to I_Recipe as _Recipe on $projection.RecipeUUID = _Recipe.RecipeUUID
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Recipe'
key cast( root_guid as /plmb/rcp_guid preserving type ) as RecipeUUID,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@Semantics.text: true
descr as RecipeDescription,
/* Associations */
_Language,
_Recipe
}
where
owner = 'RECIPE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMB/RCP_DESCR"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RECIPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/