Note: You must install the associated hot fix before completing the steps outlined in this SAS KB article.
When you click Help in a custom SAS Management Console plug-in, an "HTTP 404 Page Not Found" message is displayed.
This article applies only to organizations that use custom SAS Management Console plug-ins.
After you install the hot fix, configure your custom plug-in to include a getHelpUrl() method that returns the URL for your plug-in documentation.
Here is an example getHelpUrl() method:
public String getHelpUrl() {
return "https://your-docs-site.com/plugins";
}
For security reasons, the URL must use HTTPS. Plain HTTP URLs should not be provided.
If you want to provide Help documentation, complete the following steps after modifying the plug-in:
If you do not want a Help on menu item to be displayed, modify the example above to return null or an empty string (""). In that case, the Help menu item is hidden automatically.
To verify that the behavior is correct, do the following: