Follow the below development steps when drilling down to a Reporting Application page from a BIRT report.
The development process is:
window.parent.dojo.require("curam.util.Navigation");
var emptyString = "";
if (categoryData == "Completed")
{
window.parent.curam.util.Navigation.goToUrl(
"CCSInvestigation_initialContactsCompletedPage.do?numberOfDays=" +
emptyString + "complianceType" + categoryData);
}
else if (categoryData == "Pending")
{
window.parent.curam.util.Navigation.goToUrl(
"CCSInvestigation_initialContactsPendingPage.do?numberOfDays=" +
emptyString + "complianceType" + categoryData);
}
else if (categoryData == "Overdue")
{
window.parent.curam.util.Navigation.goToUrl(
"CCSInvestigation_initialContactsOverduePage.do?numberOfDays=" +
emptyString +"complianceType" + categoryData);
}