• raghuramarao karanam
  • NEWBIE
  • 5 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi All,

In my developer org, when I am trying "build process" I see that the "scheduled action" step disappears as soon as I select Opporunity object and click on Save button. This does not happen when I selected Case object. 

Is there any restriction on opportunity object or do I have to set up something before I try this. Please help me.

Thank,
Raghu
 
Hi All,

In my developer org, when I am trying "build process" I see that the "scheduled action" step disappears as soon as I select Opporunity object and click on Save button. This does not happen when I selected Case object. 

Is there any restriction on opportunity object or do I have to set up something before I try this. Please help me.

Thank,
Raghu
 
Help please - I am trying to complete the Lightning Challenge here:

https://developer.salesforce.com/trailhead/lightning_components/lightning_components_creating

But when I submit I am told it is wrong:

The component does not include an H1 tag with a 'headline' CSS class

My component reads:

<!-- MyLightningComponent.cmp -->
<aura:component implements="force:appHostable"> 
    <div class="headline">
        <H1>Hello Lightning Component!</H1>
    </div>    
</aura:component>

and I have a Style:

.THIS {
    background-color: yellow;
    padding-top: 10px;
}

H1.THIS {
    font-size:24px;
}

.THIS H1{
    font-weight: bold;
    padding: 10px;
}

.THIS.headline {
    padding-top: 20px;
    font-size:24px;
}

.THIS .red {
    background-color: red;
    padding: 10px;
}

.THIS .blue {
    background-color: blue;
    padding: 10px;
}

.THIS .green {
    background-color: green;
    padding: 10px;
}

Can anyone describe what I have done wrong?