I have a process that will increment a charge count on an existing record by 0.01 and then display a form to edit some other fields. The process is fairly simple:
ENTER NEW Charges WITH Charges.ChargeCount=ThisCharges.ChargeCount+0.1,Charges.parent_CaseMaster=ThisCharges.parent_CaseMaster USING Main
Except that process does not work. I have to enter it like this:
ENTER NEW Charges WITH Charges.ChargeCount=ThisCharges.ChargeCount+1/10,Charges.parent_CaseMaster=ThisCharges.parent_CaseMaster USING Main
Why on earth does the first one not work?