2008 Apr 15 2:13 PM
Hi,
I want to display one success pop up message.
I have two para meters like User_name and ID.
Both parameters has some value like sam and 100.
Now i want to display the message like :
"Your user_name is : sam and ID is : 100 "
Its possible or not?
Thanks.
Hi,
I want to display one success pop up message.
I have two para meters like User_name and ID.
Both parameters has some value like sam and 100.
Now i want to display the message like :
"Your user_name is : sam and ID is : 100 "
Its possible or not?
Thanks.
2008 Apr 15 2:16 PM
YOu can do this provided maintain the values in the information text message with & .
Message i001(XX).
In the text elements of message pass the values with & & .
refer this thread
https://www.sdn.sap.com/irj/sdn/profile?userid=2501727
Vijay
2008 Apr 15 2:16 PM
yes ...you can do it with the call screen statement..
CALL SCREEN dynnr
[STARTING AT col1 lin1
[ENDING AT col2 lin2]].
regards,
venkat.
2008 Apr 15 2:17 PM
Hi,
It is possible to give the success message. Create message class in se91 then give the message whatever you want then store it by type as 'S'. and give the same message number in your program.
Thanks
Sarada
2008 Apr 15 2:18 PM
You should be able to use the function POPUP_TO_INFORM. Build your text message and pass it as one of the parms available.
2008 Apr 15 2:45 PM
Hi,
Thanks for all replies.
But i dont want message id. With out message id and SE91 I need to display the message with two parameters.
Thanks.
2008 Apr 15 3:01 PM
data str type string.
concatenate 'Your user_name is :' user_name 'and ID is : ' ID seperated by space.
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
titel = 'Test'
txt2 = space
txt1 = str.G@urav.
2008 Apr 15 3:05 PM
this works
DATA: txtmsg(80),
wdate(10).
write sy-datum to wdate MM/DD/YYYY.
CONCATENATE 'Your user_name is :' sy-uname 'and today is :' wdate
INTO txtmsg
SEPARATED BY space.
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
titel = 'The title'
txt1 = txtmsg
txt2 = ' '.
2008 Apr 16 5:46 AM
Hi ,
Check this link , may be useful.
https://www.sdn.sap.com/irj/sdn/profile?userid=2501727
Regards,
Muneesh Gitta.
2008 Apr 16 6:07 AM
Hi Jasmine,
message with number.
Message I001('zr') with number.
its text name: ID &.
It is used for message for FM--> POPUP_TO_INFORM
Reward if useful,
Regards,
S.Suresh.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |