C_RecipeFinderIssue
Recipe Finder Issue
C_RecipeFinderIssue is a Consumption CDS View that provides data about "Recipe Finder Issue" in SAP S/4HANA. It reads from 1 data source (I_Recipe) and exposes 8 fields with key fields RecipeUUID, SystemMessageType, SystemMessageNumber, SystemMessageIdentification, Recipe. Part of development package VDM_PLMB_RCA.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Recipe | I_Recipe | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CRCPFINDERISS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Recipe Finder Issue | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecipeUUID | RecipeUUID | ||
| KEY | SystemMessageType | |||
| KEY | SystemMessageNumber | |||
| KEY | SystemMessageIdentification | |||
| KEY | Recipe | Recipe | ||
| KEY | RecipeFinderSearchItem | |||
| KEY | RecipeFinderSearchDate | |||
| SystemMessageDescription |
@AbapCatalog.sqlViewName: 'CRCPFINDERISS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Recipe Finder Issue'
define view C_RecipeFinderIssue
as select from I_Recipe
{
key RecipeUUID,
key cast('' as msgty) as SystemMessageType,
key cast('' as msgnr) as SystemMessageNumber,
key cast('' as msgid ) as SystemMessageIdentification,
key Recipe,
key cast('' as /plmb/rca_calc_item ) as RecipeFinderSearchItem,
key cast('' as /plmb/rca_search_date ) as RecipeFinderSearchDate,
cast('' as farp_natxt ) as SystemMessageDescription
}
where
RecipeUUID is null
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