• Riccardo Mosca
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies

Hello, how to set fiscal year in DevEd?

Error message:
"Challenge Not yet complete... here's what's wrong: 
It doesn't appear that your company’s fiscal year has been set to start in February."

step-by-step please

Hello, how to set fiscal year in DevEd?

Error message:
"Challenge Not yet complete... here's what's wrong: 
It doesn't appear that your company’s fiscal year has been set to start in February."

step-by-step please

This code worked- 
<aura:component >
    
    <aura:attribute name="item" type="Camping_Item__c" required="True" />
    
    <p>Name:
        <ui:outputText value="{!v.item.Name}"/></p>
    
    <p> Price:
        <lightning:formattedNumber value="{!v.item.Price__c}" style="currency"/>   </p> 
    <p>Quantity:
        <lightning:formattedNumber value="{!v.item.Quantity__c}" style="number"/></p>
    <p> 
        <lightning:input type="toggle" label="Packed?" checked="{!v.item.Packed__c}"/> </p>
        
</aura:component>