2008 Aug 04 6:46 PM
hi,
i get the error,
incomple arithmetic expression. missing ")" at end of statement.
my expression is
L_BKED = L_BKED + ( ( WA_XVBAP-KWMENG ) * ( 0.05 ) ).
all operands and operators are properly spaced out !!
whats wrong ??
thks
2008 Aug 04 6:51 PM
2008 Aug 04 6:49 PM
>
> L_BKED = L_BKED + ( ( WA_XVBAP-KWMENG ) * ( 0.05 ) ).
>
w_var1 = WA_XVBAP-KWMENG * 0.05 .
L_BKED = L_BKED + w_var2.
Regards
Pavan
2008 Aug 04 6:51 PM
2008 Aug 04 6:53 PM
First, you dont need all these paranthesis.
Second the constant should always be in quotes '0.05'. Change this and you wont get the error.
2008 Aug 04 7:14 PM
Hi,
you need to put parentheses whenever you are using decimals in your calculation method.
Please reward if you find the answer useful.
Thanks,
Kamesh