Hi,
I'm working on Create Relationship Queries with Custom
Objects
For the challenge
Create a Relationship Query I got correct outputStill the challenge not complted.
Could someone help?
Hi,
I'm working on Create Relationship Queries with Custom
Objects
For the challenge
Create a Relationship Query I got correct outputStill the challenge not complted.
Could someone help?
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?
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
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
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==
Moreover i have tried to switch between the Developer Org and Trailhead Playground Org,
== 1.
Learn Essential Software Development Skills for Admin
2.
3.
Create Relationship Queries with Custom Objects ========