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

regarding message popup

Former Member
0 Likes
708

hi experts,

i am updating the database table with the help of

pushbutton ,what i want that after pressing the

button a message will come out that "data for particular employee number 00000021

has been saved ,means in a popup for message i want different employee number,

how will i pass different employee number while showing the message.

plz help me to sort out this problem......

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
680

Hi Rajat,

Since it is a information message, you can MESSAGE keyword alongwith '&' to display your message.

Example:

message i000(ZMSGID) with v_empno.

You can maintain the message in ZMSGID-000 = 'EMPLOYEE No. & has been saved'

Regards,

Amit

Edited by: Amit Kumar on Aug 29, 2008 9:35 AM

5 REPLIES 5
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
680

if u have the employee No.

create a message in message class like

data for particular employee number &

and then in program use it as

Message I234(ZMM) with Employeeno

Read only

Former Member
0 Likes
681

Hi Rajat,

Since it is a information message, you can MESSAGE keyword alongwith '&' to display your message.

Example:

message i000(ZMSGID) with v_empno.

You can maintain the message in ZMSGID-000 = 'EMPLOYEE No. & has been saved'

Regards,

Amit

Edited by: Amit Kumar on Aug 29, 2008 9:35 AM

Read only

Former Member
0 Likes
680

hi rajat

using Message and pop up FM, i think its not possible to show multiplr records

Try will REUSE_ALV_POPUP_TO_SELECT

Regards

Deva

Read only

Former Member
0 Likes
680

you can use the Function POPUP_WITH_TABLE_DISPLAY

Read only

Former Member
0 Likes
680

Hi,

SE91 for message class, choose a message number with two& & minimum

Suppose if u have taken message number 200 from ZX message class.

Message i200(ZX) WITH text-001 itab-empno .

text-001 - data for particular employee number

In this way you can get the pop-up message with emp number.