Application Development 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: 

Extended sytax check read error message

Former Member
0 Kudos

hi every one,

i am working on extended syntax check for the report and in warning i am getting this message to a defiend itab or variable.:

"No read access to table ITAB[] ",same messages for string variables too. please let me know how to remove this messages and why i am getting this message in extended syntax check.

plz help.

mahesh

1 ACCEPTED SOLUTION

SuhaSaha
Advisor
Advisor
0 Kudos

Hello Mahesh,

This is quite relevant from the message itself. You are getting these messages b'coz you have just declared these tables & variables & have not used it in your code.

Just comment the declarations & you are done )

BR,

Suhas

5 REPLIES 5

SuhaSaha
Advisor
Advisor
0 Kudos

Hello Mahesh,

This is quite relevant from the message itself. You are getting these messages b'coz you have just declared these tables & variables & have not used it in your code.

Just comment the declarations & you are done )

BR,

Suhas

Former Member
0 Kudos

Hi thanks for replying.

in some of the places we have refreshed these tables and also used to pass in FM but not populated the same with data. does this message due to not populating with data?

plz replye me

Former Member
0 Kudos

Hi Mahesh,

This error will appear if you are not using the table in some Read statements or similar things. If you do not want this error to appear then u can suppress it by using the statement #EC XXXX (there are different options for XXXX) I don't remember them.

Click on the 'i' button on the Code Inspector page. You will find the different options there.

Regards,

B Susanta

0 Kudos

Thank you. i will try for the same.

Thanks for helping me

mahesh

Former Member
0 Kudos

Thanks all