2007 Nov 29 5:30 AM
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
2007 Nov 29 5:33 AM
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.
2007 Nov 29 5:36 AM
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.
2007 Nov 29 5:38 AM
Well yes I am using all these fields in my code and I haven't declared anything in IF block.
Thanks
Rajeev
2007 Nov 29 5:41 AM
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
2007 Nov 29 5:44 AM
Hi Rajeev,
You might have not used the variable in the program. i.e., Variable was not displayed or not assigned to any field.
2007 Nov 29 5:50 AM
2007 Nov 29 6:00 AM
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
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |