• m 3
  • NEWBIE
  • 10 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 33
    Questions
  • 0
    Replies
Hi Team,
Please when i am trying to install package from trail head below error i go t.

Error:package.xml: Cannot add component of type:ListView named:AllClosedCases subjectId:00B5j00000BtQc4 to another package because it is an installed component.
note :https://trailhead.salesforce.com/en/content/learn/superbadges/superbadge_integration
Please help me  we will appricate as a best answer
  • January 27, 2022
  • Like
  • 0
1.If Status = Invoiced and Vehicle usage type is null
2.If Status = Invoiced and sale type is null
3.If Status = Cancelled and Net Payment Amount is not null
4.If Registered owner is Company and Account address type is not Registered
5.If Registered owner is Company and Account is null
6.If Manager Approval is not there for payment
7.If Registered owner is Company and Account is null
8.If Exshowroom Price is null or onroad price is null
  • April 05, 2019
  • Like
  • 0
The process can have any name
The process must have an Update Records action that updates Contact mailing address fields (Street, City, State, Postal Code, Country) when the parent Account shipping address field values are updated
The process must be active

Error Message is throwing:
Challenge not yet complete in harm@salesforce.com
There was an unexpected error while verifying this challenge. Usually this is due to some pre-existing configuration or code in the challenge Org. We recommend using a new Developer Edition (DE) to check this challenge. If you're using a new DE and seeing this error, please post to the developer forums and reference error id: PFYKOYEH

User-added imageUser-added image

 
  • March 13, 2019
  • Like
  • 0
Hi Please help me above error is throwing when  i am trying to save class 

public class AddPrimaryContact implements Queueable {
    
    private Contact mainContact;
    private list<Schema.Account> accounts;
    
    public AddPrimaryContact (Contact c, String abbr) {
        this.mainContact = c;
        this.accounts = [Select Id, Name From Account Where BillingState = :abbr limit 200];
    }
    
    public void execute (QueueableContext context) {

        list<Contact> newContacts = new list<Contact>();                
        for (Account a :this.accounts) {
            Contact newContact = this.mainContact.Clone();
            newContact.AccountId = a.Id;
            newContacts.Add(newContact);
        }
        insert newContacts;
    }
}
  • March 05, 2019
  • Like
  • 0
Write a formula field to display particular field each every month particular date  display 
  • January 04, 2019
  • Like
  • 0
how can you delete duplicate records are contacts are accounts in salesforce.
when business process is going in that time duplicates is creating how can you achieve this 
  • December 25, 2018
  • Like
  • 0
Instead of rolling up 5 values, i want to have a criteria apply to that.  What do you do that.
Have u used process builder, workflow
 
  • December 25, 2018
  • Like
  • 0
i have a requirement, i have an object there is a related object to that (abc and child xyz) there is a numeric field on xyz (child object) if there is 5 record, i want to the total of 5 record in the parent record.  how do provide the functionality
 
 
  • December 25, 2018
  • Like
  • 0
Permission to give a particular user with help of sharing rule, how we can achieve that you used ANT tool, what is the process, how do u deploy the code using the tool. what is the process
Let say i don’t want to deploy the code, i want to validate it,
i don’t want to deploy it directly, want to validate it and if succeed then i want to deploy, how do u do that
 
  • December 25, 2018
  • Like
  • 0