Application Development and Automation 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: 
Read only

User exit error long user exits

Former Member
0 Likes
697

Hello,

I need to know how to add ? icon to error messages in messages window.

My regards,

Hello,

I need to know how to add ? icon to error messages in messages window.

My regards,

5 REPLIES 5
Read only

Former Member
0 Likes
670

I mean that in a transaction code, when there is an error about user exit , messages window occurs and in ltxt field, there is ?

icon.

I want to add this icon

Thanks.

Read only

Former Member
0 Likes
670

Use this Fm POPUP_TO_CONFIRM to format message with icons. or Include Icon is your prorgam and when formating message specify the icon as value for e.g '@00@',

Edited by: gawalivaibhav on Jan 26, 2010 4:04 PM

Read only

Former Member
0 Likes
670

Thank you gawalivaibhav

I will try to implement.

Regards.

Read only

Former Member
0 Likes
670

How can I use this function for my user exit ?

Should ı write into include or anytihng else?

By the way Im beginner for Abap you guess.

Read only

0 Likes
670
INCLUDE : <icon>.
TABLES : sscrfields.
MOVE: 'Message Text@00@'  TO pubu,
dyn-icon_id           = '@00@'.
dyn-quickinfo         = 'Message Text'.
dyn-icon_text         = 'Hello'.
sscrfields-functxt_01 = dyn.

Manas M.