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: 

POPUP to show a list

Former Member
0 Kudos

Hello

Could anyone tell me a standard FM to show a popup with a list of texts of a message class?

4 REPLIES 4

Former Member
0 Kudos

chk this sample code.

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

WITH ls_msg-msgv1 ls_msg-msgv2 ls_msg-msgv3 ls_msg-msgv4

INTO field.

Now pass this field to the function module....

CALL FUNCTION 'POPUP_TO_INFORM'

EXPORTING

titel = 'message'

txt1 = 'No data exsits to display.

Regards

Vasu

Former Member
0 Kudos

Hi,

Try with this function module.

POPUP_TO_DISPLAY_TEXT_LO.

If it doesn't suit. Go to se37 and enter POPUP* and press f4 u will get all the function modules with desc.

Rewardpoints if useful.

Regards

(YUGANDHAR.P)

Former Member
0 Kudos

Hi Alberto,

Please check the FM POPUP_GET_SELECTION_FROM_LIST

Thanks,

Reward If Helpful.

Former Member
0 Kudos

hi

good

try this

POPUP_TO_DECIDE_WITH_MESSAGE (FM)

- Popup a message (three lines of text) and a question (three lines of text) with two customized buttons and [Cancel] (FM description)

-Returns '1' and '2' for 1st and 2nd buttons, 'A' for Cancel.

SPO5(Func. group) - Dialog box for selecting from lists POPUP_TO_DECIDE_LIST - Displays internal table as radiobuttons. Like this:

Value 1

Value 2

Value 3

Value 4

Returns No of line or 'A' if cancelled.

RHRD Shift Planning: Rqmnts Definition Maint. POPUP_TO_DISPLAY_TEXT Displays two lines of text like (I) message.

reward point if helpful.

thanks

mrutyun^