Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Extended Program check errrors

Former Member
0 Likes
407

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

1 ACCEPTED SOLUTION
Read only

mvoros
Active Contributor
0 Likes
374

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

2 REPLIES 2
Read only

mvoros
Active Contributor
0 Likes
375

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

Read only

Former Member
0 Likes
374

Sorry , I have found the answer for that..thanks