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: 

Symols in Module Pool Program

Former Member
0 Kudos

Hi,

I have a requirement where i want to display a SYMBOL in Module Pool Program Screen. The list of symbols is as follows :-

Symbol Name of symbol Comment Length

SYM_SPACE SPACE 1

! SYM_PLUS_BOX box with plus inside 1

" SYM_MINUS_BOX box with minus inside 1

  1. SYM_PLUS_CIRCLE circle with plus inside 1

$ SYM_MINUS_CIRCLE circle with minus inside 1

% SYM_FILLED_SQUARE filled square 1

& SYM_HALF_FILLED_SQUARE half-filled square 1

' SYM_SQUARE empty square 1

( SYM_FILLED_CIRCLE filled circle 1

) SYM_HALF_FILLED_CIRCLE half-filled circle 1

  • SYM_CIRCLE empty circle 1

+ SYM_FILLED_DIAMOND filled diamond 1

, SYM_DIAMOND empty diamond 1

. SYM_BOLD_X diagonal cross (cancel) 1

/ SYM_NOTE word balloon, note 2

0 SYM_DOCUMENT document 1

1 SYM_CHECKED_DOCUMENT document with checkmark 1

2 SYM_DOCUMENTS double documents 2

3 SYM_FOLDER folder 2

4 SYM_PLUS_FOLDER folder with plus inside 2

5 SYM_MINUS_FOLDER folder with minus inside 2

6 SYM_OPEN_FOLDER open folder 2

7 SYM_BOLD_MINUS bold minus sign 1

8 SYM_BOLD_PLUS bold plus sign 1

9 SYM_CHECKBOX selected checkbox 2

: SYM_RADIOBUTTON selected radiobutton 2

; SYM_LEFT_TRIANGLE triangle pointing left 1

< SYM_RIGHT_TRIANGLE triangle pointing right 1

= SYM_UP_TRIANGLE triangle pointing up 1

> SYM_DOWN_TRIANGLE triangle pointing down 1

? SYM_LEFT_HAND hand pointing left 2

A SYM_LEFT_ARROW left arrow 1

B SYM_RIGHT_ARROW right arrow 1

Any pointers for the same would be very helpful.

Note : I am not talking about ICONS but SYMBOLS.

Thanks in advance,

Best regards,

Prashant

Message was edited by: Prashant Patil

3 REPLIES 3

Former Member
0 Kudos

Hi,

Pls see the below

ABAP Code to display all the SAP icons.

REPORT ZICONS .
TABLES: ICON.
INCLUDE <ICON>.
FIELD-SYMBOLS: <F>.

SELECT * FROM ICON.
   ASSIGN (ICON-NAME) TO <F>.
   WRITE:   /(5) <F>, 20 '@',21 ICON-ID+1(2),23 '@',ICON-OLENG,
            ICON-BUTTON,ICON-STATUS,ICON-MESSAGE,ICON-FUNCTION,
            ICON-NAME.
ENDSELECT.

For Adding symbols

The include «SYMBOL» can be easily used in your programs. It makes available a great number of symbols.

Hope it helps you,

Best Regards,

Anjali

Former Member
0 Kudos

Hi,

Just execute this program for symbols:

SHOWSYMB in se38.

http://help.sap.com/saphelp_47x200/helpdata/en/a7/2872850a6c11d28a220000e829fbbd/frameset.htm

Regards,

Anjali

Former Member
0 Kudos

Boss,

Symbols cant go on to the screen. These are linked to ASCII codes and meant for list output.

Regards,

Anand.