|
Purpose | With Listimage you can display image files in R/3 ABAP lists. All features of the Image command are available. You specify the position of the image within the list via a suitable string that you can choose in the Listimage command.
Restrictions:
Please note: Attribute an interface status to your report by means of the ABAP command “Set PF-Status …”. The GuiXT script can then be called up under the report name you have chosen, e.g. “ZIMGR000.D0120.txt”. The Dynpronumber in lists is always 120. |
Example | Listimage “@Cs” (0,0) (20,50) “C:\GuiXT\Images\ffm.gif”
The image file C:\GuiXT\Images\ffm.gif is displayed in the list instead of each occurence of the string @Cs. The image cooordinates are evaluated relative to the position of the string. |
Variable images | If you want to display variable images, depending on the value of a certain field within a list section, you specify the value immediately to the right of the search string and within normal brackets, e.g.
@Cs(12345678) In this case the name of the image file is modified: the string &par is replaced with the given value. Example: Listimage “@Cs” (0,0) (20,50) “\\p800\products\&par.gif” The image file \\p800\products\12345678.gif is displayed. Both the search string @Cs and the value (12345678) are deleted in the list. |
Options | Same options as in the Image command; multiple images and interactions are also possible. |
Format |
|
Tips & Tricks |
|
Examples of a list with and without GuiXT |
ListImage “@Ci” (0,0) (6,50) “C:\GuiXT\Images\&par.gif” -NoStretch
|