Skip to Content
0
Former Member
Feb 08, 2008 at 02:11 PM

Need a FM

16 Views

Hi,

I want to show a simple pop up for confirmation.

I am using the FM

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

titlebar = text-096 "Confirm

text_question = l_text

text_button_1 = 'Yes'(098)

text_button_2 = 'No'(099)

popup_type = 'Q'

IMPORTING

answer = l_answer

EXCEPTIONS

text_not_found = 1 "#EC *

OTHERS = 2.

My text here is too long.I am getting the correct output but it does not look good..ie not properly structured

I want an FM that will have multiple Exporting paramete as Text ie I want to see the o/p in a structured way.

Foe Eg.:

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxxxxxxxxxxxxxxxxxx(Some message)

If you click on yes.....(Some message)

If you click on no.....(Some message)

Ie i want it on different lines..

Plz help...

Himanshu