Quintiq file version 2.0
|
#parent: #root
|
Method DoSanityCheckData (
|
output Strings feedback_o,
|
output Strings sanitycheckfeedback_o
|
) declarative remote as Boolean
|
{
|
Description: 'Process sanity checks for data For SanityCheckGroupData'
|
TextBody:
|
[*
|
isvalid := true;
|
|
//Check for user input
|
isvalid := this.GetHasValidInput( feedback_o, sanitycheckfeedback_o ) and isvalid;
|
|
//Check operation
|
isvalid := this.GetHasOperation( feedback_o, sanitycheckfeedback_o ) and isvalid;
|
|
//Check color
|
isvalid := this.HasColor( feedback_o, sanitycheckfeedback_o ) and isvalid;
|
|
//Check is soft deleted
|
isvalid := this.GetIsSoftDeleted( feedback_o, sanitycheckfeedback_o ) and isvalid;
|
|
return isvalid;
|
*]
|
}
|