‎2008 Aug 29 4:54 AM
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......
‎2008 Aug 29 5:00 AM
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
‎2008 Aug 29 4:56 AM
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
‎2008 Aug 29 5:00 AM
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
‎2008 Aug 29 5:01 AM
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
‎2008 Aug 29 5:28 AM
‎2008 Aug 29 6:05 AM
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.