-
Automation of HTML pages with connectHTML
With the View
command one can display an internet page within an SAP screen or
as a separate window. A new feature (connectHTML statement) now
allows us to automate the displayed page, e.g. to fill in entry
fields or to click on buttons. You can also read values from
internet pages.
View connecHTML
documentation

Example: You add a
button to an SAP screen that, when clicked, starts the display of an
internet page, fills in a company name, and clicks a button on the
internet page that displays a financial statement for the selected
company.
For details please see
Special Topics: Automation of HTML pages

Example: We use a
general "table display" HTML file in order to display tabular data in
a GuiXT script.
For details please see
Special Topics: Automation of HTML pages
-
Dynamic texts on images
In
addition to displaying images, you can add a dynamic text to the
image. Color, font, font size and text position can be specified.
View image documentation
// Display the
SAP system id on logon image
Image (1.1,0.5) (10,20)
"images/logon.gif"
textstring="&V[_database]" textcolor="yellow"
textheight="24"
textweight="8"

//
Touch-screen application: The user can enter a product number on a
visual keypad
Image (0,0) (4,50) "whitebox.gif"
textstring="&F[Material]"
textfont="Arial"
textheight="100"
Image (5,1)
"numbutton.gif" textstring="7"
textheight=80
-textcenter ...
Image (5,16) "numbutton.gif"
textstring="8"
textheight=80
-textcenter ...
...