cancel
Showing results for 
Search instead for 
Did you mean: 

print green point in smartform

Former Member
0 Kudos

hello,

my strange question is the following:

i've to print a green status point in a smartform table! How can i do that? is there a existing status point which i can use?

when i'm creating a new one an import it with se78 the point isn't very nice (you can see pixels)

regards

jacko

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

hi,

You may use the following method to get a green icon printed:

In your smartform , declare a field for icon ( ref field for eg BU_ICON).....

Then before you want to display the icon, add in a code line and write the following:

INCLUDE <list>.

g_icon = icon_green_light.

where G_ICON is your field declared in smartform.

This should help. Let us know in case u need further assistance on this.

Thanks,

Varna

Former Member
0 Kudos

Hi,

Use a standard text created in SO10 with includign the SAP Icons through the navigation 'Include --> Characters --> SAP Icons' and choose icon name 'ICON_OO_OBJECT'.

And use the standard text in your table node.

To reduce the size you may use a suitable font for the standard text node.

Regards,

Ram

Edited by: Ramakrishna Peri on Sep 29, 2009 9:53 AM

Former Member
0 Kudos

Hi,

U can use the SAP Symbols, &SYM_FILLED_CIRCLE& to get the filled circle, use Character format to get the Green color.

eg:

define a character format C1 with required color, then print.

P1 <C1>&SYM_FILLED_CIRCLE&</>.

Hope it helps!!