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

SLIN check...

Former Member
0 Likes
979

hi all ,

My problem is I am getting this kind of message when I chked my code using SLIN...

1.No read access to field V_3

2. No read access to field V_4

3. No read access to field V_5

and I have defined in my program as :

data: v_3 like sdbah-actid,

v_4(10) type p decimals 2,

v_5 type i.

so can you please tell me where the error is:

Thanks

Rajeev

hi all ,

My problem is I am getting this kind of message when I chked my code using SLIN...

1.No read access to field V_3

2. No read access to field V_4

3. No read access to field V_5

and I have defined in my program as :

data: v_3 like sdbah-actid,

v_4(10) type p decimals 2,

v_5 type i.

so can you please tell me where the error is:

Thanks

Rajeev

7 REPLIES 7
Read only

varma_narayana
Active Contributor
0 Likes
929

Hi..

This error will be coming bcoz you may not be using/reading those variables anywhere in the Source code of ur program.

Check it.

Read only

Former Member
0 Likes
929

Hi Rajeev,

From what I understand from your description of the problem, I would suggest that you check two things: -

1. Please make sure that you have not declared these fields inside an IF block.

2. Are these fields being used in the code?

Would like to hear from you if you are able to find a solution to your problem.

Read only

0 Likes
929

Well yes I am using all these fields in my code and I haven't declared anything in IF block.

Thanks

Rajeev

Read only

Former Member
0 Likes
929

HI

you need to delete the unwanted or un used fileds in the program

if you don't use these fileds then remove that one

Read only

Former Member
0 Likes
929

Hi Rajeev,

You might have not used the variable in the program. i.e., Variable was not displayed or not assigned to any field.

Read only

Former Member
0 Likes
929

u comment that fields dont get errors

Read only

former_member404244
Active Contributor
0 Likes
929

Hi,

u r getting these errors because u have declread the variables but u didn't use them for reading or checking...

do one thing....try like this..whereever u used these variables check the initialities of them for example..

if v_3 is not initial.

do this.

endif.

if v_4 is not initial.

do this.

endif.

Regards,

Nagaraj