SAP Database - The Unofficial SAP Knowledge Base

ICON in Selection-Screen

Print This Post Email This Post Written by jimstex on Oct 23rd, 2008 | Filed under: ABAP Programs

How to write the ICON in the selection screen. In the selection screen definition add the below code

1
selection-screen comment 40(20) icon1.

Now in event of at selection-screen output add these lines.

2
3
AT SELECTION_SCREEN OUTPUT.
write icon_configuration as icon to icon1.

If you like this post, you may as well like these too:

  1. Ouput ICON in screen There are 2 statements which allow to write ICON’s on the report output. We need to have INCLUDE <ICON> or INCLUDE<LIST> statement in the program. Eg: WRITE <ICON-NAME> as...
  2. Dynamic Selection Screen ABAP Program using Dynamic Selection Screen ABAP Program with consists of the selection screen, which changes based on the user click on a radio button. The entire selection screen...
  3. ABAP Programs: Selection screen events REPORT ZSOURCE1603 MESSAGE-ID SU. * Worka area TABLES CUSTOMERS. * Selection criteria PARAMETERS PCODE LIKE CUSTOMERS-POSTCODE. SELECT-OPTIONS S_NAME FOR CUSTOMERS-NAME. * Variables DATA: PARAMETER_LENGTH TYPE I, NUMBER_OF_SELECTIONS TYPE I....
  4. ABAP Tips: Reporting and Selection-screen ABAP Reporting Report Template Calling another report from your own report Calling a dialog screen from a report and passing data Call dialog screen from report - Example 2...
  5. ABAP Programs:Displaying the selection screen REPORT ZSOURCE1803. * Work area TABLES CUSTOMERS. * Selection criteria SELECT-OPTIONS S_NAME FOR CUSTOMERS-NAME. * running chap1801 and displaying the selection screen SUBMIT CHAP1801 VIA SELECTION-SCREEN WITH P_DATE =...



Leave a Reply