Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
The Aspose Document Generator is an open-source add-on to be used in Microsoft Dynamic CRM. This add-on is capable of automatically generate a document using a template defined. One-click will generate a document for individual contact based on the template selected. This can be used with all versions of Microsoft Dynamics CRM 2011. Major features of this Addon are:
In order to install and use Aspose .NET Document Generator for Microsoft Dynamics CRM, you need to have one of the following CRM version installed
This addon will work with all version of Microsoft Dynamics CRM:
You can download Aspose .NET Document Generator for CRM from one of the following locations:
Aspose.Words.dll
into CRM installation directory under the CRMWeb/Bin folder.Easily configure and Use Aspose .NET Document Generator for Dynamics CRM by following the instructions here.
We offer free support. Anyone who uses our product, whether they have bought them or are using an evaluation, deserves our full attention and respect.
You can log any issues or suggestions related to Aspose .NET Document Generator using any of the following platforms:
You can download the latest source code at:
Retrieve Note and Read in FileStream. Then read the list of Fields from CRM
if (Note.Contains("documentbody"))
{
byte[] DocumentBody = Convert.FromBase64String(Note["documentbody"].ToString());
MemoryStream fileStream = new MemoryStream(DocumentBody);
Document doc = new Document(fileStream);
string[] fields = doc.MailMerge.GetFieldNames();
Entity contact = service.Retrieve("contact", Contact.Id, new ColumnSet(fields));
The values retrieved from CRM can be simply used in MailMerge:
doc.MailMerge.Execute(fields, values);
MemoryStream UpdateDoc = new MemoryStream();
doc.Save(UpdateDoc, SaveFormat.Docx);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.