mace caught Exception: IllegalParse: Variable A does not exist in the workbook
I have a measure at item/location which will be having class information.
measure: rms_item_class
100015541,7247,A
100015541,7251,B
100457702,7617,A
100015541,7617,B
100015541,7768,c
when i try to run the below expression with mace command through unix scripts "stritem = if(rms_item_class==A,TRUE,FALSE)", i am getting the below error.
mace caught Exception: IllegalParse: Variable A does not exist in the workbook
The expression works fine if the measure holds the integer values and if i change the expression to "stritem = if(rms_item_class==1,TRUE,FALSE)"
100015541,7247,1
100015541,7251,2
100457702,7617,1
100015541,7617,2
100015541,7768,3
My requirement is to give the type of class( A or B or C ) as parameter through unix scripts and the rule should run for the specified class that has been passed as parameter.