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

ABAP Message

Former Member
0 Likes
705

Hi all,

I want to display my internal table values as a message.

plz help.

Regards

Prakash Varun

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
661

hi,

You can use Message with variables.

Message <msgno>(class) with <v1> <v2> <V3 ><V4>

You can use only upto four variables in your message.

Hope this will help.

Rewards if useful.

Regards,

Sumit Agarwal

7 REPLIES 7
Read only

former_member265047
Active Participant
0 Likes
661

Hi

Please let us know what is ur requirement. you want declare internal table refers to any bapireturn message type or what else...

So that we can try to give answer to u.

Regards,

Naveen Veshala

Read only

0 Likes
661

no no,

my code is

Data: value(20) type c,

now i want to print value as a message. like

message value type 'S'.

can this is possible.

Read only

0 Likes
661

Hi,

Yes you can do :

create an entry in ur message class with description &.

For eg:

message S010(Z1) with value.

Regards,

Subramanian

Read only

Former Member
0 Likes
661

Hi,

Use POPUP_WITH_TABLE_DISPLAY to populate all the entries from an Internal table.

Regards,

Subramanian

Read only

Former Member
0 Likes
662

hi,

You can use Message with variables.

Message <msgno>(class) with <v1> <v2> <V3 ><V4>

You can use only upto four variables in your message.

Hope this will help.

Rewards if useful.

Regards,

Sumit Agarwal

Read only

Former Member
0 Likes
661

hi,

In ABAP messages are used for acknowledgement only. Not to show values. However for specification we may use few variables in form of placeholder to them.

So, message will not help to directly.

you better go for Subscreen or model dialog box for the purpose.

Reward if found helpful.

Anirban Bhattacharjee

Read only

Former Member
0 Likes
661

thanks for ur response