I_RECIPEPROCESSPARAMTEXT
Recipe Process Parameter Description
I_RECIPEPROCESSPARAMTEXT is a CDS View in S/4HANA. Recipe Process Parameter Description. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_RecipeProcessParamText | view | from | COMPOSITE | Recipe Process Parameter Descriptions |
@AbapCatalog.sqlViewName: 'IRPRPARAMTX'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'RecipeProcessParamUUID'
@ObjectModel.dataCategory: #TEXT
@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 Process Parameter Description'
define view I_RecipeProcessParamText
as select from /plmb/rcp_descr
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast( object_guid as /plmb/rpr_pp_guid preserving type ) as RecipeProcessParamUUID,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
// root_guid is the same as object_guid for PP_MASTER entries
@Semantics.text: true
descr as RecipeProcessParamDesc,
/* Associations */
_Language
}
where
owner = 'PP_MASTER'