‎2010 Mar 17 2:10 PM
Hi all,
I am trying to declare as following and I am getting the error
data: begin of test,
w_text(1000),
end of test.
data: i_test type standard table of test.
‎2010 Mar 17 2:13 PM
You need to define it as TYPES;
TYPES: begin of test,
w_text(1000),
end of test.
Thanks
Mani
‎2010 Mar 17 2:13 PM
You need to define it as TYPES;
TYPES: begin of test,
w_text(1000),
end of test.
Thanks
Mani
‎2010 Mar 17 2:14 PM
Hello
types: begin of test,
w_text(1000),
end of test.
data: i_test type standard table of test.