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

Coding for message

Former Member
0 Likes
626

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
Read only

Former Member
0 Likes
565

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

Read only

0 Likes
565

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

Read only

Former Member
0 Likes
565

USE popup_with_table_display

reward points if helpfull

Read only

Former Member
0 Likes
565

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