‎2007 Dec 05 5:25 AM
hi all,
i have defined a field as numaric
c_unrefunded_sum(9) type n value '000000,00'
but it is giving field value '00000000' in the output
i want output as 6 integers 1 comma 2 decimals
thanku all
‎2007 Dec 05 5:27 AM
Hi,
Declare that variable as type p with decimals 2
data : lv_var type p decimals 2.
Regards,
Prashant
‎2007 Dec 05 5:28 AM
Hi,
Define the fields as packed type with decimals 2.
regards,
Santosh Thorat
‎2007 Dec 05 5:28 AM
‎2007 Dec 05 5:28 AM
Hi,
Numeric field will not accept special characters (like, comma, dot etc..)
If comma is required, use define field as CHAR.
‎2007 Dec 05 5:29 AM
HI,
Declare that particular field with type P decimals 2.
Cheers,
Bujji
‎2007 Dec 05 5:50 AM
hi
i have given as packed decimal but it is giving
ouptut as 0.00
but i want out put as 000000,00
thank u all