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

code for status icon without ALV

Former Member
0 Likes
446

hi,

i want how to code status icon with out alv.

urgent

thanks and regards

vijender

2 REPLIES 2
Read only

Former Member
0 Likes
395

Hi,

Refer the below thread...

Hope it is helpful...

Regards,

Chithra

Read only

Former Member
0 Likes
395

Hi,,

Displaying icon in report (Warning Message)

DATA: l_icon LIKE icons-text,
 l_info LIKE icont-quickinfo.

l_ info = 'WELCOME WITH WARNING'...

 
	CALL FUNCTION 'ICON_CREATE'
          EXPORTING
            name   = 'ICON_MESSAGE_WARNING'
            info   = l_info
          IMPORTING
            RESULT = l_icon
          EXCEPTIONS
            OTHERS = 0.
        CONCATENATE l_icon text-054 INTO l_text.

Edited by: Raj on May 12, 2008 10:12 PM