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

Syntax error in upgrade

Former Member
0 Likes
272

Hi .

How to resolve this syntax error in upgrade 7.0 ?

FIELD-SYMBOLS: <t_zsrm_change> LIKE LINE OF t_zsrm_change.

APPEND <t_zsrm_change> TO change_item.

AT END OF <t_zsrm_change>-logsys.

Error : <t_zsrm_change>-logsys is not defined as field symbol .

But this error doesnt exists in 4.6 c version .

Moderator message: please stop flooding the forum with your upgrade errors, invest some effort to solve these yourself before unloading your work here.

Edited by: Thomas Zloch on Feb 19, 2011 4:31 PM

1 REPLY 1
Read only

Former Member
0 Likes
243

Hi,

Try writing as :

AT END OF logsys. or AT END OF (<t_zsrm_change>-logsys).

Regards,

Srini.