For SaaS Customers:
- If you are unable to delete the tasks from the PPM UI, please contact CA Support for assistance
For On Premise Customers:
1. As the KB
KB000009826 says the governor limits can be modified for On Premise customers, but it is not recommended to be changed higher to the defaults. Additionally in relation to timesheets, increasing the governor limit might not be enough.
2. If you need to set a bigger number of tasks on timesheets and increasing the governor limit does not help, PPM On Premise customers, please have a look to the below information. (PPM SaaS Customers, please contact CA Support for assistance)
Increase the value and set the maxParameterCount to 20000
{install.dir}\tomcat-app-deploy\conf\server.xml
<Connector port="85" protocol="HTTP/1.1" connectionTimeout="60000" secure="false" maxThreads="200" minSpareThreads="1" URIEncoding="UTF-8" useBodyEncodingForURI="true" maxHttpHeaderSize="65536" server="CA Clarity PPM" />
If this get's overwritten then update this file as below
{install.dir}\.setup\scripts\j2ee\tomcat\deploy.xml
2 places:
<xpath file="${app.absolute.deployDir}/conf/server.xml">
<apply select="/Server/@port" value="${app.rmiPort}"/>
<apply parent="/Server/Service[@name='Catalina']">
<element if="app.enable.port" removeOtherwise="true" name="Connector" select="Connector[(not(@protocol) or @protocol != 'AJP/1.3') and (not(@secure) or @secure != 'true')]">
<attribute name="port" value="${app.web.port}"/>
....
<attribute name="maxParameterCount" value="20000"/>
<element if="app.enable.ssl.port" removeOtherwise="true" name="Connector" select="Connector[(not(@protocol) or @protocol != 'AJP/1.3') and @secure = 'true']" after="Connector">
<attribute name="port" value="${app.ssl.port}"/>
....
<attribute name="maxParameterCount" value="20000"/>
Setting the maxParameterCount to a higher value than 10000 will allow you to increase the number of tasks on timesheets.
3. If the above information does not help, please contact CA Support for further assistance.