-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
13Questions
-
7Replies
Help on Visualforce Page to Create Multiple Records
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
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
-
- Rana Roy
- March 02, 2017
- Like
- 0
- Continue reading or reply
Visualforce Page for Edit Child Object Records
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.
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.
-
- Rana Roy
- February 13, 2017
- Like
- 0
- Continue reading or reply
Trailhead Challenge Help:Developer Console Basics
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?
https://trailhead.salesforce.com/developer_console/developer_console_checkpoints
cant add a checkpoint on line no 13.
Can anyone please help?
-
- Rana Roy
- January 28, 2017
- Like
- 0
- Continue reading or reply
Trigger: Generate Payment from Order
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.
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.
-
- Rana Roy
- December 12, 2016
- Like
- 0
- Continue reading or reply
Opportunities close date between two dates on Visualforce Page
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.
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.
-
- Rana Roy
- November 28, 2016
- Like
- 0
- Continue reading or reply
Generate Order from Opportunity
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.
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.
-
- Rana Roy
- November 27, 2016
- Like
- 0
- Continue reading or reply
Adding Attachment automatically while sending email
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?
When Send Email Button is clicked, under Attachment section, these things dont apppear.
Is there any way to display them automatically while sending Email?
-
- Rana Roy
- November 04, 2016
- Like
- 0
- Continue reading or reply
How to store the names of Contacts into Accounts?
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?
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?
-
- Rana Roy
- November 01, 2016
- Like
- 0
- Continue reading or reply
Help required on Test Class
Developers,
Can you please help me to write the Test Class of the following Class?
Thanks in advance
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
-
- Rana Roy
- September 20, 2016
- Like
- 0
- Continue reading or reply
Mass Submit for Approval
Is there any way to submit multiple records at a time for Approval?
-
- Rana Roy
- September 12, 2016
- Like
- 0
- Continue reading or reply
Display Lead Records on Custom Visualforce Page
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.
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.
-
- Rana Roy
- September 04, 2016
- Like
- 0
- Continue reading or reply
Price book Page layout
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?
I want to edit the related list of products in Price book. Via Page layout its not allowing.
Is there any work around?
-
- Rana Roy
- September 01, 2016
- Like
- 0
- Continue reading or reply
Record display on VF Page
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
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
-
- Rana Roy
- June 10, 2016
- Like
- 0
- Continue reading or reply
Help on Visualforce Page to Create Multiple Records
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
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
- Rana Roy
- March 02, 2017
- Like
- 0
- Continue reading or reply
Help required on Test Class
Developers,
Can you please help me to write the Test Class of the following Class?
Thanks in advance
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
- Rana Roy
- September 20, 2016
- Like
- 0
- Continue reading or reply
Display Lead Records on Custom Visualforce Page
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.
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.
- Rana Roy
- September 04, 2016
- Like
- 0
- Continue reading or reply
Record display on VF Page
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
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
- Rana Roy
- June 10, 2016
- Like
- 0
- Continue reading or reply