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

pop-ups

Former Member
0 Likes
818

The exact scenario is :

"double clicking on any line item would invite an additional pop-up in which a detailed list has to be shown"

HOW TO DO THIS?

WHAT EXACTLY A POP-UP IS IN AN ABAP PROGRAMING CONTEXT?

IS THERE ANY TRANSACTION OR COMMAND WHICH GENERATES A POP-UP?

PLZ REPLY ASAP.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
783

hi ,

call function module POPUP_TO_CONFIRM.

for the pop up menu..like this

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

TITLEBAR = 'Working Time '

  • DIAGNOSE_OBJECT = ' '

TEXT_QUESTION = 'Approve or Reject'

TEXT_BUTTON_1 = 'Approve'(001)

  • ICON_BUTTON_1 = ' '

TEXT_BUTTON_2 = 'Reject'(002)

  • ICON_BUTTON_2 = ' '

  • DEFAULT_BUTTON = '1'

DISPLAY_CANCEL_BUTTON = 'X'

  • USERDEFINED_F1_HELP = ' '

  • START_COLUMN = 25

  • START_ROW = 6

  • POPUP_TYPE =

  • IV_QUICKINFO_BUTTON_1 = ' '

  • IV_QUICKINFO_BUTTON_2 = ' '

IMPORTING

ANSWER = answer

  • TABLES

  • PARAMETER =

EXCEPTIONS

TEXT_NOT_FOUND = 1

OTHERS = 2.

rewards,

venkat.

Edited by: venkat appikonda on Mar 8, 2008 3:20 PM

The exact scenario is :

"double clicking on any line item would invite an additional pop-up in which a detailed list has to be shown"

HOW TO DO THIS?

WHAT EXACTLY A POP-UP IS IN AN ABAP PROGRAMING CONTEXT?

IS THERE ANY TRANSACTION OR COMMAND WHICH GENERATES A POP-UP?

PLZ REPLY ASAP.

3 REPLIES 3
Read only

Former Member
0 Likes
784

hi ,

call function module POPUP_TO_CONFIRM.

for the pop up menu..like this

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

TITLEBAR = 'Working Time '

  • DIAGNOSE_OBJECT = ' '

TEXT_QUESTION = 'Approve or Reject'

TEXT_BUTTON_1 = 'Approve'(001)

  • ICON_BUTTON_1 = ' '

TEXT_BUTTON_2 = 'Reject'(002)

  • ICON_BUTTON_2 = ' '

  • DEFAULT_BUTTON = '1'

DISPLAY_CANCEL_BUTTON = 'X'

  • USERDEFINED_F1_HELP = ' '

  • START_COLUMN = 25

  • START_ROW = 6

  • POPUP_TYPE =

  • IV_QUICKINFO_BUTTON_1 = ' '

  • IV_QUICKINFO_BUTTON_2 = ' '

IMPORTING

ANSWER = answer

  • TABLES

  • PARAMETER =

EXCEPTIONS

TEXT_NOT_FOUND = 1

OTHERS = 2.

rewards,

venkat.

Edited by: venkat appikonda on Mar 8, 2008 3:20 PM

Read only

Former Member
0 Likes
783

Hi Naren,

Considering your scenario, i guess this FM would solve your purpose. Please try BKK_POPUP_DISPLAY_LIST with the valid parameters and reward points if it really helps.

Thanks,

VV

Read only

Former Member
0 Likes
783

Hi,

Check out the below mentioned FM's that raises a POP-UP.

  1. POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.

  2. POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.

  3. POPUP_TO_CONFIRM_WITH_VALUE - Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.

  4. POPUP_TO_DECIDE - Provide user with several choices as radio buttons

  5. POPUP_TO_DECIDE_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.

  6. POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.

  7. POPUP_TO_SELECT_MONTH - Popup to choose a month

  8. POPUP_WITH_TABLE_DISPLAY - Provide a display of a table for user to select one, with the value of the table line returned when selected.

  9. POPUP_TO_CONFIRM - Pop-up dialog confirm an action before it is carried out.

  10. POPUP_TO_DISPLAY_TEXT - Displays a text in a modal screen

  11. POPUP_TO_INFORM - Displays several lines of text. No OK or Cancel buttons.

  12. TH_POPUP - Display a popup system message on a specific users screen.

  13. POPUP_TO_CONFIRM_LOSS_OF_DATA - Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.

  14. POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.

  15. POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.

  16. POPUP_TO_CONFIRM_WITH_VALUE - Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.

  17. POPUP_TO_DECIDE - Provide user with several choices as radio buttons

  18. POPUP_TO_DECIDE_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.

  19. POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.

  20. POPUP_WITH_TABLE_DISPLAY - Provide a display of a table for user to select one, with the value of the table line returned when selected.

  21. POPUP_TO_CONFIRM_LOSS_OF_DATA - Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.

  22. POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.

  23. POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.

  24. POPUP_TO_CONFIRM_WITH_VALUE - Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.

  25. POPUP_TO_DECIDE - Provide user with several choices as radio buttons

  26. POPUP_TO_DECIDE_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.

  27. POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.

  28. POPUP_WITH_TABLE_DISPLAY - Provide a display of a table for user to select one, with the value of the table line returned when selected.

REgards,

Chandru