‎2008 May 20 1:56 PM
Hi,
In an include BDCRECX1, the variable NODATA has been declared as a parameter. When I try to use this variable in my program the program is giving an error stating that Statement is not accessible.
I have put include BDCRECX1 in my program.Even then why I am getting this error? How to solve this?
‎2008 May 20 2:02 PM
This type of error is generally issued when you have code that resembles this
FORM A.
Do Something
ENDFORM.
A = B. "<== This line is not accessible.
Form B.
Do Something Else.
ENDFORM.
‎2008 May 20 2:09 PM
First declare your include ...
include BDCRECX1 .
start-of-selection.
and then use NODATA .. in the program ...
‎2008 May 20 2:17 PM
Hi Suman,
Where did u included the statement INCLUDE BDCRECX1.
Ur include statement should present before u access the variable nodata. Check this and revert back.
Thanks,
Vinod.