P_RECIPESTATUS
P_RECIPESTATUS is a CDS View in S/4HANA. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_RecipeStatus | view | from | COMPOSITE | Recipe Status |
@AbapCatalog.sqlViewName: 'PRCPSTATUS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@VDM.lifecycle.contract.type: #NONE
@VDM.viewType: #COMPOSITE
define view P_RecipeStatus
as select from I_RecipeType as type
inner join I_StsActnMgmtSchemaTrnstn as edge on type.RecipeStatusSchema = edge.StsActnMgmtSchema
and edge.StsActnMgmtObjectType = ''
{
edge.StsActnMgmtTrnstnFromStatus as RecipeStatus
}
union select from I_RecipeType as type
inner join I_StsActnMgmtSchemaTrnstn as edge on type.RecipeStatusSchema = edge.StsActnMgmtSchema
and edge.StsActnMgmtObjectType = ''
{
edge.StsActnMgmtTrnstnToStatus as RecipeStatus
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RECIPETYPE",
"I_STSACTNMGMTSCHEMATRNSTN"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/