• David Hamburg
  • NEWBIE
  • 155 Points
  • Member since 2016

  • Chatter
    Feed
  • 2
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 10
    Replies
I am trying to solve the trailhead superbadge "Lightning Experience Rollout Specialist " challenge 2 . This challenge is to convert existing vf page "AccountsTab" to lightning .   

Here is my code - 
<apex:page standardController="Account" recordSetVar="accounts" applyHtmlTag="false" applyBodyTag="false" showHeader="false" >
    <apex:slds> </apex:slds>
    <body class="slds-scope">
        <table class="slds-table slds-table_bordered slds-table_cell-buffer">
            <thead>
            <tr class="slds-text-title--caps">
              <th scope="col">
                Name 
              </th>
              
            </tr>
          </thead>
                    
            <tbody>
                <apex:repeat value="{!accounts}" var="a">
                    <tr>
                        <td ><apex:outputLink value="{!URLFOR($Action.Account.View, a.id)}">{!a.name}</apex:outputLink> </td>
                    </tr>
                    
                </apex:repeat>
                
            </tbody>
            
        </table>
    </body>
    
</apex:page>



But i am getting the error below - 

User-added image

Any help will be really appreciated.

Thanks
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>

 
A SImple proof of concept. An account has many assets, each asset has entitlements based on entitlement templates and is at various points in lifecycle.  when an agent starts a case from an asset the only entitlements that should be available should come from the asset, not the account. What am I missing? 

Current set up
Very aggravating! I stood up a new playground and did the entire  Lightning Experience Rollout Specialist up to step 7 and get this  AGAIN

I can not get a development org system to send me an email, so I cant build a dew DE

Can someone point me in the right direction!

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: SQPVTERP
Superbadge
Lightning Experience Rollout Specialist  step 7

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: TOZVMWLA


Struggling with this step, I am not sure what the need refers to: 

As described in the requirements, customize Accounts so sales reps see a highlight of the details they care about most, while Paloma sees a highlight of the details she cares about.

Highlight panels  are defaulted by objects and  record types if you are using them. Has anyone that has passed this challenge give me some guidance 
 
Cant finish, geting the error Challenge Not yet complete... here's what's wrong: 
Could not find the published Knowledge article.   but its done what am i missing
Very aggravating! I stood up a new playground and did the entire  Lightning Experience Rollout Specialist up to step 7 and get this  AGAIN

I can not get a development org system to send me an email, so I cant build a dew DE

Can someone point me in the right direction!

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: SQPVTERP
I am trying to solve the trailhead superbadge "Lightning Experience Rollout Specialist " challenge 2 . This challenge is to convert existing vf page "AccountsTab" to lightning .   

Here is my code - 
<apex:page standardController="Account" recordSetVar="accounts" applyHtmlTag="false" applyBodyTag="false" showHeader="false" >
    <apex:slds> </apex:slds>
    <body class="slds-scope">
        <table class="slds-table slds-table_bordered slds-table_cell-buffer">
            <thead>
            <tr class="slds-text-title--caps">
              <th scope="col">
                Name 
              </th>
              
            </tr>
          </thead>
                    
            <tbody>
                <apex:repeat value="{!accounts}" var="a">
                    <tr>
                        <td ><apex:outputLink value="{!URLFOR($Action.Account.View, a.id)}">{!a.name}</apex:outputLink> </td>
                    </tr>
                    
                </apex:repeat>
                
            </tbody>
            
        </table>
    </body>
    
</apex:page>



But i am getting the error below - 

User-added image

Any help will be really appreciated.

Thanks
Superbadge
Lightning Experience Rollout Specialist  step 7

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: TOZVMWLA
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>

 


Struggling with this step, I am not sure what the need refers to: 

As described in the requirements, customize Accounts so sales reps see a highlight of the details they care about most, while Paloma sees a highlight of the details she cares about.

Highlight panels  are defaulted by objects and  record types if you are using them. Has anyone that has passed this challenge give me some guidance 
 
Hello Everyone,
I am getting SOQL exception whenever I will insert records more than 1000. Now the scenario is when all the records inserted it only executes 3 SOQL statements but then Trigger fired (Before Insert,After Insert,Before Update,After Update) in a batch of 200. 

The same code of trigger repeats for each 200 batch of records and then the SOQL limits increased to 100 in the last batch and then ultimately failed.

The issue is it all executed in one apex transaction.(Apex Transaction Limit 100)

NOTE: I cannot change the functionality inside the trigger.

Is there any solution for this sceanrio?

Thanks in advance.

-Abhishek
Hi,

I have 2 visualforce pages.

My first visualforce page is a pop-up page that has a command button. 

I want this button to be able to send data and trigger a rerender on my other visualforce page. 

Both of these visualforce pages are open at the same time, so I'm not sure about using page redirects.

Both visualforce pages are open at the same time, and when I click the command button or button in the first visualforce page, the other open visualforce page will rerender its output panel to show data coming from the first, the pop-up one.

Any ideas on implementing this?

Thanks in advance!

Best Regards,

Phil Fang | Developer
Cant finish, geting the error Challenge Not yet complete... here's what's wrong: 
Could not find the published Knowledge article.   but its done what am i missing
Hi All,
How to solve the issue,if i have a requirement to use more than 100 Soql queries,wondering if there is any possible way out there.

Thanks
CKR
  • June 15, 2016
  • Like
  • 0