• david willy 1
  • NEWBIE
  • -2 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 10
    Replies
I am getting this error while solving one trailhead module.

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: WHWNRUFH

please help me with this.
I am new to LWC and cant seem to figure out how to open the source code for LWC. Aura can be opened in the dev console but from what i understand this is not possible with LWC.

Is it possible to open a LWC source code from within the org? I have a LWC that was developed by someone else that needs editing. How can I access the source code?
Hi team, 

When I code something and deploy to a sandbox, something it fails if I made a mistake or something doesn't work with the configuration of the sandbox.   When it fails, it used to give a details reason such as:
row 3 col 5 illegal assignment of String in Number field 

However, for some reason it stopped giving reasons but just the outcome
Now it just says DeployFailed: Deploy Failed

I am not sure if something change in CLI or I made a wrong setting. 
Can anyone please help?

Thanks!!

Is it possible to run Azure DevOps pipelines using Salesforce DX? Presumably the sfdx cli needs to be installed, but unsure of a starting point.

I've seen a video leveraging ANT scripts, but nothing so far with sfdx.

Hello all,
I believe this is a standard field and not a custom field, what I want to do is to be able to change "Case number" from an auto number to a text number in my sandbox, so I can import some cases and keep the same ID's.  When I import my cases because of the auto number my links to contacts, ect.. are broken.

I have read various articles and they say:
1. Click on Your Name | Setup | Build | Customize | Object Name | Fields
2. Click Edit next to the Auto-Number field you want to modify
3. Change the Display Format and Next Number you want to be displayed for your records. And click Save.
4. You will receive a pop-up with the following message: “This may result in duplicate number. Are you sure?”
5. Click OK.

But I do not see a way to edit the field type, nor what Display Format to use.
Thanks,
K
Hello All,  
in lightning When i click on custom button it will redirect to standard edit page of the object.   For this, I have created a
1. component which has button
2. Controller.js : which will fire the event

<aura:component controller="AccountLightningSearchclass" implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes" access="global">
  <aura:attribute name="account" type="Account" default="{ 'sobjectType': 'Account'}"/> 
    <aura:registerEvent name="createRecordEvent" type="c:navigateToUrl"/>
    <aura:handler event="c:navigateToUrl" action="{!c.CreateAccount}" />
    <div class="slds-align--absolute-center">
                 <button type="Button" onclick="{!c.CreateAccount}" disabled="false" class="slds-button slds-button--brand">Create Account</button>
             </div>
</aura:component>

2. Controller:
CreateAccount : function(component, event, helper) {

           var createRecordEvent = $A.get("e.force:navigateToRecord");
        alert('Getting Event');
        createRecordEvent.setParams({
            "entityApiName": "Account"
        });
        createRecordEvent.fire();
        }, 
    
})

3. Event:
<aura:event type="APPLICATION" description="Event template" >

 <aura:attribute name="entityApiName" type="String"/>

</aura:event>

But Getting setparams undefined error.
 Thanks in advance
Hello,

Part of the module is where you create couple of profiles with object level permissions. Accordingly i have set the right permissions for account object (R/E/VA), Opportunity (R/C/E) -- NO VIEW ALL for Field Sales Profile.

Everytime i check the challenge am getting below error; any help.
Error:
Challenge Not yet complete... here's what's wrong: 
The Field Sales User does not appear to have the correct object permissions for Accounts and Opportunities.

Would you please give clarity on both of those.