• Raghvendra Singh 22
  • NEWBIE
  • 55 Points
  • Member since 2017


  • Chatter
    Feed
  • 1
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 17
    Replies
Hi Guys,

How to achive this:  Fetch the Email template and show in dropdown in Lightning Component

Thanks,
Raghu
I am getting this error: Challenge Not yet complete... here's what's wrong: 
There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Insert failed. First exception on row 0; first error: CANNOT_EXECUTE_FLOW_TRIGGER, The record couldn’t be saved because it failed to trigger a flow. A flow trigger failed to execute the flow with version ID 30150000000GzkN. Flow error messages: An unhandled fault has occurred in this flow
An unhandled fault has occurred while processing the flow. Please contact your system administrator for more information. Contact your administrator for help.: []

Code is:
public class ContactSearch
{
    public static List<Contact> searchForContacts(String St1, String St2)
    {
        List<Contact> ContctList = [select ID,Name from Contact where LastName = :St1 and MailingPostalCode = :St2];
        return ContctList;
    }
}

Please help!!
I've turned on the functionality in my profile and linked it to my Trailhead account, yet no badges are showing.  Please advise?
User-added image
User-added image
Hi,

I have 31 trailhead Badges:
User-added image

But in partners account, it is showing 0:
User-added image

Can anyone please tell where to check for this issue?

Regards,
Dheer
Hi, 

   I want to develop salesforce code in my local eclipse environment. I follwed steps mentioned here :
    https://developer.salesforce.com/page/Force.com_IDE
So my eclipse is ready now but I dont know how to import code(apex classes, components, visual force pages) from my sandbox into my local enviornment and how I can again deply changes to salesforce cloud.

Can anyone please help me to solve this issue.


Thanks,
Abhishek
  

Is there a way to perform a "global search" through all Apex code --- classes, triggers, etc.?  For example, if I want to search for a specific block of code but don't remember what class it's in...