Get the report instance from a registered function
Is there a way to get the instance of the report that has called a registered function from the functions itself?
My problem: in a web server, concurrent users can open reports at the same time, executing FR in multi-thread, and the function value depends on the parameter values of the report. I cannot pass these values as parameters because there are a lot.
Thank you
My problem: in a web server, concurrent users can open reports at the same time, executing FR in multi-thread, and the function value depends on the parameter values of the report. I cannot pass these values as parameters because there are a lot.
Thank you
Comments
public static string MyFunc(Report report)
to call it from a report:
MyFunc(Report)