Hi Sravanthi Dharma,
The error message " Report name not set, please set report name using ParmReportName method" typically it may be occurring when you are working with ssrs reports and that thing is that report name was not correctly set. To resolve the issue, try to write the code of line in the process report like below if it is custom or existing one.
public void processReport()
{
//Add the report name
this.parmReportName(SSRSReportStr(MyReportName, Reportdesign));
}
thanks
Best Regards,
Ramakrishna P A V