Page 1 of 1

Posted: Wed Oct 03, 2007 3:41 pm
by Ronetlds
CV Totals In (SUM_CASH_VAL nullable is "Y") ->

Modify (handle nulls here) -> (SUM_CASH_VAL nullable is "N") ->

out rec

Pls explain

Posted: Wed Oct 03, 2007 3:52 pm
by gagan8877
Yes, Thats how its setup. I am not sure what u r trying to say, pls explain.

Posted: Wed Oct 03, 2007 4:12 pm
by Ronetlds
Just confirming, I should have said "Is this what you have set up"

Anyway, try

SUM_CASH_VAL :decimal[11,2] = handle_null(SUM_CASH_VAL,0)

Note the brackets [] after the word "decimal". Not parens (). That could be your problem.

Handle_Null Syntax

Posted: Thu Oct 04, 2007 9:16 am
by gagan8877
Ronetlds wrote:Just confirming, I should have said "Is this what you have set up"

Anyway, try

SUM_CASH_VAL :decimal[11,2] = handle_null(SUM_CASH_VAL,0)

Note the brackets [] after the word "decimal". Not parens (). That could be your problem.
Thanks a lot Dude. That resolved it.