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: 

Coding for message

Former Member
0 Kudos

Hi experts,

i have a table with one field subtype which contains 4 values like x1,x2,x3,x4.

i want to give a message with pop up like "for these subtypes x1,x2,x3,x4 the materail nos are not assigned'"

plese suggest with sample code using message class..

praveen

4 REPLIES 4

Former Member
0 Kudos

Hi,

You could use FM:

POPUP_WITH_2_BUTTONS_TO_CHOOSE or

POPUP_WITH_3_BUTTONS_TO_CHOOSE or

AQ_INT_SHOW_MESSAGE_AS_POPUP

Rgds,

HR

Message was edited by: Hema Rao

0 Kudos

thanks for reply

but i need to give only an information pop-up. its not only 4 values...can any no of..

suggest me plese

Former Member
0 Kudos

USE popup_with_table_display

reward points if helpfull

Former Member
0 Kudos

Hi,

Check in the internal table if there exist any record like x1,x2.....

if sy-subrc = 0.

message i000(z1) with for these subtypes x1,x2,x3,x4 the materail nos are not assigned'.

endif.

Nb. Check message id & class in u r system and use that one.

If helpful pl reward.

Cheers