• Tom Zimmerman 2
  • NEWBIE
  • 10 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 13
    Replies
I am having trouble with the data piece of the third challenge.  below is the request.

"As described in the requirements, take appropriate steps to deal with the fact that the Documents object isn’t available in Lightning Experience."

I managed to export but am not sure how to import this properly.  below is an image of my export.

User-added image

 
I am having trouble with the data piece of the third challenge.  below is the request.

"As described in the requirements, take appropriate steps to deal with the fact that the Documents object isn’t available in Lightning Experience."

I managed to export but am not sure how to import this properly.  below is an image of my export.

User-added image

 
I am getting error The Destination Success.png document hasn't been made available in Lightning Experience. in Lightning Experience Rollout Specialist Super badge Challenge#3







User-added image

 
Hi,

I am stuck at step 8 of Lightning experience rollout specialist superbudge. I am facing this error "Didn't find a Lightning app named Lightning Knowledge.". I have created the lightning app still I am getting this error. Please help.
I'm struggling with the custom lightning component on this part. I don't have much background coding and am having trouble finding resources to help me achieve coding the lightning component. If someone could help give me some framework code to create a custom lightning component to hold a URL or direct me to a resource that help break this down I'd be very appreciative.
 
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>