A_RecipeProcessParamText

DDL: A_RECIPEPROCESSPARAMTEXT SQL: ARPRPARAMTX Type: view COMPOSITE

Recipe Process Parameter Descriptions

A_RecipeProcessParamText is a Composite CDS View that provides data about "Recipe Process Parameter Descriptions" in SAP S/4HANA. It reads from 1 data source (I_RecipeProcessParamText) and exposes 4 fields with key fields RecipeProcessParamUUID, Language.

Data Sources (1)

SourceAliasJoin Type
I_RecipeProcessParamText I_RecipeProcessParamText from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ARPRPARAMTX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RecipeProcessParamUUID view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Recipe Process Parameter Descriptions view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessParamUUID RecipeProcessParamUUID
KEY Language Language
RecipeProcessParamDesc RecipeProcessParamDesc
_RecipeProcessParam _RecipeProcessParam
@AbapCatalog.sqlViewName: 'ARPRPARAMTX'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RecipeProcessParamUUID'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER

@ObjectModel.createEnabled: false
@ObjectModel.updateEnabled: false
@ObjectModel.deleteEnabled: false

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Recipe Process Parameter Descriptions'
define view A_RecipeProcessParamText as select from I_RecipeProcessParamText 
  association to parent A_RecipeProcessParam as _RecipeProcessParam on $projection.RecipeProcessParamUUID = _RecipeProcessParam.RecipeProcessParamUUID
{
  key RecipeProcessParamUUID, 
  
  @Semantics.language: true
  key Language, 
  
  @Semantics.text: true
  RecipeProcessParamDesc,
  
  _RecipeProcessParam
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RECIPEPROCESSPARAMTEXT"
],
"ASSOCIATED":
[
"A_RECIPEPROCESSPARAM"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/