A_RecProcParamValClassCharc

DDL: A_RECPROCPARAMVALCLASSCHARC SQL: ANGCRPPCLFN2 Type: view CONSUMPTION Package: VDM_PLMB_RECIPE_API

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)

SourceAliasJoin Type
I_ClfnObjectCharcForKeyDate I_ClfnObjectCharcForKeyDate from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessParamValUUID RecipeProcessParamValue RecipeProcessParamValUUID
KEY ClassInternalID Characteristics ClassInternalID Int class no.
KEY CharcInternalID Characteristics CharcInternalID Characteristic Internal ID
KeyDate
ClassType Characteristics ClassType X Flag
CharcMaintAuthGrp
_Valuation _Valuation
_ClassDetails _ClassDetails
_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_RecProcParamValClassCharc.
-- 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: ANGCRPPCLFN2
-- Parameters: P_KeyDate : sydate

CREATE VIEW A_RecProcParamValClassCharc AS
SELECT
  RecipeProcessParamValue.RecipeProcessParamValUUID AS RecipeProcessParamValUUID,
  Characteristics.ClassInternalID AS ClassInternalID,
  Characteristics.CharcInternalID AS CharcInternalID,
  $parameters.P_KeyDate AS KeyDate,
  Characteristics.ClassType AS ClassType,
  Characteristics._Characteristic(P_KeyDate: $parameters.P_KeyDate).CharcMaintAuthGrp AS CharcMaintAuthGrp
FROM I_ClfnObjectCharcForKeyDate
LEFT OUTER JOIN A_RecProcParamValCharcValue AS _Valuation ON RecipeProcessParamValUUID = _Valuation.RecipeProcessParamValUUID AND CharcInternalID = _Valuation.CharcInternalID AND ClassType = _Valuation.ClassType  -- association [0..*]
LEFT OUTER JOIN A_RecProcParamValClass AS _ClassDetails ON RecipeProcessParamValUUID = _ClassDetails.RecipeProcessParamValUUID AND ClassInternalID = _ClassDetails.ClassInternalID  -- association [1..1]
LEFT OUTER JOIN A_RecipeProcessParamValue AS _RecipeProcessParamValue ON RecipeProcessParamValUUID = _RecipeProcessParamValue.RecipeProcessParamValUUID  -- association [1..1]
;