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

Message PLACEHOLDERS

Former Member
0 Likes
2,589

Hi Freinds,

Im using statement 'MESSAGE I002(ZMSG_PM) WITH 'ABCBMMMMM'.

But the message displays the message stored in 002 in message class zmsd_pm andit does not show 'ABCBMMMMM'.

I want to display message with the message defined in msg class with some additional data.

How to do this

Thanx

RR

2 REPLIES 2
Read only

Sm1tje
Active Contributor
0 Likes
1,089

One more time.

In your message class for message 002 you need to define a placeholder like this

002: This is message for &1.

&1 will be replace by ABCBMMMMM in your report.

Read only

Former Member
0 Likes
1,089

Dear rajiv

Other wise u can try like this also ....

U declare a variable like

data: l_message(100).

then wherever u want message

Concatenate 'msg1variable' 'msg2 variable' into l_message.

now u can use that l_message.

regards

karthik

Let me know if u face any issues.