Application Development 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: 

error ,message into table

Former Member
0 Kudos

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

Former Member
0 Kudos

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

0 Kudos

because of the '&' that has to be changed

0 Kudos

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

0 Kudos

thanx!