• anusha edpuganti 2
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Error: Compile Error: Variable does not exist: ParentId at line 163 column 19
global with sharing class RelatedList{
@RemoteAction
    global static String insert_Note_Row()
     {
         Note n = new Note();
               try {               
                n.ParentId='a017F0000015hib';
                n.Body='she is ok';
                n.Title='New Note';
                insert n;
            } catch (DmlException e) {
            }            
        return('insert note successfull');                           
     }            
}
Error: Compile Error: Variable does not exist: ParentId at line 163 column 19
global with sharing class RelatedList{
@RemoteAction
    global static String insert_Note_Row()
     {
         Note n = new Note();
               try {               
                n.ParentId='a017F0000015hib';
                n.Body='she is ok';
                n.Title='New Note';
                insert n;
            } catch (DmlException e) {
            }            
        return('insert note successfull');                           
     }            
}