cancel
Showing results for 
Search instead for 
Did you mean: 

Popup with table

Former Member
0 Kudos

Hi all,

I have a requirement to pass an internal table on to the popup. And i should get values like 'yes' and 'No' for confirming. I am able to get the popup with "POPUP_WITH_TABLE_DISPLAY" and also i can pass the table but that is like a text area (where user need to click on some value in text area then only he can perform some action ). I dont need that.

If anybody come across this situation previously or have idea of this requirement plz let me know.

Thanks and Regards

ram

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi

Try POPUP_TO_DECIDE_LIST

Former Member
0 Kudos

Hi!

SUSR_POPUP_LIST_WITH_TEXT provides basic functionality you've described.

MC_LIST_POPUP gives opportunity to customize output area using callback forms.

Regards,

Maxim.

Former Member
0 Kudos

Hi,

REPORT ZPOPUPCONFIRM.

DATA: X_ANS(1) TYPE C.

call function 'POPUP_TO_CONFIRM_STEP'

exporting

  • DEFAULTOPTION = 'Y'

textline1 = 'Do you want to continue'

  • TEXTLINE2 = ' '

titel = 'Please Confirm'

  • START_COLUMN = 25

  • START_ROW = 6

  • CANCEL_DISPLAY = 'X'

IMPORTING

ANSWER = X_ANS.

WRITE: / X_ANS.

Thanks,

Ruthra

Former Member
0 Kudos

hi,

is this helpful

POPUP_TO_CONFIRM

POPUP_TO_DECIDE

POPUP_TO_DECIDE_WITH_MESSAGE

cheers,

sasi

Message was edited by: sasikumar palanichamy