Purpose
Contents of GuiXT variables can be passed directly to a URL that serves as a parameter for an embedded web page.

In the following example, the GuiXT script takes the parts of a customer's address from the individual fields and saves them in the variable V[address]. Google Maps is then displayed in a browser control, with the entire address being given as a URL parameter.

Solution
- Read the required fields into one or more GuiXT variables
- Embed the HTML page into the SAP GUI window with "Control"
- Pass the contents of the GuiXT variables directly in the URL


GuiXT Script:

GuiXT
set V[address] "&F[Street/House number]"
set V[address] "&V[address]+&F[Street/House number.text]"
set V[address] "&V[address]+&F[Postal Code/Cit]"

control (15.6,0.6) (28.3,144) name="gm"_
progID= "http://maps.google.com/?q=&V[address]"


Components
InputAssistant + Controls