
<apex:page controller="actcontoller">
<apex:PageBlock><apex:pageBlockTable value="{!Process}" var="task"><apex:column headerValue="Action"><apex:outputLink target="_top" value="p/process/ProcessInstanceWorkitemWizardStageManager?id={!task.Id}">Approve/Reject</apex:outputLink> </apex:column><apex:column headerValue="Related To" value="{!task.processinstance.targetobjectid}"/><apex:column headerValue="Type" value="{!objType}"/><apex:column headerValue="Date Submitted" value="{!task.CreatedDate}"/></apex:pageBlockTable> </apex:pageBlock></apex:Page>When i click on approve/reject link i am getting the above error in Title.any one help me to resolve it?
1 answer

Believe the issue is the value of your outputLink is too long. Try generating this with a PageReference method in an Apex class instead. Here's an example: http://lc169.blogspot.com/2013/07/link-to-approval-process-screen.html