I_RecipeStatusText
Recipe Status Text
I_RecipeStatusText is a Composite CDS View that provides data about "Recipe Status Text" in SAP S/4HANA. It reads from 2 data sources (I_RecipeStatus, I_StsActnMgmtStatusText) and exposes 5 fields with key fields RecipeStatus, Language. It has 2 associations to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_RecipeStatus | I_RecipeStatus | inner |
| I_StsActnMgmtStatusText | I_StsActnMgmtStatusText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_RecipeStatus | _RecipeStatus | $projection.RecipeStatus = _RecipeStatus.RecipeStatus |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IRECIPESTATUSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | RecipeStatus | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| Search.searchable | true | view | |
| EndUserText.label | Recipe Status Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecipeStatus | |||
| KEY | Language | I_StsActnMgmtStatusText | Language | |
| RecipeStatusDescription | ||||
| _RecipeStatus | _RecipeStatus | |||
| _Language | _Language |
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IRECIPESTATUSTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RecipeStatus'
@ObjectModel.semanticKey: [ 'RecipeStatus' ]
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #COMPOSITE
@Search.searchable: true
@EndUserText.label: 'Recipe Status Text'
define view I_RecipeStatusText
as select from I_StsActnMgmtStatusText
inner join I_RecipeStatus as I_RecipeStatus on I_StsActnMgmtStatusText.StsActnMgmtStatus = I_RecipeStatus.RecipeStatus
and I_StsActnMgmtStatusText.StsActnMgmtObjectType = ''
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_RecipeStatus as _RecipeStatus on $projection.RecipeStatus = _RecipeStatus.RecipeStatus
{
@ObjectModel.foreignKey.association: '_RecipeStatus'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key cast( I_StsActnMgmtStatusText.StsActnMgmtStatus as /plmb/rcp_status preserving type ) as RecipeStatus,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key I_StsActnMgmtStatusText.Language as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast( I_StsActnMgmtStatusText.StsActnMgmtStatusText as /plmb/rcp_status_desc preserving type ) as RecipeStatusDescription,
/* Associations */
_RecipeStatus,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RECIPESTATUS",
"I_STSACTNMGMTSTATUSTEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RECIPESTATUS"
],
"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