A_RecipeClass
Recipe Class Assignments
A_RecipeClass is a Consumption CDS View that provides data about "Recipe Class Assignments" in SAP S/4HANA. It reads from 1 data source (I_RecipeClassTP) and exposes 8 fields with key fields RecipeUUID, ClassInternalID. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_RecipeClassTP | I_RecipeClassTP | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_RecipeClassCharc | _Characteristics | $projection.RecipeUUID = _Characteristics.RecipeUUID and $projection.ClassInternalID = _Characteristics.ClassInternalID |
| [1..1] | A_Recipe | _Recipe | $projection.RecipeUUID = _Recipe.RecipeUUID |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ANGCRECCLFN1 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Consumption.filter.businessDate.at | true | view | |
| EndUserText.label | Recipe Class Assignments | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecipeUUID | RecipeUUID | ||
| KEY | ClassInternalID | ClassInternalID | ||
| ClassClassfctnAuthGrp | ||||
| ClassMaintAuthGrp | ||||
| KeyDate | ||||
| ClassType | ClassType | |||
| _Characteristics | _Characteristics | |||
| _Recipe | _Recipe |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ANGCRECCLFN1'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@Consumption.filter.businessDate.at: true
@EndUserText.label: 'Recipe Class Assignments'
define view A_RecipeClass
with parameters
@Consumption.hidden: true
@Semantics.businessDate.at: true
P_KeyDate:sydate
as select from I_RecipeClassTP( P_KeyDate: $parameters.P_KeyDate ) as Classification
association [0..*] to A_RecipeClassCharc as _Characteristics on
$projection.RecipeUUID = _Characteristics.RecipeUUID and
$projection.ClassInternalID = _Characteristics.ClassInternalID
association [1..1] to A_Recipe as _Recipe on
$projection.RecipeUUID = _Recipe.RecipeUUID
{
key RecipeUUID,
key ClassInternalID,
@Consumption.hidden: true
_Class( P_KeyDate: $parameters.P_KeyDate ).ClassClassfctnAuthGrp,
@Consumption.hidden: true
_Class( P_KeyDate: $parameters.P_KeyDate ).ClassMaintAuthGrp,
@ObjectModel.readOnly: true
$parameters.P_KeyDate as KeyDate,
ClassType,
_Characteristics,
_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