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: 

Re: how to pass runtime values in form of messages kindly help me.

Former Member
0 Kudos

to be more precise in my question.

i have saved value in field zrfitab-rfino.

now how do i get it as message i.e RFINO &&&&&&& CREATED SUCCESSFULLY.

plz do help me.

regards,

siri

4 REPLIES 4

Former Member
0 Kudos

In the message class create a msg with text involves & this symbol.

In general u will call it as

message <type>No with <string/value>

Former Member
0 Kudos

Hello,

And you can use a maximum of four variables in messages.

Example:

In the message class: 001 The following problems occurs with the registry &1 &2 &3 &4.

 MESSAGE i001 WITH variable1 variable2 variable3 variable4.

Regards,

Edited by: David Pietroniro on Mar 29, 2008 4:11 PM

Former Member
0 Kudos

Please refer to your duplicate thread

Jonathan

Former Member
0 Kudos

Hi Siri,

Whenever you want to display a message you can do that as follows:

1. If you have already delared the message class:

Message <message type><message number> WITH <variable1> <variable2> <variable3> <variable4>.

Eg, you have created message number 123 in your message class as-

"RFINO &1 created successfully".

to use this message, write the following line of code:

message i123 with v_rfino.

here, i indicates Information message and

v_rfino is the variable holding the newly created RFINO.

Regards,

Sonal