Hi,
This is a simple question but for some reason I can't find a solution or example of usage of this method and the documentation is not useful. It tells you the type to pass in but I not what the values of your options are.
In CSP, and .NET, you can pass parameters like (examples):
1) Reports.Item(1).PluginInterface("Report")
2) report.PluginInterface("")
3) oReport.GetPluginInterface("") and I think
4) obj.PluginInterface
I read somewhere that the preferred method is to pass an empty string but in Java, you're supposed to pass an object AND a string. I tried the following:
1) getPluginMgr().getPluginInterface("CrystalEnterprise.Reports", "Report");
2) getPluginMgr().getPluginInterface("", "");
3) getPluginMgr().getPluginInterface(null, ""); and
4) getPluginMgr().getPluginInterface("CrystalEnterprise.Reports", IPluginMgr.Category.DESKTOP);
Is there a place where the available plugins are documented? It throws an SDKException:
"The plugin does not exist in the APS "
Thanks.
This is a simple question but for some reason I can't find a solution or example of usage of this method and the documentation is not useful. It tells you the type to pass in but I not what the values of your options are.
In CSP, and .NET, you can pass parameters like (examples):
1) Reports.Item(1).PluginInterface("Report")
2) report.PluginInterface("")
3) oReport.GetPluginInterface("") and I think
4) obj.PluginInterface
I read somewhere that the preferred method is to pass an empty string but in Java, you're supposed to pass an object AND a string. I tried the following:
1) getPluginMgr().getPluginInterface("CrystalEnterprise.Reports", "Report");
2) getPluginMgr().getPluginInterface("", "");
3) getPluginMgr().getPluginInterface(null, ""); and
4) getPluginMgr().getPluginInterface("CrystalEnterprise.Reports", IPluginMgr.Category.DESKTOP);
Is there a place where the available plugins are documented? It throws an SDKException:
"The plugin does not exist in the APS "
Thanks.