A_RecipeProcessParamValueTxt
Recipe Process Parameter Value Descriptions
A_RecipeProcessParamValueTxt is a Consumption CDS View that provides data about "Recipe Process Parameter Value Descriptions" in SAP S/4HANA. It reads from 1 data source (I_RecipeProcessParamValueTxtTP) and exposes 15 fields with key fields RecipeProcessParamValUUID, Language. It has 1 association to related views. Part of development package VDM_PLMB_RECIPE_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_RecipeProcessParamValueTxtTP | I_RecipeProcessParamValueTxtTP | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | dats |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_Recipe | _Recipe | $projection.RecipeProcessUUID = _Recipe.RecipeProcessUUID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | RecipeProcessParamValUUID | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Consumption.filter.businessDate.at | true | view | |
| EndUserText.label | Recipe Process Parameter Value Descriptions | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecipeProcessParamValUUID | RecipeProcessParamValUUID | ||
| KEY | Language | Language | ||
| RecipeProcessUUID | RecipeProcessUUID | |||
| RecipeProcessParamValueDesc | RecipeProcessParamValueDesc | |||
| RecipeLastChangeDateTime | RecipeLastChangeDateTime | |||
| RecipeUUID | ||||
| Recipe | Recipe | |||
| RecipeProcessEquipRqmtPosNmbr | RecipeProcessEquipRqmtPosNmbr | |||
| RecipeProcessStagePosNmbr | RecipeProcessStagePosNmbr | |||
| RecipeProcessOperationPosNmbr | RecipeProcessOperationPosNmbr | |||
| RecipeProcessActionPosNmbr | RecipeProcessActionPosNmbr | |||
| RecipeProcessParamSqncNmbr | RecipeProcessParamSqncNmbr | |||
| _RecipeProcessParamValue | _RecipeProcessParamValue | |||
| _RecipeLock | ||||
| _Recipe | _Recipe |
//@AbapCatalog.sqlViewName: 'ARPRPARAMVALTX'
//@AbapCatalog.compiler.compareFilter: true
//@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
//@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RecipeProcessParamValUUID'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@Metadata.ignorePropagatedAnnotations: true
@Consumption.filter.businessDate.at: true
@EndUserText.label: 'Recipe Process Parameter Value Descriptions'
define view entity A_RecipeProcessParamValueTxt
with parameters
@Consumption.hidden: true
@Semantics.businessDate.at: true
P_KeyDate :dats
as select from I_RecipeProcessParamValueTxtTP( P_KeyDate: $parameters.P_KeyDate )
association to parent A_RecipeProcessParamValue as _RecipeProcessParamValue on $projection.RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID
association [1..1] to A_Recipe as _Recipe on $projection.RecipeProcessUUID = _Recipe.RecipeProcessUUID
{
key RecipeProcessParamValUUID,
@Semantics.language: true
key Language,
RecipeProcessUUID,
@Semantics.text: true
RecipeProcessParamValueDesc,
RecipeLastChangeDateTime,
_RecipeProcessParamValue( P_KeyDate: $parameters.P_KeyDate ).RecipeUUID,
Recipe,
RecipeProcessEquipRqmtPosNmbr,
RecipeProcessStagePosNmbr,
RecipeProcessOperationPosNmbr,
RecipeProcessActionPosNmbr,
RecipeProcessParamSqncNmbr,
_RecipeProcessParamValue,
//Associations
_RecipeProcessParamValue( P_KeyDate: $parameters.P_KeyDate )._Recipe as _RecipeLock,
_Recipe
}
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