'The input argument 'ActuateServerHost' is missing.(SBL-RPT-01082)' while downloading BIP Report
Hello,
I need to customize the 'BIP report download' logic based on Product;It means when I hit on Submission Report for Product A,Product A specific report should get downloaded and when I hot on Submission Report for Other products one Generic Report should get downloaded.
Have written the code in Vanilla BS 'Report Menu Handler (SWE)'
if (MethodName == "RunReportFromMenu")
{
if (xReport=="Submission Report")
{
Inputs.SetProperty("ReportExecutableName",ProdSpecificReportName);
}
}
But this is giving error 'The input argument 'ActuateServerHost' is missing.'
Kindly provide the inputs if anyone have encountered this error.