A_RecProcParamValCharc
Recipe Process Parameter Value Characteristic Assignments
A_RecProcParamValCharc is a Consumption CDS View that provides data about "Recipe Process Parameter Value Characteristic Assignments" in SAP S/4HANA. It has 3 associations to related views.
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..*] | A_RecProcParamValClassCharc | _ClassCharacteristics | $projection.RecipeProcessParamValUUID = _ClassCharacteristics.RecipeProcessParamValUUID and $projection.CharcInternalID = _ClassCharacteristics.CharcInternalID and $projection.ClassType = _ClassCharacteristics.ClassType |
| [1..1] | A_RecipeProcessParamValue | _RecipeProcessParamValue | $projection.RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ANGCRPPCLFN3 | 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 Process Parameter Value Characteristic Assignments | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecipeProcessParamValUUID | RecipeProcessParamValue | RecipeProcessParamValUUID | |
| KEY | CharcInternalID | Characteristics | CharcInternalID | |
| KEY | ClassType | Characteristics | ClassType | |
| KeyDate | ||||
| CharcMaintAuthGrp | ||||
| _Valuation | _Valuation | |||
| _ClassCharacteristics | _ClassCharacteristics | |||
| _RecipeProcessParamValue | _RecipeProcessParamValue |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ANGCRPPCLFN3'
@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 Process Parameter Value Characteristic Assignments'
define view A_RecProcParamValCharc
with parameters
@Consumption.hidden: true
@Semantics.businessDate.at: true
P_KeyDate:sydate
as select distinct 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..*] to A_RecProcParamValClassCharc as _ClassCharacteristics on
$projection.RecipeProcessParamValUUID = _ClassCharacteristics.RecipeProcessParamValUUID and
$projection.CharcInternalID = _ClassCharacteristics.CharcInternalID and
$projection.ClassType = _ClassCharacteristics.ClassType
association [1..1] to A_RecipeProcessParamValue as _RecipeProcessParamValue on
$projection.RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID
{
key RecipeProcessParamValue.RecipeProcessParamValUUID,
key Characteristics.CharcInternalID,
key Characteristics.ClassType,
$parameters.P_KeyDate as KeyDate,
@Consumption.hidden: true
_Characteristic(P_KeyDate: $parameters.P_KeyDate).CharcMaintAuthGrp,
_Valuation,
_ClassCharacteristics,
_RecipeProcessParamValue
}
where
ClfnObjectTable = '/PLMB/RPR_PP_VAL' and
ClfnObjectType = 'O'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_RECIPEPROCESSPARAMVALUE",
"I_CLFNCHARACTERISTICFORKEYDATE",
"I_CLFNOBJECTCHARCFORKEYDATE"
],
"ASSOCIATED":
[
"A_RECIPEPROCESSPARAMVALUE",
"A_RECPROCPARAMVALCHARCVALUE",
"A_RECPROCPARAMVALCLASSCHARC"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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