Tag: scenarios
How to Get Permission to Create Scenarios in ACC
by Frank Kim on Jul.22, 2009, under ACC
Sometimes you will find that you cannot create or duplicate scenarios. You keep clicking on the grayed out New Scenario button and right-clicking on scenarios you want to duplicate but nothing happens.
Fortunately the solution is rather simple and is alluded to in the ATG Personalization Programming Guide – Configuring the Process Editor Server.
First you create a scenarioManager.xml file in your <ATG>/home/localconfig/atg/scenario directory like the following.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<process-manager-configuration>
<process-editor-server>
<server-name>foobar:8850</server-name>
</process-editor-server>
</process-manager-configuration>
Next you replace foobar:8850 with the value of /atg/dynamo/service/ServerName.serverName.
Then you restart ATG and reconnect or restart the ACC and you should be able to create and duplicate scenarios.
