‎2008 May 15 10:14 AM
Hi,
I get the error message when I try to multiply
this values.
Arithmetic operations are only intended for operands that
can be converted to numbers (numeric operands)
lt_inc_chrg = DEC 5 length 2
wa_tmq-accidents = INT4
wa_tmq-PRICE = CURR 15 length 2
wa_tmq-PRICE = wa_tmq-accidents * lt_inc_chrg.Regards
sas
‎2008 May 15 10:22 AM
Hi,
Declare as shown below.
data : lt_inc_chrg type p decimals 2,
wa_tmq-accidents type i,
wa_tmq-PRICE type pc207-betrg.
wa_tmq-PRICE = wa_tmq-accidents * lt_inc_chrg.
‎2008 May 15 10:22 AM
Hi,
Declare as shown below.
data : lt_inc_chrg type p decimals 2,
wa_tmq-accidents type i,
wa_tmq-PRICE type pc207-betrg.
wa_tmq-PRICE = wa_tmq-accidents * lt_inc_chrg.