A_RecProcEquipRqmtClass

DDL: A_RECPROCEQUIPRQMTCLASS SQL: ANGCRERCLFN1 Type: view CONSUMPTION

Recipe Equipment Requirement Class Assignments

A_RecProcEquipRqmtClass is a Consumption CDS View that provides data about "Recipe Equipment Requirement Class Assignments" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectClassForKeyDate) and exposes 8 fields with key fields RecipeProcessEquipRqmtUUID, 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_RecProcEquipRqmtClassCharc _Characteristics $projection.RecipeProcessEquipRqmtUUID = _Characteristics.RecipeProcessEquipRqmtUUID and $projection.ClassInternalID = _Characteristics.ClassInternalID
[1..1] A_RecipeProcessEquipRqmt _RecipeProcessEquipRqmt $projection.RecipeProcessEquipRqmtUUID = _RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID

Annotations (13)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessEquipRqmtUUID RecipeProcessEquipRqmt RecipeProcessEquipRqmtUUID
KEY ClassInternalID Classification ClassInternalID
KeyDate
ClassType ClassType
ClassClassfctnAuthGrp
ClassMaintAuthGrp
_Characteristics _Characteristics
_RecipeProcessEquipRqmt _RecipeProcessEquipRqmt
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ANGCRERCLFN1'
@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 Equipment Requirement Class Assignments'
define view A_RecProcEquipRqmtClass 
  with parameters
    @Consumption.hidden: true
    @Semantics.businessDate.at: true
    P_KeyDate:sydate
  as select from I_ClfnObjectClassForKeyDate( P_KeyDate: $parameters.P_KeyDate ) Classification
     join A_RecipeProcessEquipRqmt( P_KeyDate: $parameters.P_KeyDate ) as RecipeProcessEquipRqmt on
          Classification.ClfnObjectID = bintohex( RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID )
   
    association [0..*] to A_RecProcEquipRqmtClassCharc as _Characteristics on
      $projection.RecipeProcessEquipRqmtUUID = _Characteristics.RecipeProcessEquipRqmtUUID and
      $projection.ClassInternalID = _Characteristics.ClassInternalID 
    association [1..1] to A_RecipeProcessEquipRqmt as _RecipeProcessEquipRqmt on
      $projection.RecipeProcessEquipRqmtUUID = _RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID     
  {
    key RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID,
    key Classification.ClassInternalID,
    
    $parameters.P_KeyDate as KeyDate,
    ClassType,    
    _Class( P_KeyDate: $parameters.P_KeyDate ).ClassClassfctnAuthGrp,
    @Consumption.hidden: true
    _Class( P_KeyDate: $parameters.P_KeyDate ).ClassMaintAuthGrp,
    
    _Characteristics,
    _RecipeProcessEquipRqmt
  }
    where
      ClfnObjectTable       = '/PLMB/RPR_EQR'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_RECIPEPROCESSEQUIPRQMT",
"I_CLFNCLASSFORKEYDATE",
"I_CLFNOBJECTCLASSFORKEYDATE"
],
"ASSOCIATED":
[
"A_RECIPEPROCESSEQUIPRQMT",
"A_RECPROCEQUIPRQMTCLASSCHARC"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/