How to add notes to opportunities salesforce

So use following code to attach Note to Opportunity. Note noteObj = new Note (); noteObj.Title =’Follow up with customer’; noteObj.Body = ‘test body’; noteObj.ParentId = <opportunityId>; insert noteObj; Hope this would resolves your issue. From Setup, select Enable Notes on the Notes Settings page. Using the page layout editor, add the Notes related list … Read more

How to add notes in salesforce

Let Users Take Enhanced Notes in Salesforce1 From Setup, enter Navigation in the Quick Find box, then select Salesforce1 Navigation. Move Notes from the Available list to the Selected list. We recommend adding Notes above Smart Search Items so it displays above the Recent Items section in the navigation menu. Click Save. Enable Notes. From … Read more