Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method GetIsWithinSalesDemandQtyThreshold ( 
 | 
  output Strings feedback_o, 
 | 
  output Strings sanitycheckfeedback_o 
 | 
) declarative remote as Boolean 
 | 
{ 
 | 
  Description: 'Indicates if this sales demand has quantity within the threshold that optimizer will consider it.' 
 | 
  TextBody: 
 | 
  [* 
 | 
    // Kth1 Nov-25-2016 (created) 
 | 
    isvalid := this.IsWithinSalesDemandQtyThreshold(); 
 | 
     
 | 
    if( not isnull( feedback_o ) and not isvalid ) 
 | 
    { 
 | 
      instance := SalesDemandBase::GetInstanceText( this.Product_MP(), 
 | 
                                                this.SalesSegment_MP(), 
 | 
                                                this.StartDate(), 
 | 
                                                this.EndDate(), 
 | 
                                                this.GetTypeName() ); 
 | 
                                                 
 | 
      minthreshold := this.Product_MP().MacroPlan().GlobalParameters_MP().MinimumSalesDemandQtyThreshold(); 
 | 
     
 | 
      feedback_o.Add( SanityCheckMessage::GetFormattedMessage( instance,  
 | 
                                                               Translations::MP_SalesDemand_ViolateHasValidSalesDemandQuantityThreshold( this.QuantityInDefaultUoM().Round( this.MacroPlan().GlobalParameters_MP().NumberOfDecimals() ),  
 | 
                                                                                                                                         minthreshold,  
 | 
                                                                                                                                         guard( this.Product_MP().MacroPlan().DefaultUnitOfMeasure().Name(), '' ), 
 | 
                                                                                                                                         this.GetTypeName() ) ) ); 
 | 
      sanitycheckfeedback_o.Add( SanityCheckCategoryLevel::GetSanityCheckCategoryDataWarning() ); 
 | 
    } 
 | 
     
 | 
    return isvalid; 
 | 
  *] 
 | 
} 
 |