A_RecProcEquipRqmtClassCharc

DDL: A_RECPROCEQUIPRQMTCLASSCHARC SQL: ANGCRERCLFN2 Type: view CONSUMPTION

Recipe Equipment Requirement Classification Assignments

A_RecProcEquipRqmtClassCharc is a Consumption CDS View that provides data about "Recipe Equipment Requirement Classification Assignments" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectCharcForKeyDate) and exposes 9 fields with key fields RecipeProcessEquipRqmtUUID, ClassInternalID, CharcInternalID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ClfnObjectCharcForKeyDate I_ClfnObjectCharcForKeyDate from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (3)

CardinalityTargetAliasCondition
[0..*] A_RecProcEquipRqmtCharcValue _Valuation $projection.RecipeProcessEquipRqmtUUID = _Valuation.RecipeProcessEquipRqmtUUID and $projection.CharcInternalID = _Valuation.CharcInternalID and $projection.ClassType = _Valuation.ClassType
[1..1] A_RecProcEquipRqmtClass _ClassDetails $projection.RecipeProcessEquipRqmtUUID = _ClassDetails.RecipeProcessEquipRqmtUUID and $projection.ClassInternalID = _ClassDetails.ClassInternalID
[1..1] A_RecipeProcessEquipRqmt _RecipeProcessEquipRqmt $projection.RecipeProcessEquipRqmtUUID = _RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID

Annotations (13)

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

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessEquipRqmtUUID RecipeProcessEquipRqmt RecipeProcessEquipRqmtUUID
KEY ClassInternalID Characteristics ClassInternalID
KEY CharcInternalID Characteristics CharcInternalID
KeyDate
ClassType Characteristics ClassType
CharcMaintAuthGrp
_Valuation _Valuation
_ClassDetails _ClassDetails
_RecipeProcessEquipRqmt _RecipeProcessEquipRqmt
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ANGCRERCLFN2'
@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 Classification Assignments'
define view A_RecProcEquipRqmtClassCharc 
  with parameters
    @Consumption.hidden: true
    @Semantics.businessDate.at: true
    P_KeyDate:sydate
  as select from I_ClfnObjectCharcForKeyDate( P_KeyDate: $parameters.P_KeyDate ) as Characteristics
     join A_RecipeProcessEquipRqmt( P_KeyDate: $parameters.P_KeyDate ) as RecipeProcessEquipRqmt on
          Characteristics.ClfnObjectID = bintohex( RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID )
  
    association [0..*] to A_RecProcEquipRqmtCharcValue as _Valuation on
      $projection.RecipeProcessEquipRqmtUUID = _Valuation.RecipeProcessEquipRqmtUUID and
      $projection.CharcInternalID = _Valuation.CharcInternalID and
      $projection.ClassType = _Valuation.ClassType
    association [1..1] to A_RecProcEquipRqmtClass as _ClassDetails on
      $projection.RecipeProcessEquipRqmtUUID = _ClassDetails.RecipeProcessEquipRqmtUUID and
      $projection.ClassInternalID = _ClassDetails.ClassInternalID 
    association [1..1] to A_RecipeProcessEquipRqmt as _RecipeProcessEquipRqmt on
      $projection.RecipeProcessEquipRqmtUUID = _RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID
  {
    key RecipeProcessEquipRqmt.RecipeProcessEquipRqmtUUID,
    key Characteristics.ClassInternalID,
    key Characteristics.CharcInternalID,
    
    $parameters.P_KeyDate as KeyDate,
    Characteristics.ClassType,
    @Consumption.hidden: true
    _Characteristic(P_KeyDate: $parameters.P_KeyDate).CharcMaintAuthGrp,    
    
    _Valuation,
    _ClassDetails,
    _RecipeProcessEquipRqmt
  }
    where
      Characteristics.ClfnObjectTable = '/PLMB/RPR_EQR' and
      Characteristics.ClfnObjectType = 'O'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_RECIPEPROCESSEQUIPRQMT",
"I_CLFNCHARACTERISTICFORKEYDATE",
"I_CLFNOBJECTCHARCFORKEYDATE"
],
"ASSOCIATED":
[
"A_RECIPEPROCESSEQUIPRQMT",
"A_RECPROCEQUIPRQMTCHARCVALUE",
"A_RECPROCEQUIPRQMTCLASS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/