A_RecipeClassCharc

DDL: A_RECIPECLASSCHARC SQL: ANGCRCPCLFN2 Type: view CONSUMPTION

Recipe Class and Characteristic Assignments

A_RecipeClassCharc is a Consumption CDS View that provides data about "Recipe Class and Characteristic Assignments" in SAP S/4HANA. It reads from 1 data source (I_RecipeClassCharcTP) and exposes 9 fields with key fields RecipeUUID, ClassInternalID, CharcInternalID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_RecipeClassCharcTP I_RecipeClassCharcTP from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (3)

CardinalityTargetAliasCondition
[0..*] A_RecipeCharcValue _Valuation $projection.RecipeUUID = _Valuation.RecipeUUID and $projection.CharcInternalID = _Valuation.CharcInternalID and $projection.ClassType = _Valuation.ClassType
[1..1] A_RecipeClass _ClassDetails $projection.RecipeUUID = _ClassDetails.RecipeUUID and $projection.ClassInternalID = _ClassDetails.ClassInternalID
[1..1] A_Recipe _Recipe $projection.RecipeUUID = _Recipe.RecipeUUID

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ANGCRCPCLFN2 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 and Characteristic Assignments view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY RecipeUUID RecipeUUID
KEY ClassInternalID ClassInternalID
KEY CharcInternalID CharcInternalID
KeyDate
ClassType ClassType
CharcMaintAuthGrp
_Valuation _Valuation
_ClassDetails _ClassDetails
_Recipe _Recipe
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ANGCRCPCLFN2'
@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 and Characteristic Assignments'
define view A_RecipeClassCharc 
  with parameters
    @Consumption.hidden: true
    @Semantics.businessDate.at: true
    P_KeyDate:sydate
  as select from I_RecipeClassCharcTP( P_KeyDate: $parameters.P_KeyDate ) as Characteristics 
    association [0..*] to A_RecipeCharcValue as _Valuation on
      $projection.RecipeUUID = _Valuation.RecipeUUID and
      $projection.CharcInternalID = _Valuation.CharcInternalID and
      $projection.ClassType = _Valuation.ClassType
    association [1..1] to A_RecipeClass as _ClassDetails on
      $projection.RecipeUUID = _ClassDetails.RecipeUUID and
      $projection.ClassInternalID = _ClassDetails.ClassInternalID 
    association [1..1] to A_Recipe as _Recipe on
      $projection.RecipeUUID = _Recipe.RecipeUUID
  {
    key RecipeUUID,
    key ClassInternalID,
    key CharcInternalID,
    
    @ObjectModel.readOnly: true
    $parameters.P_KeyDate as KeyDate,
    ClassType,
    @Consumption.hidden: true
    _Characteristic( P_KeyDate: $parameters.P_KeyDate ).CharcMaintAuthGrp,    
    
    _Valuation,
    _ClassDetails,
    _Recipe
  }
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CLFNCHARACTERISTICFORKEYDATE",
"I_RECIPECLASSCHARCTP"
],
"ASSOCIATED":
[
"A_RECIPE",
"A_RECIPECHARCVALUE",
"A_RECIPECLASS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/