Quintiq file version 2.0 
 | 
#parent: #root 
 | 
StaticMethod CanCreate ( 
 | 
  output String feedback_o, 
 | 
  SalesSegment_MPs salessegments, 
 | 
  Product_MPs products, 
 | 
  StockingPoint_MPs stockingpoints 
 | 
) declarative remote as Boolean 
 | 
{ 
 | 
  Description: 'Returns true if at least one sales segment unit, product and stocking point selected is not of system. Used in designer.' 
 | 
  TextBody: 
 | 
  [* 
 | 
    // qty1 Mar-3-2017 (created) 
 | 
     
 | 
    result := true; 
 | 
     
 | 
    if( not exists( salessegments, Elements, e,  
 | 
                     true ) ) 
 | 
    { 
 | 
      result := false; 
 | 
      feedback_o := Translations::MP_SalesDemand_CanCreateNew_EmptySalesSegNavSelection(); 
 | 
    } 
 | 
    else if( not exists( products, Elements, e,  
 | 
                         not e.IsSystem() ) ) 
 | 
    { 
 | 
      result := false; 
 | 
      feedback_o := Translations::MP_SalesDemand_CanCreateNew_EmptyProductNavSelection(); 
 | 
    } 
 | 
    else if( not exists( stockingpoints, Elements, e,  
 | 
                         not e.IsSystem() ) ) 
 | 
    { 
 | 
      result := false; 
 | 
      feedback_o := Translations::MP_SalesDemand_CanCreateNew_EmptyStockingPointNavSelection(); 
 | 
    } 
 | 
     
 | 
    return result; 
 | 
  *] 
 | 
} 
 |