2009 Jun 02 9:56 AM
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
2009 Jun 02 10:04 AM
hi
try to use fm icon_create in order to show a text with icon
max
2009 Jun 02 10:04 AM
hi
try to use fm icon_create in order to show a text with icon
max
2009 Jun 02 10:23 AM
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
2009 Jun 02 10:37 AM
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.