Registration Component

Fnd_Reg_BuyNowURL

Fnd_Reg_BuyNowURL ({feature code{; URL}}) -> Text

Legacy manual page 205

Parameters

ParameterTypeDescription
feature codeTextA registration feature code or “” (optional)
URLTextThe new Buy Now button URL (optional)
Function resultTextThe current URL

Description

This routine allows the developer to get and set the URL to display when the Buy Now button is clicked. Each feature has its own Buy Now URL. In most cases you will call this routine before calling Fnd_Reg_DemoDialog.

To set a new URL, pass it as the second parameter to this method. To set the URL for the application, pass a blank string as the feature code:

Fnd_Reg_BuyNowURL ("";"http://www.MyWebSite.com/buynow.html")

If called without a second parameter, this routine will return the currently set URL. To get the URL for the “APPL” feature you can also omit the feature code parameter:

$url_t:=Fnd_Reg_BuyNowURL
Extracted source text
            Fnd_Reg_BuyNowURL ({feature code{; URL}}) ➔ Text

              Parameter                Type              Description
              feature code             Text              A registration feature code or “” (optional)
              URL                      Text              The new Buy Now button URL (optional)
              Function result          Text              The current URL

            This routine allows the developer to get and set the URL to display when the Buy Now button is
            clicked. Each feature has its own Buy Now URL. In most cases you will call this routine before calling
            Fnd_Reg_DemoDialog.

            To set a new URL, pass it as the second parameter to this method. To set the URL for the application, pass
            a blank string as the feature code:
              Fnd_Reg_BuyNowURL ("";"http://www.MyWebSite.com/buynow.html")

            If called without a second parameter, this routine will return the currently set URL. To get the URL for the
            “APPL” feature you can also omit the feature code parameter:
              $url_t:=Fnd_Reg_BuyNowURL