• idiris Abdukhamitov 1
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 6
    Replies
The edit button disappears from Highlihgts Panel Action when I tried to overrode it on Classic. And when I am making any change in Highlights Panel Action edit button disappears from page too. 
Method:
list<Id> contactIds
Messaging.MassEmailMessage GG = new Messaging.MassEmailMessage();
GG.setTemplateId(emailtemplate1.Id);
GG.setTargetObjectIds(contactIds); Messaging.sendEmail(new Messaging.MassEmailMessage[] { GG });

Who can help in this situation?

Class:  

public static List<ObjectName> MethosName(Map <Id, objectName> objectNameNewMap){logic}
trigger(beforeUpdate):

Trigger:

List<OnjectName> ObjectNameList = ClassName.methodName(Trigger.newMap);

ERROR:

Method does not exist or incorrect signature: void MethodeName(Map<Id,SObject>) from the type Classname

The edit button disappears from Highlihgts Panel Action when I tried to overrode it on Classic. And when I am making any change in Highlights Panel Action edit button disappears from page too. 
Method:
list<Id> contactIds
Messaging.MassEmailMessage GG = new Messaging.MassEmailMessage();
GG.setTemplateId(emailtemplate1.Id);
GG.setTargetObjectIds(contactIds); Messaging.sendEmail(new Messaging.MassEmailMessage[] { GG });

Who can help in this situation?

Class:  

public static List<ObjectName> MethosName(Map <Id, objectName> objectNameNewMap){logic}
trigger(beforeUpdate):

Trigger:

List<OnjectName> ObjectNameList = ClassName.methodName(Trigger.newMap);

ERROR:

Method does not exist or incorrect signature: void MethodeName(Map<Id,SObject>) from the type Classname