I have textfield that gets it values from a procedure. The prob is the returns a string instead of number. Its as follows:
function TOT_VALFormula return Number is
begin
RETURN ( NVLINVI_VALUE,0)- :CF_DISC_VAL );
end;
The result I get is something like:
16551 - 2000
I have checked the text field data type and its set to Number. Am running form 6i.
function TOT_VALFormula return Number is
begin
RETURN ( NVLINVI_VALUE,0)- :CF_DISC_VAL );
end;
The result I get is something like:
16551 - 2000
I have checked the text field data type and its set to Number. Am running form 6i.