• Manmeet Singh 52
  • NEWBIE
  • 30 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 9
    Replies
I have created two playgrounds to complete the challenge and I still getting errors.

One the first attempt (environment), the error is:
Challenge Not yet complete... here's what's wrong: 
Couldn't find the summation of annual revenue in the report 'High Value Residential'.
Although as the screenshot below shows, the sum is included in the report:
User-added image


One the second playground the error is:
Challenge Not yet complete... here's what's wrong: 
An incorrect source report is assigned to the 'Open Support Cases' component.

And on the third one:
Challenge Not yet complete... here's what's wrong: 
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: HCMOJHYZ
To those who still struggle . . . :-)
Just follow according to number.


User-added image

User-added image


User-added image


User-added image


User-added image

https://developer.salesforce.com/forums/?id=906F0000000B2C0IAK
https://developer.salesforce.com/forums/?id=9060G000000ICinQAG

Hope you find it helpful.
Hi Team,

Could any one help me with Superbadge: Lightning Experience Rollout Specialist #03 challenge.
I have already installed "Attachment and files" appExchange app but getting the error "Challenge Not yet complete... here's what's wrong: 
The Destination Success.png document hasn't been made available in Lightning Experience."

Thanks,
Rahim
Error Message:
Challenge Not yet complete... here's what's wrong: 
The AccountTab Visualforce page does not include one or both of the following: the apex:slds tag in the page, or the slds-table value in the table.

Hello all. I am working on the new superbadge and getting stuck on Challenge 3 . I have tried several solutions but cannot get the data to display in table format. Here is my code below, my main issue is where to place the table class in realtion to the pageBlockTable.

<apex:page standardStylesheets="false" standardController="Account" recordSetVar="accounts" tabStyle="account" applyBodyTag="false">
    <apex:slds >
        
        <div class="slds-scope">
             
                <apex:pageBlock>
                    
                    <table class="slds-table"> 
                    <apex:pageBlockTable  value="{!accounts}" var="a">
                       
                        <apex:column headerValue="{!$ObjectType.Account.Fields.Name.Label}">
                            <apex:outputLink value="{!URLFOR($Action.Account.View, a.id)}">{!a.name}</apex:outputLink>
                        </apex:column>
                        
                    </apex:pageBlockTable> 
                    </table>
                    
                </apex:pageBlock>
            
        </div>
    </apex:slds>    
</apex:page>

 
I am having issues with Creating  an Apex class that returns Account objects for the Mapping.net concepts challenge.  I am a VB and Javascript programmer and I can't seem to get the syntax right.   
public class AccountUtils {
    
    public static void accountsByState(String st){
       List<String> accts = [SELECT Id, Name FROM Account WHERE billingState = :st];
 }
  
}
I believe the first part is correct, but I cannot seem to get a return value.  I am confused by the constructors.  I have tried the documentation but I can't get a return value.  Please help.  I need to get this challenge complete.