-
Admin needs to preserve carriage returns in transfer of text fields in Salesforce
Hello developers,
I am working on an apex script to do a one time transfer of data from one object to another. One of the fields that has to be transferred is a large text area field. It will be transferred to a Rich text area field. I can't figure out how to preserve the carriage returns. Below is the simple version of my script that I have been using to try different things out. I know not to to put dmil inside of loops....again this is just a quick to find how to transfer the string. Without really understanding these different escape methods...I tried all of them...escapeEMCAScript, unescapeECMAScript, escapeHTML3 etc. But none of them work. Everything results in the string saved to the field without any returns.for(Project__c mp : [select Id, Brief__c, Opportunity__r.Description from Project__c
where Id = 'a10N0000001hF0WIAU'])
{
mp.Brief__c = mp.Opportunity__r.Description.escapeHtml4();
update mp;
}
Log In to reply.
Popular Salesforce Blogs

How File Sync and Share Can Help You Stay Organized? | Salesforce Sales Cloud
Are you tired of wasting time searching for files on your computer? If you’re like most people, you probably have several folders spread out across…

5 Groundbreaking Features Exclusive to Salesforce Lightning Experience
With Salesforce stopping to make enhancements to Salesforce Classic, companies have started moving to Salesforce Lightning Experience. However, migrating from Salesforce Classic to Salesforce Lightning…

Elevate Customer Engagement With Salesforce Marketing Cloud
Generating high-quality leads is critical for any business in today’s competitive world. But how do you connect with your customers more personally and meaningfully? Implementing…
Popular Salesforce Videos
SelectList, select Option & Action Function in Salesforce Apex Language
If you work upon salesforce and VF Pages, you have seen these words one is rendered, reRender, ActionFunction, param, onclick, onchange, In this video, you…
Salesforce Admin Certification 2020 Questions Explained with References - Part II
How to prepare and pass Salesforce Admin Certification with Practice Exam Questions 2020 practice questions and answers for the Salesforce Administration Salesforce Certified Admin Exam Questions Salesforce Administrator Certification Exam…
Salesforce Trailhead 2020 - Queueable Apex - Challenge
Create an Queueable Apex class that inserts Contacts for Accounts. Create a Queueable Apex class that inserts the same Contact for each Account for a…