A_RecipeProcessParamText
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)
| Source | Alias | Join Type |
|---|---|---|
| I_RecipeProcessParamText | I_RecipeProcessParamText | from |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA