• Manu Mahajan 22
  • NEWBIE
  • 9 Points
  • Member since 2016
  • SFDC Consultant
  • Tata Consultancy Services

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 3
    Replies
Hi,
When I am trying to edit any profile in sandbox and  I am getting below error:
You may not turn off permission Can use dashboards without same license type as running user for this License Type

In QA Sandbox while deployment also from some profiles I am getting below error. Previously the error did not come.
Please assist
Struck in Prioritize Leads with Einstein Lead Scoring project. I have been struck 4th part-Test New Leads with Einstein.  I have created Leads according to the requirement in project. I am getting following error as shown in screenshotUser-added image
Hi,
According to the requirement of Project  I have created Lense named worldwide_sales_with_flags. But still I am getting the error:User-added imageUser-added image
Hi I am getting follwoing Error for Trailhead- "Challenge Not yet complete... here's what's wrong: 
Publishing an Order_Event__e did not create the associated task successfully. Please check your trigger and event."

Following is the code create by me:
trigger OrderEventTrigger on Order_Event__e (after insert) {
    
    List<Task> tasks = new List<Task>();
    
    // Get queue Id for case owner
    User usr = [SELECT Id FROM User WHERE Username='manumars10@gmail.com'];
       
    // Iterate through each notification.
    for (Order_Event__e event : Trigger.New) {
        if (event.Has_Shipped__c == true) {
            // Create Case to dispatch new team.
            Task task=new Task();
            task.WhatId = event.ReplayId;
            task.WhoId = usr.Id;
            task.Subject = 'Follow up on shipped order ' + event.Order_Number__c;
            task.priority= 'Medium';
            task.status = 'New';
           // task.description = 'New  Work';     
            tasks.add(task);
        }
   }
    
    // Insert all cases corresponding to events received.
    insert tasks;

}
Hi,
According to the requirement of Project  I have created Lense named worldwide_sales_with_flags. But still I am getting the error:User-added imageUser-added image
Hi,
According to the requirement of Project  I have created Lense named worldwide_sales_with_flags. But still I am getting the error:User-added imageUser-added image