Application Development 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: 

How to have pop screen

Former Member
0 Kudos

Hello guys,

Can you help me how to have a pop up screen to get new data to be Append in a database table when you click a push button.

Can you give me sample program/codes how to do this or useful FM perhaps.

I badly need to know this guys.

Please please help me.

Thank You so much for your help.

God bless you.

Chen

4 REPLIES 4

Former Member
0 Kudos

Hi

U can use the FM 'POPUP_TO_CONFIRM'.

Thanks

Vasudha

Former Member
0 Kudos

Try this FM`s

F4IF_INT_TABLE_VALUE_REQUEST

popup_to_table_display

REWARD IF USEFUL

Former Member
0 Kudos

Hi,

try using any one of the function modules,

POPUP_TO_CONFIRM_STEP

It ceate a dialog box in which you make a question whether the user wishes to perform the step.

POPUP_TO_CONFIRM_WITH_MESSAGE

It create a dialog box in which you inform the user about a specific decision point during an action.

POPUP_TO_CONFIRM_WITH_VALUE

It creates a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.

POPUP_TO_DECIDE

It provides user with several choices as radio buttons

POPUP_TO_DECIDE_WITH_MESSAGE

It creates a dialog box in which you inform the user about a specific decision point via a diagnosis text.

POPUP_TO_DISPLAY_TEXT

It creates a dialog box in which you display a two line message

asik_shameem
Active Contributor
0 Kudos

hi

go thru in this.

report zrep.

data: ans type string.

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

TITLEBAR = ' popup to save'

text_question = 'Do you want to save'

TEXT_BUTTON_1 = 'Ja'(001)

TEXT_BUTTON_2 = 'Nein'(002)

DISPLAY_CANCEL_BUTTON = 'X'

IMPORTING

ANSWER = ans .

IF ans = 'Ja' .

*YES part

ELSEIF ans = 'Nein'.

*NO part

ELSE.

*CANCEL part

ENDIF.