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: 

Pop-up window requirement

Former Member
0 Kudos

Hi All,

I am using a BADI. I had declared a variable. In this variable two fields has been concatenated. I want to display that variable in the Pop-up window.

Reg,

Suren

3 REPLIES 3

Former Member
0 Kudos

use popup_to_confirm

Regards

Anbu B

Former Member
0 Kudos

Hi,

You can use FM JVA_POPUP_TO_DISPLAY_TEXT

Regards

Sandipan

Former Member
0 Kudos

hi,

FUNCTION 'POPUP_TO_CONFIRM'*

EXPORTING* TITLEBAR = ' '

  • DIAGNOSE_OBJECT = ' '

  • TEXT_QUESTION = ' '

  • TEXT_BUTTON_1 = 'Ja'(001)

  • ICON_BUTTON_1 = ' '

  • TEXT_BUTTON_2 = 'Nein'(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 =

  • TABLES

  • PARAMETER =

  • EXCEPTIONS

  • TEXT_NOT_FOUND = 1

  • OTHERS = 2.

IF sy-subrc 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF

Reagrds.

Eshwar.