• Aaron Pratt 8
  • NEWBIE
  • 75 Points
  • Member since 2017

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 8
    Replies
In this step you're supposed to create a Lightning App for Poloma that contains only the things she wants to focus on.  So I did, I created a Lightning App called Communications, added the Home, Account, Chatter, Reports, and Dashboards tabs, then assigned it to her profile as the default app.

All I get is an error.  "Didn't find a Lightning app named Communications. This Lightning app must include the items that Paloma uses regularly. Paloma must be able to access the app."

Which is completely misleading because the app does exist.  I even logged in a Poloma and checked she could see the app, and everything looked good.  I'm at a complete loss.

Can anyone give any pointers or hints?  I've tried removing the Home tab and checking the step, but I get the same error.  I tried adding in the Key Sales Data page, same error.  Both the home and Key Sales Data, same error.  I tried duplicating the Sales app tabs but reordering them and including what Poloma wants, but still I get an error.

 
Hi,

I am getting error as below

John Wiseman must be subscribed to receive the Opportunities Pipeline report every Monday at 8 am.  

When i am subscribing it is getting error as in the following attachment

User-added image
I know this is sad that I'm failing step 1, so I'm wondering if there is some glitch I need to be aware of to pass. The error I'm getting is: 
User-added image

I've run the readiness check (but not received the email report and am not finding the report in Files). I've also created the users and assigned the permission sets, and run the optimizer report as well, so I'm not sure what's keeping me from passing this step. (this is a new playground btw)
Does Salesforce offer a text message sign up service? If a client wants to be a part of our database, is there a way they can text a code of some sort and automatically be entered into our database?
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.
 
I'm having problems with the Check Challenge on step 6, with regards to the Chatter Group.

I have created the Chatter group and a lightning page to support it. I have been getting this error for the last hour:
User-added image

It's driving me nuts - I've tried everything, even renaming the page. It's quite clearly there.

User-added image

Salesforce is this a bug?
In this step you're supposed to create a Lightning App for Poloma that contains only the things she wants to focus on.  So I did, I created a Lightning App called Communications, added the Home, Account, Chatter, Reports, and Dashboards tabs, then assigned it to her profile as the default app.

All I get is an error.  "Didn't find a Lightning app named Communications. This Lightning app must include the items that Paloma uses regularly. Paloma must be able to access the app."

Which is completely misleading because the app does exist.  I even logged in a Poloma and checked she could see the app, and everything looked good.  I'm at a complete loss.

Can anyone give any pointers or hints?  I've tried removing the Home tab and checking the step, but I get the same error.  I tried adding in the Key Sales Data page, same error.  Both the home and Key Sales Data, same error.  I tried duplicating the Sales app tabs but reordering them and including what Poloma wants, but still I get an error.

 
Hiya

I'm trying to complete the LEX Rollout Superbadge (released today). I've updated my code to style it for LEX and am getting an error that doesn't make sense, since the tag is there!

t means the challenge fails every time I check it. Of course, if the code is slightly off, I'd love your input, since I am not a developer by trade I'm having to teach myself.
 
<apex:page standardStylesheets="false" standardController="Account" recordSetVar="accounts" tabStyle="account">
  <apex:slds />
    <div class="slds-scope">
        <apex:pageBlock >
            <apex:pageBlockTable value="{!accounts}" var="a">
            <table class="slds-table slds-table_cell-buffer slds-table_bordered">
                <apex:column headerValue="{!$ObjectType.Account.Fields.Name.Label}">
                    <apex:outputLink value="{!URLFOR($Action.Account.View, a.id)}">{!a.name}</apex:outputLink>
                </apex:column>
                </table>
            </apex:pageBlockTable>
        </apex:pageBlock>
    </div>
</apex:page>

User-added image