2008 Mar 08 2:02 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.
2008 Mar 08 2:14 PM
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
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
2008 Mar 08 2:14 PM
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
2008 Mar 08 2:27 PM
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
2008 Mar 08 6:33 PM
Hi,
Check out the below mentioned FM's that raises a POP-UP.
POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.
POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.
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.
POPUP_TO_DECIDE - Provide user with several choices as radio buttons
POPUP_TO_DECIDE_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.
POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.
POPUP_TO_SELECT_MONTH - Popup to choose a month
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.
POPUP_TO_CONFIRM - Pop-up dialog confirm an action before it is carried out.
POPUP_TO_DISPLAY_TEXT - Displays a text in a modal screen
POPUP_TO_INFORM - Displays several lines of text. No OK or Cancel buttons.
TH_POPUP - Display a popup system message on a specific users screen.
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.
POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.
POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.
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.
POPUP_TO_DECIDE - Provide user with several choices as radio buttons
POPUP_TO_DECIDE_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.
POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.
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.
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.
POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.
POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.
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.
POPUP_TO_DECIDE - Provide user with several choices as radio buttons
POPUP_TO_DECIDE_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.
POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.
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
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |