Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics CRM (Archived)

CRM 2013:Create a New PDF as an attachment.

(0) ShareShare
ReportReport
Posted on by

Hi all,

I am trying to create a pdf attachment for a custom entity using the following code:

Entity entity = context.InputParameters["Target"] as Entity;
string content = entity["xyz_notes"].ToString();
byte[] byteArray = Encoding.UTF8.GetBytes(content);

Entity annotation = new Entity("annotation");
annotation.Attributes["subject"] = "Syllabus";
annotation.Attributes["notetext"] = "Syllabus";

EntityReference noteRef = new EntityReference();
noteRef.LogicalName = "xyz_syllabusnotes";
noteRef.Id = entity.Id;
annotation["documentbody"] = Convert.ToBase64String(byteArray);
annotation["filename"] = "Syllabus.pdf";
annotation["mimetype"] = @"application/pdf";
annotation.Attributes.Add("objectid", noteRef);
annotation.Attributes.Add("objecttypecode", "sjs_syllabusnotes");

_service.Create(annotation);

The code creates a pdf as an attachment in the record, but when i try to download and open the PDF, it says that it is Corrupted! 

I know that PDFs are in binary format, but the annotation["documentbody"]  attribute does not accept the byte array unless i convert it to Base64 string.

Please Help!

Thanks,

Kautuk

*This post is locked for comments

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…

Kudos to the February Top 10 Community Stars!

Thanks for all your good work in the Community!

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,436 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans