Sunday, January 17, 2010

POPUP_FOR_INTERACTION

CALL FUNCTION 'POPUP_FOR_INTERACTION'
    
EXPORTING
      headline             =
      text1                =
*     TEXT2                = ' '
*     TEXT3                = ' '
*     TEXT4                = ' '
*     TEXT5                = ' '
*     TEXT6                = ' '
*     TICON                = 'I'
      button_1             =
*     BUTTON_2             = ' '
*     BUTTON_3             = ' '
*   IMPORTING
*     BUTTON_PRESSED       =
            .
*------------------------------------------
* EXPLANATION:
*------------------------------------------
1.  HEADLINE => Text to be displayed on the title bar of the modal dialog box.
2.  TEXT1 => Text line 1 to be displayed.
3.  TEXT2 => Text line 2 to be displayed.
4.  TEXT3 => Text line 3 to be displayed.
5.  TEXT4 => Text line 4 to be displayed.
6.  TEXT5 => Text line 5 to be displayed.   
7.  TEXT6 => Text line 6 to be displayed.  
8.  TICON => Icon to be displayed at the left hand side of the modal dialog.
·         'I' => ICON_MESSAGE_INFORMATION
·         'W' => ICON_MESSAGE_WARNING
·         'E' => ICON_MESSAGE_ERROR
·         'Q' => ICON_MESSAGE_QUESTION
·         'C' => ICON_MESSAGE_CRITICAL    
9.  BUTTON_1 => Text to be displayed on the first button.
10.BUTTON_2 => Text to be displayed on the second button.
11.BUTTON_3 => Text to be displayed on the third button.
12.BUTTON_PRESSED => Result of button pressed.
·         1 = BUTTON_1
·         2 = BUTTON_2
·         3 = BUTTON_3

*------------------------------------------
* Screen Shot:
*------------------------------------------

No comments:

Post a Comment