Show TOC

Background documentationits-browser_redirect Macro Locate this document in the navigation structure

 

You use the its-browser_redirect macro to redirect the Web browser to a specified URL instead of processing an HTML template.

Syntax Syntax

  1. its-browser_redirect
    url   (in,CHAR)
End of the code.
Parameters

Parameter

Description

url

URL to which the Web browser should be redirected.

Example

If you want users to be able to get more information about one of your business partners, you could use the following code:

Syntax Syntax

  1. form redirect_browser.
    its-browser_redirect 'http://www.saptech.com'.
    endform.
End of the code.