Preferences Component
Fnd_Pref_SetLongInt
Fnd_Pref_SetLongInt (name; value {; scope})
Parameters
| Parameter | Type | Description |
|---|---|---|
| name | Text | Name of the preference item |
| value | Longint | The new preference value |
| scope | Longint | The preference’s scope (optional) |
Description
This routine stores a long integer value.
Fnd_Pref_SetLongInt ("TimeoutInSeconds";$timeout_i)
If no scope is specified, the preference is stored as a local preference. Pass a third parameter to specify the scope of the preference:
Fnd_Pref_SetLongInt ("TimeoutInSeconds";$timeout_i;Fnd_Pref_Server )
A preference’s scope should not be changed. Doing so may cause unpredictable results.
Extracted source text
Fnd_Pref_SetLongInt (name; value {; scope})
Parameter Type Description
name Text Name of the preference item
value Longint The new preference value
scope Longint The preference’s scope (optional)
This routine stores a long integer value.
Fnd_Pref_SetLongInt ("TimeoutInSeconds";$timeout_i)
If no scope is specified, the preference is stored as a local preference. Pass a third parameter to specify the
scope of the preference:
Fnd_Pref_SetLongInt ("TimeoutInSeconds";$timeout_i;Fnd_Pref_Server )
A preference’s scope should not be changed. Doing so may cause unpredictable results.