【发布时间】:2017-08-08 22:15:30
【问题描述】:
我有一个发布到 MS Dynamics 365 的自定义 SSRS 报告,我试图通过单击表单按钮来调用该报告。我想为实体的选定记录运行报告。我能够检索 EntityGuid 运行时并将其传递给报告。
如何获取 ReportGuid 以便将其作为参数传递到 url 中?
什么是 Url 中的 entityType,在哪里可以找到自定义实体的值?
网址看起来像这样 -
var url = serverUrl + "/" + organizationName + "/crmreports/viewer/viewer.aspx?action=run&context=records&helpID=" + rdlName + "&id={"+reportGuid+"}&records=" + entityGuid + "&recordstype=" + entityType;
window.open(url);
【问题讨论】:
标签: reporting-services dynamics-crm