Initializing help system before first use

Controlling Access to VDL, JavaScript and Tableau Views

An app can optionally specify a list of authorities that the user must possess to access a view.
You can specify multiple authorities, separated by whitespace. The authorities required can be either standard authorities (such as SCENARIO_EDIT) or custom authorities.
Note: To access a view, the user must have all of the authorities listed (though not necessarily in the same authority group) .
The following example shows a JavaScript view that requires the custom PAYGRADE_CEO authority:
<client>
    <view-group title="Main">
        <html-view title="Strategy Dashboard" authorities="PAYGRADE_CEO"
                   path="index.html"/>
    </view-group>
</client>

This example shows VDL views with standard and custom authorities:

<client>
    <view-group title="Main">
        <vdl-view title="Strategy Dashboard" authorities="PAYGRADE_CEO" path="dash1.vdl"/>
        <vdl-view title="Control Panel" authorities="SCENARIO_EDIT" path="panel.vdl"/>
    </view-group>
</client>
An app can specify the custom authorities it depends on in the companion file:
<model-companion
        xmlns="http://www.fico.com/xpress/optimization-modeler/model-companion" version="5.1">
	<custom-authorities>
		<custom-authority>PAYGRADE_CEO</custom-authority>
		<custom-authority>PAYGRADE_MANAGER</custom-authority>
		<custom-authority>PAYGRADE_ENGINEER</custom-authority>
	</custom-authorities>
</model-companion>
If they do not already exist, custom authorities are created when the app is loaded, or via the developer update option.

© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.