‎2008 Jun 30 5:00 AM
Hi all,
I want to display my internal table values as a message.
plz help.
Regards
Prakash Varun
‎2008 Jun 30 5:11 AM
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
‎2008 Jun 30 5:07 AM
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
‎2008 Jun 30 5:10 AM
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.
‎2008 Jun 30 5:13 AM
Hi,
Yes you can do :
create an entry in ur message class with description &.
For eg:
message S010(Z1) with value.
Regards,
Subramanian
‎2008 Jun 30 5:11 AM
Hi,
Use POPUP_WITH_TABLE_DISPLAY to populate all the entries from an Internal table.
Regards,
Subramanian
‎2008 Jun 30 5:11 AM
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
‎2008 Jun 30 5:23 AM
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
‎2008 Jun 30 7:08 AM