• Rikshit Rawat
  • NEWBIE
  • 5 Points
  • Member since 2015
  • SFDC Developer and Analyst


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I have a partner community which had a 'New Lead' link on community header which opened up Lead list view.

Now i have changed it to open a community page. When i deploy this change set using ANT to UAT or any other environment i get the following error.
 
networks/Partner Community.network -- Error: The default listview AllOpenLeads is not associated with entity /leadsub

 
Hi all,
I m trying to create a formula field  but showing error..
can any one help me to crack this this problem.??
Thank you.

User-added image
Hi All,
How to write a test class on trigger ? below my code on my trigger .pls help me on this.
trigger SyncToOpp on Quote (after update) {
    Set<Id> qIds = new Set<Id>();
    for (Quote q : Trigger.new)
    {
        if (q.Status == 'Accepted')
        {
            qIds.add(q.Id);
        }
    }
    if (qIds.size() > 0 && !System.isFuture())
    {
        SyncQuoteWithOpportunity.SyncQuote(qIds);
    }


REgards,
Viswanadham