‎2006 Dec 26 6:30 PM
Hello all,
i have a domian of length 13 and decimals 3
then my question is ,
1) it can hold 1234567899871.123 ( 13digit before decimal and 3 digit after decimal )
or the total is 13 i.e 1234567899.123(10 digits before decimal and 3 after decimal)
or the does it include the dot also as i1 digit i.e 123456789.123
(9dot3)
let me know
thanks
‎2006 Dec 26 6:57 PM
Hi,
Lets take an example of the data element MENGE_D.
It can take only 10 digit before decimal and 3 after decimal..
It will activate if you have this code..
data: v_menge type MENGE_D value '1234567890.123'.
It will not activate if you have this code..It will say overflow..
data: v_menge type MENGE_D value '12345678901.123'.
Thanks,
Naren
‎2006 Dec 27 5:32 AM
Hi Preeti,
If u have specified Doamin length as 13 and 3 decimal places , it can hold 10 digits before decimal and three after decimal.
‎2006 Dec 27 5:39 AM
Go to the domain definition in se11 and havea look at the output length.
It would clear your doubt.
Regards,
Ravi
‎2006 Dec 27 5:42 AM
Hi,
Length 13 & decimals 3 says it can hold 10 digits before decimal point & 3 digits after the same. If you check the output length of that domain, it'll be 17 (which includes the decimal point).
‎2006 Dec 27 5:42 AM
hi preethi,
This is the answer.
if the total is 13 i.e 1234567899.123(10 digits before decimal and 3 after decimal)Regards
Anver
‎2006 Dec 27 5:46 AM
hi preeti,
for 13 it will have ,10 digits before decimal and 3 after decimal