‎2009 Jun 19 10:31 AM
Hi All,
In a ABAP program the Invoice amount is declare .
data : w_amount like konv-kwert , ( which is curr(13) decimal (2).
Due to small in size of amount field , prog gives dump error.
I need to increase the size of this w_amount.
What variable shud i declare .
Can i declare as w_amount type p decimals 2. or suggest
Thanks in advance.
‎2009 Jun 19 10:38 AM
Hi,
type P decimals 2
should be fine.
Thanks,
Best regards,
Prashant
‎2009 Jun 19 10:39 AM