• 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
Hi Experts,

Please guide me to develop a VF Page.
I have two custom objects: Quote & Quote Line Items (In M-D with Quote)
Quote Line Item Object has 4 Fields: Quote, Quantity, Unit Price & Product (Look Up).

Quote Line Items are added under Quote Related List. I want to develop a VF Page, where I can edit the Quantity & Unit Price ONLY (on Multiple Quote Line Items at a time) from the related list of Quote.
Any help will be appreciated.
Thanks in advance.
Regarding the Unit, Inspect Objects at Checkpoint
https://trailhead.salesforce.com/developer_console/developer_console_checkpoints
 cant add a checkpoint on line no 13.

Can anyone please help?
I want to generate Payment & Payment Item from Order & Order Item.
i.e. Whenever a payment Record is created, Payemnt Items should be copied from Order Items.

I am trying to write a Trigger for this, but not able to achive this yet :(
Any help will be appreciated.
Hi Experts,
I am trying to develop a Visualforce Page where there will be two input boxes (From & To Date) for Date.
Based on these Input Boxes' Values, Opportunities whose close date come between this range will be displayed.

Any help will be appreciated.
Hello Experts,
I want to generate Order when Opportunity is Closed.
i.e. the opportunity products will become Order items.

Probably this can be achieved through Trigger.

Any help/guidance will be appreciated.
There are some Notes & Attachments on Lead.
When Send Email Button is clicked, under Attachment section, these things dont apppear.
Is there any way to display them automatically while sending Email?
 
Is there any way to store the List of Contacts on some Field of Account?

Suppose there is a Text Area Long Field on Account where I want to store the names of all the contacts for the account.
 
How to do that?
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
Is there any way to submit multiple records at a time for Approval?
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 want to edit the related list of products in Price book. Via Page layout its not allowing.

Is there any work around?
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
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