GuiXT Tutorial General topics 1 2 3 4 5 6 7 8 9 10 11 Interactive images 12 continue

With images you can enhance the style of interaction with R/3. A mouse click on an image can call up a menu function or it can put values into R/3 input fields, or you can even do both.

Here some of the R/3 components are represented by characteristic images (they are taken from SAP's homepage www.sap.com). The mouse cursor is shown as a hand symbol. Clicking on an image leads the user to the corresponding application.   
The GuiXT script is simple. The additional parameter "Input=..." tells GuiXT to call up a certain transaction when the user clicks on the image.
       
Box   (1,0)     (6,19)     "Controlling"
Image (1.3,0.5) (6,19)     "Controlling.jpg"   "Input=OK:/NKE50"

Box   (1,20)     (6,39)    "Financials"
Image (1.3,20.5) (6,39)    "Financials.jpg"    "Input=OK:/NFSMN"

Box   (1,40)     (6,59)    "Materials"
Image (1.3,40.5) (6,59)    "Materials.jpg"     "Input=OK:/NMB00"

Box   (7,0)      (12,19)   "Production"        
Image (7.3,0.5)  (12,19)   "Production.jpg"    "Input=OK:/NLPRO"

Box   (7,20)     (12,39)   "HR"
Image (7.3,20.5) (12,39)   "Humans.gif"        "Input=OK:/NPA00"


In a similar way you can define automatic field input. For details see the documentation
 Weiter