I_RECIPECLASSTP
TP for Recipe Class
I_RECIPECLASSTP is a CDS View in S/4HANA. TP for Recipe Class. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_RecipeClass | view | from | CONSUMPTION | Recipe Class Assignments |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IRECCLSTP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'TP for Recipe Class'
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
define view I_RecipeClassTP
with parameters
@Consumption.hidden: true
@Semantics.businessDate.at: true
P_KeyDate:sydate
as select from I_ClfnObjectClassForKeyDate( P_KeyDate:$parameters.P_KeyDate ) as Classification
join I_RecipeForKeyDateTP( P_KeyDate: $parameters.P_KeyDate ) as Recipe on
Classification.ClfnObjectID = bintohex( Recipe.RecipeUUID )
association [0..*] to I_RecipeClassCharcTP as _Characteristic on
$projection.RecipeUUID = _Characteristic.RecipeUUID and
$projection.ClassInternalID = _Characteristic.ClassInternalID
association [1..1] to I_ClfnClassForKeyDate as _Class on
$projection.ClassInternalID = _Class.ClassInternalID
association [1..1] to I_RecipeForKeyDateTP as _Recipe on
$projection.RecipeUUID = _Recipe.RecipeUUID
{
key Recipe.RecipeUUID,
key Classification.ClassInternalID,
$parameters.P_KeyDate as KeyDate,
Classification.ClassType,
_Characteristic,
_Class,
_Recipe
}
where
Classification.ClfnObjectTable = '/PLMB/RCP_RECIPE'