Discussions

You can track the history of decisions for a plan object across associated dimension members with the Discussions field. A discussion is a series of comments made by users. With this feature, you can add comments, review comments made by others, and add attachments.

All users can read comments. Administrators, planners, and suppliers can add comments and attachments. Users can only see comments and attachments for the plan objects and units they have permission to see.

Attachments can have any file extension allowed by Internet Information Services (IIS) on the web server computer.

By default, attachments cannot be larger than 50 MB. You can change this by modifying the web.config file in the Program Files\Infor\BI\PM\Web directory on the server computer.

<location path="ApplicationContainer/Applications/StrategyManagement/StrategyService">
<system.web>
<httpRuntime requestPathInvalidCharacters="&lt;,>,*,%,:,\,?" />
</system.web>
<system.serviceModel>
<bindings>
<webHttpBinding>
<!-- no name attribute on a binding means it's the default for the binding type -->
<binding transferMode="Streamed"  maxReceivedMessageSize="52430000"> <!--
52430000 bytes is just over 50 Mb-->
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
</location>