A_RecProcParamValClass

DDL: A_RECPROCPARAMVALCLASS SQL: ANGCRPPCLFN1 Type: view CONSUMPTION

Recipe Process Parameter Value Class Assignments

A_RecProcParamValClass is a Consumption CDS View that provides data about "Recipe Process Parameter Value Class Assignments" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectClassForKeyDate) and exposes 8 fields with key fields RecipeProcessParamValUUID, ClassInternalID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ClfnObjectClassForKeyDate I_ClfnObjectClassForKeyDate from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (2)

CardinalityTargetAliasCondition
[0..*] A_RecProcParamValClassCharc _Characteristics $projection.RecipeProcessParamValUUID = _Characteristics.RecipeProcessParamValUUID and $projection.ClassInternalID = _Characteristics.ClassInternalID
[1..1] A_RecipeProcessParamValue _RecipeProcessParamValue $projection.RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ANGCRPPCLFN1 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 Class Assignments view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessParamValUUID RecipeProcessParamValue RecipeProcessParamValUUID
KEY ClassInternalID Classification ClassInternalID Int class no.
KeyDate
ClassType Classification ClassType X Flag
ClassClassfctnAuthGrp
ClassMaintAuthGrp
_Characteristics _Characteristics
_RecipeProcessParamValue _RecipeProcessParamValue

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view A_RecProcParamValClass.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ANGCRPPCLFN1
-- Parameters: P_KeyDate : sydate

CREATE VIEW A_RecProcParamValClass AS
SELECT
  RecipeProcessParamValue.RecipeProcessParamValUUID AS RecipeProcessParamValUUID,
  Classification.ClassInternalID AS ClassInternalID,
  $parameters.P_KeyDate AS KeyDate,
  Classification.ClassType AS ClassType,
  Classification._Class( P_KeyDate: $parameters.P_KeyDate ).ClassClassfctnAuthGrp AS ClassClassfctnAuthGrp,
  Classification._Class( P_KeyDate: $parameters.P_KeyDate ).ClassMaintAuthGrp AS ClassMaintAuthGrp
FROM I_ClfnObjectClassForKeyDate
LEFT OUTER JOIN A_RecProcParamValClassCharc AS _Characteristics ON RecipeProcessParamValUUID = _Characteristics.RecipeProcessParamValUUID AND ClassInternalID = _Characteristics.ClassInternalID  -- association [0..*]
LEFT OUTER JOIN A_RecipeProcessParamValue AS _RecipeProcessParamValue ON RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID  -- association [1..1]
;