2007 Jun 06 4:48 PM
Hi all,
for displaying some information to the user i gave one information message.
and now can i give one push button on this pop up screen.
regards,
siri.
2007 Jun 06 5:29 PM
Hi,
Try this code:
DATA: X_ANS(1) TYPE C.
call function 'POPUP_TO_CONFIRM_STEP'
exporting
DEFAULTOPTION = 'Y'
textline1 = 'Do you want to continue'
TEXTLINE2 = ' '
titel = 'Please Confirm'
START_COLUMN = 25
START_ROW = 6
CANCEL_DISPLAY = 'X'
IMPORTING
ANSWER = X_ANS.
WRITE: / X_ANS.
Regards,
Bhaskar
2007 Jun 06 4:50 PM
Hi
USE popup_to_confirm function module.
Regards
Lakshmikanth.T.V
2007 Jun 06 4:51 PM
HI,
use popup_to_confirm FM
to display just information .... use this FM POPUP_TO_DISPLAY_TEXT with default continue button.
CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
EXPORTING
TITEL = ' '
textline1 = 'Your Information'
TEXTLINE2 = ' '
START_COLUMN = 25
START_ROW = 6
.
Regards
SAB
2007 Jun 06 5:11 PM
Hi,
Try this code:
DATA: X_ANS(1) TYPE C.
call function 'POPUP_TO_CONFIRM_STEP'
exporting
DEFAULTOPTION = 'Y'
textline1 = 'Do you want to continue'
TEXTLINE2 = ' '
titel = 'Please Confirm'
START_COLUMN = 25
START_ROW = 6
CANCEL_DISPLAY = 'X'
IMPORTING
ANSWER = X_ANS.
WRITE: / X_ANS.
Regards,
Bhaskar
2007 Jun 06 5:29 PM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |