2006 Sep 14 11:35 AM
Hi
I want to display a popup to the user indicating a message in the box.
How can I do that?
Has SAP provided any Standard FM to create a popup screen?
And can we use it in a user-exit?
Thank You
Hi
I want to display a popup to the user indicating a message in the box.
How can I do that?
Has SAP provided any Standard FM to create a popup screen?
And can we use it in a user-exit?
Thank You
2006 Sep 14 11:36 AM
2006 Sep 14 11:37 AM
you can use a message of the type i(information) for this purpose.
message i100(zz) with 'some text'
2006 Sep 14 11:38 AM
2006 Sep 14 11:41 AM
hi,
try this.
data : WF_RES type c.
CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
EXPORTING
DEFAULTOPTION = 'N'
TEXTLINE1 = 'Do you want to delete the record?'
TEXTLINE2 = ' '
TITEL = 'Delete Zone'
START_COLUMN = 25
START_ROW = 6
CANCEL_DISPLAY = 'X'
IMPORTING
ANSWER = WF_RES.
if wf_res = 'J'.
user selected 'YES'.
else.
user selected 'NO'.
endif.
rgds
anver
if hlped mark points
2006 Sep 14 2:39 PM
Hi..
Thank you all for all the help.
Can I have a popup with only one push button (OK)other than POPUP_DISPLAY_MESSAGE (as it leaves the screen)on the same screen itself?
Thank You
2006 Sep 14 3:12 PM
Hello,
Go to se37 and enter the value POP* and press F4. You will get many function modules.
OR
Use the statements,
1. Message i001("Message ID") with 'Hello'
Regs,
Venkat Ramanan N
2006 Sep 14 3:16 PM
Hello,
You can go for simple message statement.
Regs,
Venkat Ramanan N
2006 Sep 14 3:33 PM
hi subhash,
try using this FM: POPUP_TO_INFORM
pass the title and text u want to display
reward points if it helps u.
regards,
sudha.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |