• Dima 8
  • NEWBIE
  • 15 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 3
    Replies
Wave Apps Basics - Creating Wave Apps
I'm trying to refresh data for Wave Analytics trail using Trailhead Data Manager
I'm getting STORAGE_LIMIT_EXCEEDED
I have 5 MB limit and Trailhead Data Manager eats up 6MB
I tired to delete all tasks and re-run but it creates all those tasks again and uses all available space.
Is somehow my dev org is too small or Trailhead Data Manager isn't working correctly?
How can I fix it?








 
  • February 13, 2017
  • Like
  • 1
Wave Apps Basics - Creating Wave Apps
I'm trying to refresh data for Wave Analytics trail using Trailhead Data Manager
I'm getting STORAGE_LIMIT_EXCEEDED
I have 5 MB limit and Trailhead Data Manager eats up 6MB
I tired to delete all tasks and re-run but it creates all those tasks again and uses all available space.
Is somehow my dev org is too small or Trailhead Data Manager isn't working correctly?
How can I fix it?








 
  • February 13, 2017
  • Like
  • 1
I pasted the apex code exactly as is shown in the lesson, but when I run preview I get the error:

List has no rows for assignment to SObject

Here is the code, which I think is fine, but I'm thinking there is a dependency that is preventing a result.

<apex:page Controller="VisionController">
  <apex:form >
  <apex:pageBlock >
      <apex:image url="http://metamind.io/images/generalimage.jpg">
      </apex:image>
      <br/>
      <apex:repeat value="{!AccessToken}" var="accessToken">
          Access Token:<apex:outputText value="{!accessToken}" /><br/>
    </apex:repeat>
      <br/>
      <apex:repeat value="{!callVisionUrl}" var="prediction">
          <apex:outputText value="{!prediction.label}" />:<apex:outputText value="{!prediction.probability}" /><br/>
      </apex:repeat>
  </apex:pageBlock>
<!--  <apex:pageBlock > -->
<!--      <apex:repeat value="{!callVisionContent}" var="prediction"> -->
<!--          <apex:outputText value="{!prediction.label}" />:<apex:outputText value="{!prediction.probability}" /><br/> -->
<!--    </apex:repeat> -->
<!--  </apex:pageBlock> -->
  </apex:form>
</apex:page>

 
I'm getting this error on Wave Desktop Exploration: Analyze Your Data Over Time.

Challenge Not yet complete... here's what's wrong: 
The 'Sales Pipeline Overview' lens does not appear to have the correct query. Please check the requirements and ensure everything is setup correctly.

I've redone the lens several times and checked that I am evaluating on the correct Dev Org.

Any help?
I'm following the example shown on Peter Knolle's post here: https://developer.salesforce.com/blogs/developer-relations/2015/03/lightning-component-framework-custom-events.html

When creating the contactSearch Component, I'm getting the following error:

"Failed to save undefined: No CONTROLLER named apex://mynamespace.ContactSearchController found: Source"

I'm not sure what I've missing - any thoughts?