P_RSHMNTSCHDORDWOEXPLREL

CDS View

Schedule Order w/o explicit relationship

P_RSHMNTSCHDORDWOEXPLREL is a CDS View in S/4HANA. Schedule Order w/o explicit relationship. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_RSHMntSchdOrdOpWOExplRel view from CONSUMPTION Schedule Operations w/o explicit rel
@AbapCatalog.sqlViewName: 'PRSHSCHDORDWOREL'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Schedule Order w/o explicit relationship'
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@VDM.private: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #META
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true

define view P_RSHMntSchdOrdWOExplRel
  as select distinct from I_RSHMaintSchedOpList  as op
  
    left outer to many join I_ProjectNetworkRelationship  as rel
   on rel.ObjectIsDeleted = '' and
      ( rel.PredecessorProjNtwkIntID = op.MaintOrderRoutingNumber or 
        rel.SuccessorProjNtwkIntID   = op.MaintOrderRoutingNumber )
{

key MaintSchedSimlnUUID,
 MaintOrderRoutingNumber
 
}
 where
   rel.PredecessorProjNtwkIntID is null
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PROJECTNETWORKRELATIONSHIP",
"I_RSHMAINTSCHEDOPLIST"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/