主要步骤如下:

  1. 生成一条邮件记录
  2. 生成一条ActivityParty记录
  3. 生成PDF文件,并以Base64添加到ActivityMimeAttachment 中去
  4. 打开发送邮件窗口,以便编辑及发送邮件

第一,生成邮件记录

CreateEmail: function () {
  var email = new Object();
  email.Subject = "Quotation";
  SDK.REST.createRecord(email, "Email", EmailCallBack, function (error) { alert(error.message); });
},

第二,当成功建好邮件记录后,我们来生成ActivityParty记录

// Email Call Back function
EmailCallBack: function (result) {
  email1 = result;
  var activityParty = new Object();
  // Set the "party" of the ActivityParty // EntityReference of an entity this activityparty relatated to.
  activityParty.PartyId = {
    Id: Xrm.Page.context.getUserId(), // id of the the current user which becomes the sender
    LogicalName: "systemuser"
  };
  // Set the "activity" of the ActivityParty
  // EntityReference.
  activityParty.ActivityId = {
    Id: result.ActivityId,
    LogicalName: "email"
  };
  // Set the participation type (what role the party has on the activity).
  activityParty.ParticipationTypeMask = { Value: 1 }; // 1 mean Sender   SDK.REST.createRecord(activityParty, "ActivityParty", ActivityPartyCallBack, function (error) { alert(error.message); });
},

第三,当成功建好ActivityParty记录后,调用SSRS生成PDF形式的报表,并以附件形式附加到邮件中去

ActivityPartyCallBack: function (result2) {
  // Generate the pdf file to attached to the Email.
  var responseSession = getReportingSession();
  encodePdf(responseSession);
},
// create a Email record with the attachement and other parameters.
CreateEmailAttachment: function (bdy) {
  //Email attachment parameters
  var activitymimeattachment = Object();
  activitymimeattachment.ObjectId = Object();
  activitymimeattachment.ObjectId.LogicalName = "email";
  activitymimeattachment.ObjectId.Id = email1.ActivityId;
  activitymimeattachment.ObjectTypeCode = "email",
  activitymimeattachment.Subject = "File Attachment";
  activitymimeattachment.Body = bdy;
  activitymimeattachment.FileName = "Quotation.pdf";
  //Attachment call
  activitymimeattachment.MimeType = "application/pdf";   SDK.REST.createRecord(activitymimeattachment, "ActivityMimeAttachment",ActivityMimeAttachmentCallBack, function (error) { alert(error.message); });
},

第四,打开邮件编辑窗口,以便编辑及发送邮件。

ActivityMimeAttachmentCallBack: function (result) {
  var options = {
    openInNewWindow: true
  };
  Xrm.Utility.openEntityForm("email", email1.ActivityId, null, options);
},

以下是SSRS生成PDF的代码。

//Encode the binary output pdf file to create an attachement
encodePdf: function (responseSession) {   var retrieveEntityReq = new XMLHttpRequest();   var pth = Xrm.Page.context.getClientUrl() + "/Reserved.ReportViewerWebControl.axd?ReportSession=" + responseSession[0] + "&Culture=1033&CultureOverrides=True&UICulture=1033&UICultureOverrides=True&ReportStack=1&ControlID=" + responseSession[1] + "&OpType=Export&FileName=Public&ContentDisposition=OnlyHtmlInline&Format=PDF";   retrieveEntityReq.open("GET", pth, true);
  retrieveEntityReq.setRequestHeader("Accept", "*/*");
  retrieveEntityReq.responseType = "arraybuffer";   retrieveEntityReq.onreadystatechange = function () {
    if (retrieveEntityReq.readyState == 4 && retrieveEntityReq.status == 200) {
      var binary = "";
      var bytes = new Uint8Array(this.response);       for (var i = 0; i < bytes.byteLength; i++) {
        binary += String.fromCharCode(bytes[i]);
      }
      var bdy = btoa(binary);       CreateEmailAttachment(bdy);
    }
  };
  retrieveEntityReq.send();
},
getReportingSession: function () {
  var selectedIds = Xrm.Page.data.entity.getId();
  var reportName = "quotation.rdl";
  var reportGuid = // Report GUID - Replace with your report GUID   var pth = Xrm.Page.context.getClientUrl() + "/CRMReports/rsviewer/QuirksReportViewer.aspx";   var retrieveEntityReq = new XMLHttpRequest();   retrieveEntityReq.open("POST", pth, false);   retrieveEntityReq.setRequestHeader("Accept", "*/*");   retrieveEntityReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");   retrieveEntityReq.send("id=%7B" + reportGuid + "%7D&uniquename=" + Xrm.Page.context.getOrgUniqueName() + "&iscustomreport=true&reportnameonsrs=&reportName=" + reportName + "&isScheduledReport=false&p:<parameters Name In ssrs>=" + selectedIds.toLowerCase().replace(/[^a-z0-9-]/g, ''));
  // p:<parameters Name In ssrs> :Is optional when you want to have parameter.
  var x = retrieveEntityReq.responseText.lastIndexOf("ReportSession=");
  var y = retrieveEntityReq.responseText.lastIndexOf("ControlID=");   var ret = new Array();   ret[0] = retrieveEntityReq.responseText.substr(x + 14, 24);
  ret[1] = retrieveEntityReq.responseText.substr(x + 10, 32);   return ret;
},

