‎2010 Feb 10 1:43 AM
hi all,
when checking Extending Program check, I am getting this error :
No read access to table TS_RECEIVERS1[]
The message can be hidden with "#EC NEEDED)
THe code is below
DATA: ts_receivers1 type soos1 OCCURS 0. "
--
--
REFRESH: ts_email[],
ts_receivers1[],
CLEAR: ts_email,
ts_receivers1,
---
append wa_receivers to ts_receivers1.
refresh: ts_email[],
ts_receivers1[],
clear: ts_email,
ts_receivers1,
-
what i shoud do to eliminate this errors??
kindly help
thanks
‎2010 Feb 10 1:51 AM
Hi,
that warning is pretty straightforward. You have a variable, but you don't read value from this variable. In your case you add some lines into this table but you never read any lines from this table.
Cheers
‎2010 Feb 10 1:51 AM
Hi,
that warning is pretty straightforward. You have a variable, but you don't read value from this variable. In your case you add some lines into this table but you never read any lines from this table.
Cheers
‎2010 Feb 10 1:57 AM