‎2008 May 28 12:54 PM
Hi I have the following statement
In 4.6C.
p_num type mseg-dmbtr which is of type CURR with 13 and 2 for decimal.
In 6.0cc iam getting error saying that p_num must be of type C N D T only.
ny help in this regard?
‎2008 May 28 1:10 PM
Hi Kiran,
Declare another local variable say 'l_p_num' of type C. Assign the value of 'p_num' to 'l_p_num' and use this local variable in place of 'p_num'.
Hope this resolves ur issue.
Thanks,
Vasuki
‎2008 May 28 1:10 PM
Hi Kiran,
Declare another local variable say 'l_p_num' of type C. Assign the value of 'p_num' to 'l_p_num' and use this local variable in place of 'p_num'.
Hope this resolves ur issue.
Thanks,
Vasuki
‎2008 May 30 7:01 AM
Hi Vasuki.
But iam still getting the same errror while ucchecking it.