‎2007 Mar 28 4:45 PM
I want to store quantity invoiced as length 10 floating decimal point right justified
so i have quantity(10) type quan
but error says type quan is unknown. How do i define my variable quantity ?
‎2007 Mar 28 4:48 PM
HI..
In ABAP we dont have the datatype Quan ..
for achieving this we need to declare this as type <b>p with decimals 2</b> or the number of decimals what you need
if it helps reward with points
Regards Rk
‎2007 Mar 28 4:47 PM
‎2007 Mar 28 4:49 PM
‎2007 Mar 28 4:48 PM
HI..
In ABAP we dont have the datatype Quan ..
for achieving this we need to declare this as type <b>p with decimals 2</b> or the number of decimals what you need
if it helps reward with points
Regards Rk
‎2007 Mar 28 4:56 PM
so I can do quantity(5) type p decimals 2 which will hold 9 digits (plus a sign) with 2 decimal places
what about another variable
unitprice(17)