A_RecProcParamValClassCharc
Recipe Process Parameter Value Classification Assignments
A_RecProcParamValClassCharc is a Consumption CDS View that provides data about "Recipe Process Parameter Value Classification Assignments" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectCharcForKeyDate) and exposes 9 fields with key fields RecipeProcessParamValUUID, ClassInternalID, CharcInternalID. It has 3 associations to related views. Part of development package VDM_PLMB_RECIPE_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnObjectCharcForKeyDate | I_ClfnObjectCharcForKeyDate | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_RecProcParamValCharcValue | _Valuation | $projection.RecipeProcessParamValUUID = _Valuation.RecipeProcessParamValUUID and $projection.CharcInternalID = _Valuation.CharcInternalID and $projection.ClassType = _Valuation.ClassType |
| [1..1] | A_RecProcParamValClass | _ClassDetails | $projection.RecipeProcessParamValUUID = _ClassDetails.RecipeProcessParamValUUID and $projection.ClassInternalID = _ClassDetails.ClassInternalID |
| [1..1] | A_RecipeProcessParamValue | _RecipeProcessParamValue | $projection.RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ANGCRPPCLFN2 | view | |
| AbapCatalog.compiler.compareFilter | 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 Process Parameter Value Classification Assignments | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecipeProcessParamValUUID | RecipeProcessParamValue | RecipeProcessParamValUUID | |
| KEY | ClassInternalID | Characteristics | ClassInternalID | |
| KEY | CharcInternalID | Characteristics | CharcInternalID | |
| KeyDate | ||||
| ClassType | Characteristics | ClassType | ||
| CharcMaintAuthGrp | ||||
| _Valuation | _Valuation | |||
| _ClassDetails | _ClassDetails | |||
| _RecipeProcessParamValue | _RecipeProcessParamValue |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ANGCRPPCLFN2'
@AbapCatalog.compiler.compareFilter: 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 Process Parameter Value Classification Assignments'
define view A_RecProcParamValClassCharc
with parameters
@Consumption.hidden: true
@Semantics.businessDate.at: true
P_KeyDate:sydate
as select from I_ClfnObjectCharcForKeyDate( P_KeyDate: $parameters.P_KeyDate ) as Characteristics
join A_RecipeProcessParamValue( P_KeyDate: $parameters.P_KeyDate ) as RecipeProcessParamValue on
Characteristics.ClfnObjectID = bintohex( RecipeProcessParamValue.RecipeProcessParamValUUID )
association [0..*] to A_RecProcParamValCharcValue as _Valuation on
$projection.RecipeProcessParamValUUID = _Valuation.RecipeProcessParamValUUID and
$projection.CharcInternalID = _Valuation.CharcInternalID and
$projection.ClassType = _Valuation.ClassType
association [1..1] to A_RecProcParamValClass as _ClassDetails on
$projection.RecipeProcessParamValUUID = _ClassDetails.RecipeProcessParamValUUID and
$projection.ClassInternalID = _ClassDetails.ClassInternalID
association [1..1] to A_RecipeProcessParamValue as _RecipeProcessParamValue on
$projection.RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID
{
key RecipeProcessParamValue.RecipeProcessParamValUUID,
key Characteristics.ClassInternalID,
key Characteristics.CharcInternalID,
$parameters.P_KeyDate as KeyDate,
Characteristics.ClassType,
@Consumption.hidden: true
Characteristics._Characteristic(P_KeyDate: $parameters.P_KeyDate).CharcMaintAuthGrp,
_Valuation,
_ClassDetails,
_RecipeProcessParamValue
}
where
Characteristics.ClfnObjectTable = '/PLMB/RPR_PP_VAL' and
Characteristics.ClfnObjectType = 'O'
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