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: 

Raw text instead of icon is displayed on selection-screen

Former Member
0 Kudos
308

Hi,

in a module pool I've implemented a Selection-screen as a subscreen. The subscreen is placed on Tabstrip. Everything works well. Except display of icons. After entering a '*' in the low-field of a select-option there should appear an icon in front of the field. But there appears an open input-field with some text in it (e.q. "@28\QSelektieren: Muster einschl.@"). What is wrong? Is it a frontend-bug?

Thanks,

hanspeter

1 ACCEPTED SOLUTION

Former Member
0 Kudos
97

hi

try to use fm icon_create in order to show a text with icon

max

3 REPLIES 3

Former Member
0 Kudos
98

hi

try to use fm icon_create in order to show a text with icon

max

0 Kudos
97

The icon is to display dynamically depending on the masking charakters "*", '+'. On a standard selection-screen in a report, the icons are displayed automatically. By the way: double clicking on a select-options normaly opens the select-options-dialog. It doesn't when the selection-screen is on a subscreen of a dialog program.

Some further ideas?

hanspeter

0 Kudos
97

I tried this sample and it worked fine:

TABLES T001.

SELECTION-SCREEN BEGIN OF SCREEN 100 as SUBSCREEN.
  SELECT-OPTIONS: SO_BUKRS FOR T001-BUKRS.
SELECTION-SCREEN END   OF SCREEN 100.

CALL SCREEN 200.

PROCESS BEFORE OUTPUT.
  CALL SUBSCREEN SEL_SCREEN INCLUDING SY-REPID '0100'.
*
PROCESS AFTER INPUT.
  CALL SUBSCREEN SEL_SCREEN.