Discussions
You can track the history of decisions for a plan object across associated dimension members with the Discussions option. 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 maxReceivedMessageSize setting in the web.config file. The file is in the Program Files\Infor\CPM\Web directory on the CPM Server computer.
<location path="ApplicationContainer/Applications/StrategyManagement/StrategyService">
<system.web>
<httpRuntime requestPathInvalidCharacters="<,>,*,%,:,\,?" />
</system.web>
<system.serviceModel>
<bindings>
<webHttpBinding>
<!-- no name attribute on a binding means it is the default for the binding type -->
<binding transferMode="Streamed" maxReceivedMessageSize="52430000"> <!--
52430000 bytes is just over 50 Mb-->
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
</location>