cancel
Showing results for 
Search instead for 
Did you mean: 

Pop Up Message ..!!

Former Member
0 Kudos

Hi All,

I have to show a warning message.I should be like pop up message.I have used POPUP_TO_CONFIRM'. But it takes only 80character..and i have to display more than 200 Characters...Pls let me know what other FM can be used ??

Rgds,

Raghav

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi..

Check out this FM "popup_for_interaction".

you will be able to use the 200 characters in the text.

Regards

Midhun Abraham

Edited by: Midhun Abraham on Dec 9, 2008 9:40 AM

Answers (7)

Answers (7)

Former Member
0 Kudos

Hi,

Just use this FM.

POPUP_TO_CONFIRM_WITH_MESSAGE

Thanks

Former Member
0 Kudos

Hi,

You can have more then 200 characters with POPUP_TO_CONFIRM by using the CONTINUE in TEXT_BUTTON_1 field.

Regards,

Manish

Former Member
0 Kudos

hi

use this FM:

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
*   DDIC_STRUCTURE         = ' '
    retfield               = retfield
*   PVALKEY                = ' '
*   DYNPPROG               = ' '
*   DYNPNR                 = ' '
*   DYNPROFIELD            = ' '
*   STEPL                  = 0
*   WINDOW_TITLE           = WINDOW_TITLE
*   VALUE                  = ' '
*   VALUE_ORG              = 'C'
*   MULTIPLE_CHOICE        = ' '
*   DISPLAY                = ' '
*   CALLBACK_PROGRAM       = ' '
*   CALLBACK_FORM          = ' '
*   MARK_TAB               = MARK_TAB
* IMPORTING
*   USER_RESET             = USER_RESET
  TABLES
    value_tab              = value_tab
*   FIELD_TAB              = FIELD_TAB
*   RETURN_TAB             = RETURN_TAB
*   DYNPFLD_MAPPING        = DYNPFLD_MAPPING
* EXCEPTIONS
*   PARAMETER_ERROR        = 1
*   NO_VALUES_FOUND        = 2
*   OTHERS                 = 3

hope it will help u

regards

rahul

Former Member
0 Kudos

Hi,

Please use FM POPUP_TO_CONFIRM. In this you can use more than 200 characters as text. with Continue and Cancel.

Thanks,

Sriram POnna.

Former Member
0 Kudos

Hi Raghav..

Use this function module,

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

text_question = 'Do u want to continue?'

text_button_1 = 'CONTINUE'

text_button_2 = 'CANCEL'

IMPORTING

answer = l_answer

EXCEPTIONS

text_not_found = 1

OTHERS = 2.

IF l_answer NE '1'. -


If yes

ENDIF.

Regards,

Uma

Former Member
0 Kudos

Hi,

You can try this:-

MESSAGE I001(message Number) display as 'W'.

Regards

Sandipan

Former Member
0 Kudos

use this.

Message ' ur text ' type 'E'.

thank ypu,

anu

Former Member
0 Kudos

I need only two ICONS at my pop up screen ..!!

Continue and Cancel..!

Rgds,

Raghav

Former Member
0 Kudos

Hi Raghav,

Try this code with 'POPUP_WITH_2_BUTTONS_TO_CHOOSE

DATA answer TYPE c.

CALL FUNCTION 'POPUP_WITH_2_BUTTONS_TO_CHOOSE'
  EXPORTING
*   DEFAULTOPTION       = '1'
    diagnosetext1       = 'Continue or Cancel'
*   DIAGNOSETEXT2       = ' '
*   DIAGNOSETEXT3       = ' '
    textline1           = 'Choose Continue or Cancel Choose Continue or Cancel'
    TEXTLINE2           = 'Choose Continue or Cancel Choose Continue or Cancel'
    TEXTLINE3           = 'Choose Continue or Cancel Choose Continue or Cancel'
    text_option1        = 'Continue'
    text_option2        = 'Cancel'
    titel               = 'Choose'
 IMPORTING
   answer              = answer
          .

CASE answer.

  WHEN 1.
    WRITE 'Continue'.
  WHEN 2.
    WRITE 'Cancel'.
ENDCASE.

Regards

Former Member
0 Kudos

Hi,

In the FM POPUP_FOR_INTERACTION

Pass the value of TICON as W

Button 1 as Continue

And Button 2 Cancel.

Regards

Sandipan