Skip to main content

#Trailhead Challenges1.962 utenti parlano di questo argomento

Hands-on challenges are the “secret sauce” of Trailhead. Before searching for solutions to superbadge challenges, review the Salesforce Certification Program Agreement and Policies. ** NOTE ** : If you were able to get a response that solved your issue, please mark it as the 'Best Answer' to help other Trailblazers. If the issue persists after 48 hours, create a Trailhead Help case at https://help.salesforce.com/s/support for further assistance.

Hi, 

I'm working on Create Relationship Queries with Custom  

Challenge not complete

 

Objects 

For the challenge

Create a Relationship Query I got correct output

Still the challenge not complted.

Could someone help?

 

#Trailhead Challenges

0/9000

I'm working on the https://trailhead.salesforce.com/content/learn/modules/soql-for-admins/create-relationship-queries-with-custom-objects Trailhead module.   

The DreamHouse package installed successfully (I received the installation confirmation email), and I can see the custom objects in Object Manager.

However, when I go to DreamHouse → Settings and click Import Data, I consistently receive the error:

"Error while importing data."

I also tried creating sample records manually, but some fields are marked as required even though they don't appear on the page layout, so I have no way to populate them.

Has anyone experienced this issue? Is there a known problem with the sample data import or the package?   

0/9000

Challenge not yet complete in New for job application

We can’t find the correct SOQL query in the PropertyUtility class. 

 

public class PropertyUtility { 

    public static void newListedProperties() { 

       List<Property__c> newPropList = [ 

            SELECT Name, Broker__r.Email__c, Days_On_Market__c 

            FROM Property__c 

            WHERE Date_Listed__c >= LAST_N_DAYS:30 

        ]; 

        for (Property__c newProp : newPropList) { 

            String propEmail =

newProp.Name

+ ' : ' + newProp.Broker__r.Email__c; 

            System.debug(propEmail); 

        } 

    } 

 

 

#Trailhead Challenges

3 risposte
  1. 2 dic 2025, 20:35

    Hi , 

     

    You may try with below apex class: 

     

    public class PropertyUtility{

    public static void newListedProperties(){

    List<Property__c> newPropList = [Select Name,Days_On_Market__c,Broker__r.Email__c from Property__c where Days_On_Market__c < 31];

    for(Property__c p : newPropList){

    string propEmail = p.Name +':'+ p.Broker__r.Email__c ;

    system.debug(propEmail);

    }

    }

    }

     

    https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000A909ISAR

0/9000

I already have Installed DreamHouse package while importing "Sample Data" this is the error " Error in Importing Sample data "  

when i tried to Submit the Challenge this is Error " 

We can't find the Broker custom object. Make sure you've successfully imported the DreamHouse sample data." my Org  have the Broker Custom Object Present

When i try to Uninstall this package ==Screenshot== 

Error in Importing Sample data

 

Moreover i have tried to switch between the Developer Org and Trailhead Playground Org,  

 

==  1. 

Learn Essential Software Development Skills for Admin

  

2. 

SOQL for Admins

  

3. 

Create Relationship Queries with Custom Objects ========

 

#Trailhead Challenges

0/9000