Web.config configuration changes
Regardless of the type of ERP system that you are using, the web.config file requires updates based on your solution.
By default, the web.config file lists a single entry for each of the ERP types with default values. You can use these entries for further configuration. If you want to create more than one connection of the same type, you can manually insert the new entries with the new ERP connection name. The name of the ERP connection must match the name in the ERP Connections in Kofax AP Agility.
For example, if you created an ERP Connection on-demand when you created an organization, the <connection name="Agnostic" entry must be updated with the name of the ERP Connection. The name is the same as the Organization name.
Similarly, if you have multiple ERP connections, it is possible to add a separate entry for each connection in the web.config file.
For example,
<connections>
<connection name="Agnostic_DEV" type="Files">
<add name="input_path" value="C:\Files\Agnostic_DEV_Input" />
<add name="output_path" value="C:\Files\Agnostic_DEV_Output" />
<add name="apply_xslt" value="false" />
<add name="xslt_path" value="" />
</connection>
<connection name="Agnostic_PRODUCTION" type="Files">
<add name="input_path" value="C:\Files\Agnostic_PRODUCTION_Input" />
<add name="output_path" value="C:\Files\Agnostic_PRODUCTION_Output" />
<add name="apply_xslt" value="true" />
<add name="xslt_path" value="C:\XSLT\Agnostic_PRODUCTION.xslt" />
</connection>
<connections>
In addition to the ERP connection settings, it is also necessary to update the database settings so that they point to your Invoice processing CSV databases. This is independent of the ERP type and must be performed in order for the database lookups to function correctly during the AP Agility workflow.