【原创】CRM 2015/2016,SSRS 生成PDF文件,幷以附件的形式发送邮件的更多相关文章

  1. 【原创】Dynamics CRM 2015/2016,以PDF的形式打开SSRS报表。

    基本步骤: 使用SSRS建立报表,以下的例子是以记录的GUID作为报表的参数 获取ReportSession 和 ControlId来调用报表 以PDF的形式预览报表 一.根据报表的名称获取报表的GU ...

  2. linux下编译bib、tex生成pdf文件

    实验: 在linux环境下,编译(英文)*.bib和*.tex文件,生成pdf文件. 环境: fedora 20(uname -a : Linux localhost.localdomain 3.19 ...

  3. ThinkPHP3.2.3扩展之生成PDF文件(MPDF)

    目前是PHP生成PDF文件最好的插件了,今天介绍下在ThinkPHP3.2.3里如何使用. 先安照路径放好如图. 下面是使用方法 public function pdf(){ //引入类库 Vendo ...

  4. [轉載]史上最强php生成pdf文件,html转pdf文件方法

    之前有个客户需要把一些html页面生成pdf文件,然后我就找一些用php把html页面围成pdf文件的类.方法是可谓是找了很多很多,什么html2pdf,pdflib,FPDF这些都试过了,但是都没有 ...

  5. asp.net生成PDF文件 (1)

    asp.net生成PDF文件 (1) 这个是例子是网上淘来的,哈哈,很有用的! 首先要到网上下载itextsharp.dll,然后添加引用,主程序如下: 1 2 3 4 5 6 7 8 9 10 11 ...

  6. 怎么用PHP在HTML中生成PDF文件

    原文:Generate PDF from html using PHP 译文:使用PHP在html中生成PDF 译者:dwqs 利用PHP编码生成PDF文件是一个非常耗时的工作.在早期,开发者使用PH ...

  7. JAVA生成PDF文件

    生成PDF文件是主要应用的是ITEXT插件 import java.awt.Color; import java.io.File; import java.io.FileOutputStream; i ...

  8. .NET生成PDF文件

    C#未借助第三方组件,自己封装通用类,生成PDF文件. 调用方式: //路径 string path = @"C:\yuannwu22.pdf"; //内容 string strC ...

  9. 史上最强php生成pdf文件,html转pdf文件方法

    body{ font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI& ...

随机推荐

  1. androidandroid中的通过网页链接打开本地app

    http://blog.csdn.net/zjlovety/article/details/54847980 <html> <head> <meta http-equiv ...

  2. [转]实现Hive数据同步更新的shell脚本

    引言: 上一篇文章<Sqoop1.4.4 实现将 Oracle10g 中的增量数据导入 Hive0.13.1 ,并更新Hive中的主表>http://www.linuxidc.com/Li ...

  3. 企业级Ngnix基于域名的配置_include

    使用include进行nginx.conf文件1. 编辑文件 vim /usr/local/nginx/conf/nginx.conf worker_processes 1; events { wor ...

  4. C# Razor 小笔记和某些细节

    知识小结:C# 的主要 Razor 语法规则 单独一个变量直接使用 @a 的形式,无需加分号,一般是直接使用已有变量,注意在使用 html 标签时,要和 razor 表达式加一个空格. //不能有空格 ...

  5. January 07 2017 Week 1st Saturday

    Procrastination is the thief of time. 拖延乃是光阴之窃贼. My parents always tell me that things ought to be d ...

  6. Chapter 5 Order Inversion Pattern

    5.1 Introdution The main focus of this chapter is to discuss the order inversion (OI) pattern, which ...

  7. Hydra初识

    Hydra词出自希腊神话,原意是是九头蛇,后被赫拉克罗斯所杀,成为赫拉克罗斯的12件伟大功绩之一.而在计算机上HC-HYDRA是一个支持多种网络服务的非常快速的网络登陆破解工具.支持ssh,RDP,M ...

  8. SVG中的元素属性

    SVG attributes by category Animation event attributes onbegin, onend, onload, onrepeat Animation att ...

  9. 二值形态学——腐蚀与膨胀 及 C语言代码实现

    参考文献:数字图像处理(第三版) 何东健 西安电子科技大学出版社 二值形态学中的运算对象是集合, 但实际运算中, 当涉及两个集合时并不把它们看作是互相对等的. 一般设A为图像集合, S为结构元素, 数 ...

  10. BeanDefinition的创建(BeanDefinitionHolder的创建)

    这个对另一篇章Bean Definition从加载.解析.处理.注册到BeanFactory的过程的扩展. Spring框架中BeanDefinition的继承结构. Spring框架中BeanDef ...