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

error ,message into table

Former Member
0 Likes
560

Hi all,

i am trying to put a error message into a table...any idea how i can get this without doing move 'matnr & is in error' into my table?

thanx

4 REPLIES 4
Read only

Former Member
0 Likes
532

If you are talking about moving something into Internal table then can you explain why you dont want to use Move statement?

Read only

0 Likes
532

because of the '&' that has to be changed

Read only

0 Likes
532

Hi,

There's a few ways you could do this;

Construct your message first (i.e. combine the message text and variables into one string, then move this into the table)

or

Don't store the text, instead store the message ID, number and variable parts of the message. This has the advantage if you're running a multi-language system the log can be used by users of different languages.

Regards,

Nick

Read only

0 Likes
532

thanx!