back to top

Running a Crystal Report from a Button with Custom Conditions in the Infor CRM (Saleslogix) Web Client

In a previous post I talked about how to run a report based on the current entity from the click of a button.

btnPreview.OnClientClick = @"var oReporting = Sage.Services.getService('ReportingService');
oReporting.showReport('Sales Order:SalesOrder Detail', 'SALESORDER', Sage.Utility.getCurrentEntityId());
return false;"; 

That code calls the showReport method which requires 3 inputs, the report name and family, the main table to add the condition to, and the ID of that table to restrict down to. This work well for most cases, but what if you want to run a report and pass in your own custom parameters? Well you can use a couple of other aspects of the reporting service to do that. Calling the setReportJob requires you to pass in the plugin ID of the report, the main table to restrict and the ID of that table. However instead of then immediately showing the report this method lets you then change the rsf property to be some completely unrelated query to run the report with. The completed sample code looks like:

    btnPreview.OnClientClick = @"var oReporting = Sage.Services.getService('ReportingService');
    if (oReporting) {     
        var pluginId = oReporting.getReportId('Account:Account Detail');
        oReporting.setReportJob(pluginId, 'ACCOUNT', Sage.Utility.getCurrentEntityId());
        oReporting.reportJob.rsf = "{ACCOUNT.ACCOUNTID} = '123' and {ACCOUNT.TYPE} = 'customer' ";
        oReporting._showReport();
    }
    return false;";
Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author
Kris Halsrud
Kris Halsrud
Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.

2 COMMENTS

  1. I am trying to use this code with a dynamic value.. I got it to work with a hard coded value as you can see in the commented out .rsf line.. I can get the variable to come through with the same format but the report fails after it starts to run. Runs as expected with the commented out line.. Have you run this code with a variable as opposed to a hard coded value?

    btnFcstReport.OnClientClick = @"var oReporting = Sage.Services.getService('ReportingService');
    if (oReporting) {
    var ccSvc = Sage.Services.getService('ClientContextService'); 
    var acctmgrID = ccSvc.getValue('userID');
    var str1 = '\\' + '\'' ;
    var str3 = '\\' + '\'' ;
    var str2 = acctmgrID;

    var pluginId = oReporting.getReportId('Opportunity:Individual Forecast Report');
    oReporting.setReportJob(pluginId, 'Opportunity', Sage.Utility.getCurrentEntityId());

    oReporting.reportJob.rsf = '{OPPORTUNITY.ACCOUNTMANAGERID} = str1.concat(str2).concat(str3); '; //This line starts the report but bombs at 75%
    // oReporting.reportJob.rsf = '{OPPORTUNITY.ACCOUNTMANAGERID} = \'U6UJ9A00000K\' '; //This line returns filtered values as expected

    oReporting._showReport();
    }
    return false;";

    Thanks

    • Hi Steve,

      You’ll need to mix a combination of single and double quotes. Try something like this:

      oReporting.reportJob.rsf = ‘{OPPORTUNITY.ACCOUNTMANAGERID} = “‘ + ccSvc.getValue(‘userID’) + ‘”‘;

      Also, if you open the dev tools and check the network tab you can see how it is sending the request values and also (on a separate item in the network tab) the specifics of the error that is coming back.

      Ryan

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos