1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod GetHasValidUniqueName ( 
 |    MacroPlan owner, 
 |    Recipe recipe, 
 |    String name, 
 |    String instancetext, 
 |    output String feedback_o, 
 |    output String sanitycheckfeedback_o 
 |  ) declarative remote as Boolean 
 |  { 
 |    Description: 'Check if the name for recipe is unique' 
 |    TextBody: 
 |    [* 
 |      // desmondt Dec-5-2014 (created) 
 |       
 |      isvalid := not exists( owner, Recipe, r, 
 |                             r <> recipe, 
 |                             r.Name() = name ); 
 |       
 |      if( not isvalid ) 
 |      { 
 |        feedback_o := SanityCheckMessage::GetFormattedMessage( instancetext, 
 |                                                               Translations::MP_Recipe_ViolateHasValidUniqueName() ); 
 |        sanitycheckfeedback_o := SanityCheckCategoryLevel::GetSanityCheckCategoryDataIssue(); 
 |      } 
 |       
 |      return isvalid; 
 |    *] 
 |  } 
 |  
  |