A_RecipeCharc

DDL: A_RECIPECHARC SQL: ANGCRECCLFN5 Type: view CONSUMPTION

Recipe Characteristic Assignments

A_RecipeCharc is a Consumption CDS View that provides data about "Recipe Characteristic Assignments" in SAP S/4HANA. It has 3 associations to related views.

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..*] A_RecipeClassCharc _ClassCharacteristics $projection.RecipeUUID = _ClassCharacteristics.RecipeUUID and $projection.CharcInternalID = _ClassCharacteristics.CharcInternalID and $projection.ClassType = _ClassCharacteristics.ClassType
[1..1] A_Recipe _Recipe $projection.RecipeUUID = _Recipe.RecipeUUID

Annotations (13)

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

Fields (8)

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