Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics CRM (Archived)

Generate Document templates using C# batch job

(0) ShareShare
ReportReport
Posted on by 95

We have some word document templates uploaded in CRM,but we have requirement to generate data in these document templates and save that documents in Shared folder

Is there any way to achieve this functionality.

*This post is locked for comments

  • Suggested answer
    Syed Ibrahim Profile Picture
    Syed Ibrahim 6,257 on at
    RE: Generate Document templates using C# batch job

    You can retrieve the template uploaded and generate docs Do the uploaded templates. Pls use the below code to retrieve in your code.

    /////// start///////////////

    var template = (DocumentTemplate)service.Retrieve(DocumentTemplate.EntityLogicalName, {templateId}, new ColumnSet(true));

              var ms = new MemoryStream(Convert.FromBase64String(template.Content));

              var fs = new FileStream("template.docx", FileMode.CreateNew);

              ms.CopyTo(fs);

              fs.Flush();

              fs.Close();

    /////// End ///////////////

    Hope this helps.If the suggestion resolved your query .Pls mark it as answered/verified to close the thread.

  • Suggested answer
    a33ik Profile Picture
    a33ik 84,325 Most Valuable Professional on at
    RE: Generate Document templates using C# batch job

    Hello,

    Yes, you will have to write code for that.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Daivat Vartak – Community Spotlight

We are honored to recognize Daivat Vartak as our March 2025 Community…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Tip: Become a User Group leader!

Join the ranks of valued community UG leaders

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 292,516 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,407 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans