Search This Blog
Tuesday, May 28, 2019
Monday, May 27, 2019
Friday, May 24, 2019
Download/Edit existing word template from Dynamics 365
Download/Edit existing word template from Dynamics 365
There is no direct ways to download the existing download template in Dynamics CRM. In order to do that it we can do it from SDK code.
There is no direct ways to download the existing download template in Dynamics CRM. In order to do that it we can do it from SDK code.
Guid templateId = new Guid("3AE567D9-BEB5-E711-8147-E0071B6AE051");
Entity objDocTemplate = objService.Retrieve("documenttemplate", templateId, new ColumnSet(true));
if (objDocTemplate != null && objDocTemplate.Attributes.Contains("content"))
{
var ms = new MemoryStream(Convert.FromBase64String(objDocTemplate["content"].ToString()));
var fs = new FileStream(@"C:\LOAWordTemplate.docx", FileMode.CreateNew);
ms.CopyTo(fs);
fs.Flush();
fs.Close();
}
Tuesday, May 21, 2019
Monday, May 13, 2019
Subscribe to:
Posts (Atom)