OnePlace Live - Solution Profiles

The frequency for the software to check whether there are any new Solution Profiles can be defined via the configuration update process 

Property

Mandatory / Optional

Description

action

Mandatory

Set to "insert" to change the default behavior
Set to "delete" to revert to default behavior 

UpdateCheckFrequency

Optional

Set the period of time to check for new Solution Profiles in minutes

enabled

Optional

Set feature to enabled / disabled

enableEdit

Optional

Control if users have the ability to enable/disable this feature through the user interface

Valid values:

"true" / "false"


Change the frequency of checking Solution Profiles to two hours (120 minutes):

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <solutionProfiles action="delete" />
    <solutionProfiles action="insert" updateCheckFrequency="120"/>
</configuration>

 


Change the frequency of checking Solution Profiles to four hours (240 minutes):

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <settingsUpdates action="delete"/>
    <settingsUpdates action="insert" updateCheckFrequency="240" />
</configuration>

 

 

Enable Solution Profile to be modified via the user interface

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <solutionProfiles action="delete" />
    <solutionProfiles action="insert" enableEdit="true"/>
</configuration> 

 


Disable solution profiles

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <solutionProfiles action="delete" />
    <solutionProfiles action="insert" enabled="false"/>
</configuration>