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

push button on pop up screen

Former Member
0 Likes
1,182

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
805

POPUP_TO_CONFIRM

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.

4 REPLIES 4
Read only

Former Member
0 Likes
805

Hi

USE popup_to_confirm function module.

Regards

Lakshmikanth.T.V

Read only

Former Member
0 Likes
805

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

Read only

Former Member
0 Likes
805

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

Read only

Former Member
0 Likes
806

POPUP_TO_CONFIRM