‎2007 Jul 24 11:44 AM
hi experts,
what is the data type to print decimal values.
i need to take a value like 23.500 means which data type i can specify during creating a structure.
‎2007 Jul 24 11:46 AM
Hi,
You can use kval. for printing decimal values.
Reward if helpful
Regards
Azad.
‎2007 Jul 24 11:46 AM
‎2007 Jul 24 11:46 AM
declare it as TYPE P DECIMALS 3
<b>DATA : V_DEC TYPE P DECIMALS 3.</b>
‎2007 Jul 24 11:46 AM
Hi,
You can use kval. for printing decimal values.
Reward if helpful
Regards
Azad.
‎2007 Jul 24 11:46 AM
Hi..
Eg:
data: Var1 type p decimals 3 value '123.456'.
write:/ var1.
Note: In DDIC the Data type is DEC
<b>
Reward if Helpful.</b>
‎2007 Jul 24 11:47 AM