• kranthi kumar 160
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 2
    Replies
hello guys i am doing html5 & hybrid course step-1 "GET STARTED WITH HYBRID DEVELOPMENT" when i trying to do this step it is showing error that "You haven't run and logged in from the 'TrailheadHybridTest' app" so it is showing like this and in command prompt when i am trying to create TrailheadHybridTest app using forcehybrid it is showing like this "The "android" utility does not exist at C:\Users\Manoj Kumar\AppData\Local\Android\Sdk\tools\android.bat.  Make sure you've properly installed the Android SDK" it is showing like this please help me to complete this challenge
hello guys i am doing Lightning Web Components for Visualforce Developers step-3(Handle User Actions in JavaScript)in this step they asked to create a component named AccountFinder can please send me the code for creating this component and send the code for AccountList Controller apex class please help me in this
thank you
hello guys I am doing Process Automation Specialist superbadge in this i was stuck in step-5 when i tried to check whether the challenge is done or not it is showing error "Challenge Not yet complete... here's what's wrong:
An Opportunity with the Stage 'Negotiation/Review' and the Amount greater than $100,000 was not successfully submitted for approval upon creation" like this i tried many ways and searched in browser to rectify this error but it is showing the same error so please to complete this challenge
thank you
hello i am doing Build an Experience Cloud Site with Knowledge and Chat module step-5 in this i followed each and every step very carefully but still i am getting this error "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: VSUUZBGH" i followed every step exactly but i am getting this error so please help me
hello guys i am doing Lightning Web Components for Visualforce Developers step-3(Handle User Actions in JavaScript)in this step they asked to create a component named AccountFinder can please send me the code for creating this component and send the code for AccountList Controller apex class please help me in this
thank you
Challenge not yet complete in Playful Wolf Playground

We can't find the 'annualRevenue' property initialized to 'null' in the accountFinder JavaScript.


Tried spinning up a new playground but still seeing the same error.

Code:

accountFinder.js


import { LightningElement, wire } from 'lwc';
import queryAccountsByRevenue from '@salesforce/apex/AccountListControllerLwc.queryAccountsByRevenue';
export default class AccountFinder extends LightningElement {
    annualRevenue;
    @wire(queryAccountsByRevenue, { annualRevenue: '$annualRevenue' })
    accounts;
    handleChange(event) {
        this.annualRevenue = event.detail.value;
    }
    reset() {
        this.annualRevenue = null;
    }
}

accountFinder.html

<template>
    <lightning-card>
        <lightning-input
            type="number"
            label="Annual Revenue"
            formatter="currency"
            value={annualRevenue}
            onchange={handleChange}>
        </lightning-input>
        <lightning-button
            label="Reset"
            onclick={reset}>
        </lightning-button>
            <template if:true={accounts.data}>
                <template for:each={accounts.data} for:item="account">
                     <p key={account.Id}>{account.Name}</p>
                </template>
            </template> 
    </lightning-card>
  </template>


accountFinder.js-meta.xml

<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
    <apiVersion>48.0</apiVersion>
    <isExposed>true</isExposed>
    <targets>
        <target>lightning__AppPage</target>
    </targets>
</LightningComponentBundle>


AccountListControllerLwc.cls

public with sharing class AccountListControllerLwc {
  
    @AuraEnabled(cacheable=true)
    public static List<Account> queryAccountsByRevenue(Decimal annualRevenue) {
        return [
            SELECT Name
            FROM Account
            WHERE annualRevenue >= :annualRevenue
        ];
   }
}

AccountListControllerLws.cls-meta.xml

<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
    <apiVersion>50.0</apiVersion>
    <status>Active</status>
</ApexClass>

I've been reworking this for 2 days and still can't figure out what I'm missing.

Thanks.