| Quintiq file version 2.0 | 
| #parent: #root | 
| Method DoSanityCheckSizing ( | 
|   output Strings feedback_o, | 
|   output Strings sanitycheckfeedback_o, | 
|   output Strings errortype_o | 
| ) declarative as Boolean | 
| { | 
|   TextBody: | 
|   [* | 
|     // cye1 Apr-5-2017 (created) | 
|      | 
|     isvalid := this.GetHasValidNrOfPISPIP() and this.GetHasValidNrOfOperation() and this.GetHasValidLaneLegProductCombi(); | 
|      | 
|     if( not ( this.GetHasValidNrOfPISPIP() ) )  | 
|     { | 
|       feedback_o.Add( Translations::MP_Sizing_ExceedLimitPISPIP() ); | 
|       sanitycheckfeedback_o.Add( SanityCheckCategoryLevel::GetSanityCheckCategoryDataIssue() ) | 
|       errortype_o.Add( SanityCheckMessageSizing::PISPIPError() );  | 
|     } | 
|      | 
|     if( not ( this.GetHasValidLaneLegProductCombi() ) ) | 
|     { | 
|       feedback_o.Add( Translations::MP_Sizing_ExceedLaneLegProductCombi() ); | 
|       sanitycheckfeedback_o.Add( SanityCheckCategoryLevel::GetSanityCheckCategoryDataIssue() ) | 
|       errortype_o.Add( SanityCheckMessageSizing::LaneLegProductCombiError() ); | 
|     } | 
|      | 
|     if( not ( this.GetHasValidNrOfOperation() ) ) | 
|     { | 
|       feedback_o.Add( Translations::MP_Sizing_ExceedLimitOperation() ); | 
|       sanitycheckfeedback_o.Add( SanityCheckCategoryLevel::GetSanityCheckCategoryDataIssue() ) | 
|       errortype_o.Add( SanityCheckMessageSizing::OperationError() ); | 
|     } | 
|      | 
|     return isvalid; | 
|   *] | 
| } |