• Rana Roy
  • NEWBIE
  • 50 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 7
    Replies
There are two Custom Objects: Seminar and Attendee.
There is also a Junction Object SeminarAttendee between these two to relate Seminars & Attendees.

In a Seminar record, I want to add multiple Attendees on SeminarAttendee Object to avoid selecting every record one by one from the Look Up.
How to do this?

Experts please help
Developers,
Can you please help me to write the Test Class of the following Class?
public class LeadSearchController {
public Lead leadRecord {get; set;}
public List<Lead> leadList {get; set;}

public LeadSearchController(ApexPages.StandardController controller) {
leadRecord = new Lead();
leadList = new List<Lead>();
      }

public void getLeadData() {
if(leadRecord.Rating != null){
leadList = [SELECT Id, Name, Email, Rating FROM Lead WHERE Rating != null AND Rating =: leadRecord.Rating];
             }
      }
}

Thanks in advance
Experts,
Please help me to achieve the following-
Lead Records need to be displayed in a ListView based on the Rating Selected.
i.e. If I choose Rating Hot, the Hot Lead Records should be displayed on the List View,
Likewise Warm & Cold.
 
Hi Experts, I am a beginner. Please help me to do the following.
I have to Create a VF Page to display the related Contacts of the Related Account of an Opportunity. It should be displayed on each opportunity page.
Any help will be appreciated