function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SFDC93 SfSFDC93 Sf 

App Customization Superbadge Challenge 2

Hi All, 

Im trying to do the second challenge in App Customization  but am getting some Super badge am getting the error "Challenge Not yet complete... here's what's wrong:  Couldn’t find the 'Volunteer Shift' relationship field or it is not configured correctly."
Please, anyone, can anyone tell me which relationships should be created between these objects? I have created a master-detail relationship between them. 
User-added image

Also, am not clear with this "Shifts with cascading delete and the option of roll-up summary fields." 

Thank you and any help is appreciated.
Thank you in advance. 
Nayana KNayana K
Shifts with cascading delete and the option of roll-up summary fields. (RSF can only be possible with Master Detail relationship).

Volunteer Shift => Connects Volunteer Shift Workers to Volunteer Shifts with cascading delete and the option of roll-up summary fields. => VSW to VS (MD)

Volunteer => Connects Volunteer Shift Workers to the user. => VSW to U (Lookup)

Volunteer Job => Connects Volunteer Shifts to Volunteer Jobs with cascading delete and the option of roll-up summary fields. => VS to VJ (MD)

Volunteer Activity => Connects Volunteer Jobs to Volunteer Activity. A value should be required to save. => VJ to VA (Lookup with required checkbox set to true)

Volunteer Organization    => Connects Volunteer Activity to Account with the option of roll-up summary fields. Only accounts with the record type we created of status Accepting Activities should be eligible to select. => VA to Account (MD) + Lookup FIlder : (Volunteer Organization: Account Record TypeEQUALSVolunteer Organization Account) AND (Volunteer Organization: Volunteer Organization StatusEQUALSAccepting Activities)
SFDC93 SfSFDC93 Sf
@Nayana, 

Please, can you tell me or share the data types mentioned all fields? I have created some field types based on the information but am missing something that related to data types. 

For the above relationships, Actually, I have created in opposite way. That is the reason why it hasn't worked well. But again I got another issue like this. 

Please help.
Thank you
Pratidnya MorePratidnya More
Hello,
All

App Customization Superbadge Challenge 2 Solution

 A.  Relationships

1. Volunteer Shift:  Create Master-Detail on Volunteer Shift Worker with Volunteer Shift
2. Volunteer: create Lookup on Volunteer Shift Worker with User 
3. Volunteer Job: Create Master-Detail on Volunteer Shift object with Volunteer Job
4. Volunteer Activity: Create Lookup on Volunteer Job with Volunteer Activity and makes it as required
5. Volunteer Organization: Create Master-Detail on Volunteer Activity with Account
Add the lookup Filter on Volunteer Organization field
Filter Criteria     
(Volunteer Organization: Account Record Type EQUALS Volunteer Organization Account) AND (Volunteer Organization: Volunteer Organization Status EQUALS Accepting Activities)

B. Shift Tracking Fields

1.Status: picklist on Volunteer Shift Worker
2. Desired # of Volunteers:  Number on Volunteer Shift (Length=3, decimal=0)
3. Shifts Taken : Roll-Up Summary on Volunteer Shift  
    Summarized Object :- Volunteer Shift Worker
    Roll-Up Type :- COUNT
    Filter Criteria: - Status equals Confirmed, Completed
                            
4. # of Volunteers Still Needed: Field Type – Formula on Volunteer Shift
    Formula= Desired_of_Volunteers__c - Shifts_Taken__c
 
5. Number of Shifts:  Roll-Up Summary on Volunteer Jobs
    Summarized Object :- Volunteer Shift
    Roll-Up Type :- COUNT
 
6. Cumulative Volunteers Needed: Roll-Up Summary on Volunteer Job
    Summarized Object :- Volunteer Shift
    Roll-Up Type :- SUM

C. Hours Tracking Fields
  1. Shift Start Time :-  Date/Time on Volunteer Shift
  2. Shift End Time :-  Date/Time on Volunteer Shift
  3. Shift Hours:-  Formula (Return Type Number) on  Volunteer Shift
  4. Total Vol Hours for Shift:-  Formula (Return Type Number) on  Volunteer Shift
  5. Shift Hours:-  Formula (Return Type Number) on   Volunteer Shift Workers
  6. Shift Start Time:- Formula (Return Type Date/Time) on   Volunteer Shift Workers
  7. Shift End Time:- Formula (Return Type Date/Time) on    Volunteer Shift Workers
  8. Attributed Volunteer Hours:- Roll-Up Summary on Volunteer Job
              Summarized Object: Volunteer Shift             
              Summary Type: Sum

              Field Criteria: Volunteer Shift: Total Vol Hours for Shift


D. Other Fields

1.Volunteer Skills:- first create gobal picklist with name Volunteer Skills Values
                                 Create Picklist (Multi-Select) on User and Volunteer Job object
 
2. IsShiftVoluntee:- Formula (return type Checkbox) on Volunteer shift worker object
                               Formula: $User.Id == Volunteer__r.Id
 
3. Volunteer Organization :
ObjectDataTypeReturnTypeFormula
    
Volunteer JobFormulaTextVolunteer_Activity__r.Volunteer_Organization__r.Name
Volunteer ShiftFormulaTextVolunteer_Job__r.Volunteer_Organization__c
Volunteer Shift WorkerFormulaTextVolunteer_Shift__r.Volunteer_Organization__c
 
4. Volunteer Activity
ObjectDataTypeReturnTypeFormula
    
Volunteer ShiftFormulaTextVolunteer_Job__r.Volunteer_Activity__r.Name
Volunteer Shift WorkerFormulaTextVolunteer_Shift__r.Volunteer_Activity__c
 
5. Volunteer Job
Object : Volunteer Shift Worker
DataType :- Formula
ReturnType: -Text
Formula: - Volunteer_Shift__r.Volunteer_Job__r.Name
 
6. Job Description
Object: Volunteer Job
DataType: RichText Area



@MorePratidnya 
for more information 
morepratidnya7@gmail.com
Aiprous Technologies Pvt. LTD.
Bareera NoorBareera Noor
what is the formula for the shift hours and Total Vol Hours for Shift? I tried for the shift hours my formula is FLOOR(( Shift_End_Time__c - Shift_Start_Time__c ) * 24 ).  But I am having a hard time with the total vol hours for shift.
Nayana KNayana K
@Bareera,
shift hours formula:
(floor(( Shift_End_Time__c - Shift_Start_Time__c )*24))

total vol hours for shift:
Shift_Hours__c * Shifts_Taken__c
Bareera NoorBareera Noor
@Nayana Thanks Now I am geting following error.
Challenge Not yet complete... here's what's wrong: 
The 'Volunteer Organization' field's filter is not configured correctly.


Here are the requirementsVolunteer OrganizationVolunteer Job, Volunteer Shift, and Volunteer Shift Worker display the associated Organization 
Volunteer Organization : Volunteer Job, Volunteer Shift, and Volunteer Shift Worker display the associated Organization name.
Here are my formulas: 
 Volunteer JobFormula: Volunteer_Activity__r.Volunteer_Organization__r.Name
Volunteer ShiftFormula: Volunteer_Job__r.Volunteer_Organization__c
Volunteer Shift WorkerFormula: Volunteer_Shift__r.Volunteer_Organization__c
Nitika Semwal 11Nitika Semwal 11
@Pratidnya More very well written details, Kuddo! Can you tell what should be the formula for :
Start Time:- Formula (Return Type Date/Time) on   Volunteer Shift Workers
Shift End Time:- Formula (Return Type Date/Time) on    Volunteer Shift Workers

I am getting error "The 'Shift Hours' field on the 'Volunteer Shift Workers' object is not configured correctly." I guess beacuse I didnt make above fields in formula feilds. 
Thejas P 13Thejas P 13
Can anybody help me in adding the below-mentioned logic to the 'Shift End Time' field label,
Shift End Time: The Volunteer Shift record stores the date and time a shift should complete. This field is required. Build a rule called "Start before End" ensuring that Shift End Time comes after Shift Start Time with the error message, "No time travel allowed during volunteering! Shift Start Time must be before Shift End Time." 

thanks in advance.,,,
saba airani 9saba airani 9

@Pratidnya 
Hi, 
I am getting  the following error, even after following the details you provided User-added image
"Challenge Not yet complete... here's what's wrong:
The 'Shifts Taken' field is not using the correct filter criteria." can u just suggest me what to do to remove the error?
 
Madhu S 27Madhu S 27
@saba airani 9,
I did the same ,check the below image and cross verify all criteria User-added image
saba airani 9saba airani 9
@madhus
Have got it correct, I am not getting what's wrong in it?
 
Madhu S 27Madhu S 27
@saba airani 9,
yes I did it & just now I finished this challenge, One thing i came to know from this challenge is --we need to properly assign the fields with exact field names,relation ships , formulas.
my suggestion is, if you finsh all requirements of this challenge just go throughly from the begining of this challenge and find out your mistake.
if you still getting any issues , let us know

@ Nayana K,
your post is much helpful to complete this task,
Adding to your solution, we need to create one validation Rule "Start before End" in Volunteer Shift Object &
In B. Shift Tracking Fields : 
 
6. Cumulative Volunteers Needed: Roll-Up Summary on Volunteer Job
    Summarized Object :- Volunteer Shift
    Roll-Up Type :- SUM
We need to Aggregate : # of Volunteers still needed

 
Thejas P 13Thejas P 13
Challenge Not yet complete... here's what's wrong: 
The 'Shift Hours' field on the 'Volunteer Shift Workers' object is not configured correctly.

Pls help me to overcome this error & what is the formula to be used..?
thanks in advance...
 
Madhu S 27Madhu S 27
@Thejas P 13, 
Use this formula " Volunteer_Shift__r.Shift_Hours__c " in Volunteer Shift Workers Object, before doing this u need to create a field "Shift_Hours__c" in Volunteer_Shift__c with this formula "(Shift_End_Time__c - Shift_Start_Time__c)*24" 
It works for me 
Jahaber Sathik J HJahaber Sathik J H
@Thejas P 13,

Shift_Start_Time__c >  Shift_End_Time__c

Answer for your following question:

Shift End Time: The Volunteer Shift record stores the date and time a shift should complete. This field is required. Build a rule called "Start before End" ensuring that Shift End Time comes after Shift Start Time with the error message, "No time travel allowed during volunteering! Shift Start Time must be before Shift End Time." 

 
Thejas P 13Thejas P 13
Yay..!! I completed the challenge, Thank you, @Madhu S 27,  @Jahaber Sathik J H.
Jahaber Sathik J HJahaber Sathik J H
Thats great! Have you completed the Automate Shift Confirmation Approval? Can u please help me?
Riyas MRiyas M

Hi Guys, please someone help me to figureout formula for  'Shift Hours' field on the 'Volunteer Shift Workers' object.

I have used this formula FLOOR(Volunteer_Shift__r.Shift_Hours__c) but I am facing configuration error for this field.

Thanks!
 

 

Ashish Ranjan SahuAshish Ranjan Sahu
Hi folks! I'm stuck on App Customization Specialist Challenge #2. The error I'm getting is:

Challenge Not yet complete... here's what's wrong: 
Couldn’t find the 'Volunteer Shift' relationship field or it is not configured correctly.


I've created a Master-Detail Relationship on Volunteer Shift Worker connecting it to Volunteer Shift object. 
Master-detail Relationship between Volunteer Shift Worker and Volunteer Shift

Can anyone tell me what I'm missing? Thanks in advance. 
Riyas MRiyas M

Hi Ashish,

Did you add rollup summary field on Volunteer Shift object? see attachment mine

User-added image

 

Also, make sure object relation like this:

User-added image



Thanks!

Riyas MRiyas M
I got working 'Shift Hours' field on the 'Volunteer Shift Workers' object, I have used this formula itself Volunteer_Shift__r.Shift_Hours__c as @Madhu S 27 mentioned already, and I understand whenever to fetch parent field value don't wrap any data type functions(time, text, floor etc...).



 
Jairo Straga 6Jairo Straga 6
Thanks @Pratidnya More
 
sahityaPer msahityaPer m
Hi ,.Stuggling with this error sicne from hours.not able to find what is wrong?! Appreciate any suggestion.
Challenge Not yet complete... here's what's wrong: 
Couldn’t find the 'Volunteer Shift' relationship field or it is not configured correctly.
Ashish Ranjan SahuAshish Ranjan Sahu
Hi Riyas,
Thanks for answering. Yes, I've already added all the field and relations as asked by the challenge. I rechecked it with the snapshot of object-relation you posted and they're same. Anything else that I can do?
Jaime Merlín López 1Jaime Merlín López 1
@Pratidnya More,

I followed all your steps and I get this error:
Challenge Not yet complete... here's what's wrong: 
The '# of Volunteers Still Needed' field on the 'Volunteer Shift' record is not working as expected.

I´ve tryed to many formulas but still with the error

Could you help me?
Thanks in advance :)User-added image
Pratidnya MorePratidnya More
Hello,
@Jaime Merlín López
Please check the highlighted part.
User-added image
Pratidnya MorePratidnya More
Hello,
@ashish ranjan sahu, @sahtyaPer m
Challenge Not yet complete... here's what's wrong: 
Couldn’t find the 'Volunteer Shift' relationship field or it is not configured correctly.

plaease check the below image, you have missed the Sharing SettingUser-added image
Ashish Ranjan SahuAshish Ranjan Sahu
Hi @Pratidnya,
I created a new Trailhead Playground and redid everything and voila! Passed the challenge. Thanks for the help. 
Muthulakshmi BalasubramanianMuthulakshmi Balasubramanian
If I create master detail in 'Volunteer Shift Worker' object then I can't create action with 'Volunteer shift worker' as target object for Step 3
J MendoncaJ Mendonca
@Bareera Noor

Volunteer Organization Formulas:
 Volunteer Job Formula: Volunteer_Activity__r.Volunteer_Organization__r.Name
Volunteer Shift Formula: Volunteer_Shift__r.Volunteer_Organization__c
Volunteer Shift Worker Formula: Volunteer_Job__r.Volunteer_Organization__c
 
Tom Pallissery 15Tom Pallissery 15
Shift_Hours__c     Formula (Number)
formula : FLOOR(( Shift_End_Time__c - Shift_Start_Time__c )*24)


Total_Vol_Hours_for_Shift__c   Formula (Number)
formula :  Shift_Hours__c * Shifts_Taken__c

Shifts_Taken__c    Roll-Up Summary (COUNT Volunteer Shift Worker)
Filter Criteria : Status EQUALS Confirmed, Completed

still I am getting error

Challenge Not yet complete... here's what's wrong: 
The 'Total Vol Hours for Shift' field on the 'Volunteer Shift' record is not working as expected.

Please can anyone help me out here
rohit rohilarohit rohila
Challenge Not yet complete... here's what's wrong: 
The 'Shift Start Time' field on the 'Volunteer Shift Worker' object is not configured correctly.
Please help me
Pratidnya MorePratidnya More
Hi @Rohit,
1. Create field  Shift Start Time on Volunteer Shift with DataType  Date/Time

2. Create field  Shift Start Time on Volunteer Shift Workers  with DataType Formula (Return Type Date/Time)

Formula: Volunteer_Shift__r.Shift_Start_Time__c


Thanks, 
Pratidnya More
Aiprous Technologies Pvt. Ltd.
rohit rohilarohit rohila

Thank you so much @ Pratidnya More    

Challenge Not yet complete... here's what's wrong: 
Couldn’t find the value set named 'Volunteer Skills Values'.

can u help me about this

Pratidnya MorePratidnya More
Hi @Rohit,
You have to create Picklist Value Set.

Search for  Picklist Value Set 
then create new Picklist Value Set and named it as Volunteer Skills Values.
Add these values to the value set.
Accounting
Computers
Tutoring
Fundraising
General manual labor

while creating the picklist field on Volunteer Job and User instead of providing the value manually Use global picklist value set.

Thanks,
Pratidnya More
Aiprous Technologies Pvt. Ltd.
rohit rohilarohit rohila

Thank you so much again
 

 

Challenge Not yet complete... here's what's wrong: 
Could not find an active approval process with the name 'Confirm Volunteer Shift'.
  help me in this step also please

rohit rohilarohit rohila
i have to complete this superbadge till  29 july
Pratidnya MorePratidnya More
Hi @Rohit,
I think you Have not activated the approval process Confirm Volunteer Shift. 
You have to create an approval process Confirm Volunteer Shift, activate it and call this approval process in a process builder named as Launch Shift Approver. 
Alex MunizAlex Muniz
Hello Everyone - I need some help here, I feel like the TH has a glitch or maybe my brain does :) I've checked this over and over and keep getting the following error "Challenge Not yet complete... here's what's wrong: Couldn’t find the correct Global picklist values for the 'Volunteer Skills Values'. Double check the instructions and try again. Can someone please take a look at the screenshot and tell me if I'm missing anything here. Thanks in advance. 
User-added image
Benoit VAQUEZ 1Benoit VAQUEZ 1

Hello,
 

I'm on this challenge since more than two hours, and now that i almost completed it, it said this to me:
User-added image
Please tell me that i won't have to do it all over again! :'( 

Christian Schwarz 8Christian Schwarz 8
Hello,

 I am currently working on challenge 2. I am getting the following error:
User-added image

This is how my filter looks like. I just don't see what is wrong with the filter.
User-added image

Any help and hints are appreciated.

Best regards,
Chris
Yatish PatilYatish Patil
@Pratidnya More,
Hello Mam,


I have followed all the steps you have posted inn the discussion of App Customization Superbadge Challenge 2.  But Still I'm getting error. Dont know where i'm going wrong. I have re verified the steps 2-3 times but still same error. Please help .

Error I'm getting : Challenge Not yet complete... here's what's wrong: 
Couldn’t find the 'Volunteer Shift' relationship field or it is not configured correctly.

 Thanks & Regards
Yatish Patil
shweta dwivedi 9shweta dwivedi 9
Hello Everyone,

I have followed all steps but getting an error. Please let me know what i am doing incorrect.

Error:-  Challenge Not yet complete... here's what's wrong: 
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: CNTBBQNT

Thanks,
Shweta.
PoojithaTPoojithaT
Hi Everyone, I'm getting this error for challange 2, though i have given correct values. 
Error:
Challenge Not yet complete... here's what's wrong: 
The 'Shifts Taken' field is not the correct data type.
Shifts Taken

Can anyone help me to fix the error for Shifts Taken in challange 2?

Thanks
 
Praveen Patel 14Praveen Patel 14

Hi,

I am getting the below error:

Challenge Not yet complete... here's what's wrong: 
There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Insert failed. First exception on row 0; first error: REQUIRED_FIELD_MISSING, Required fields are missing: [Volunteer_Activity__c]: [Volunteer_Activity__c]

even followed all the steps mentioned.

Can anyone help me to fix the error for Volunteer_Activity__c in challenge 2?

Praveen Patel 14Praveen Patel 14

Note: I haven't created a sample data. 

Is the error coming because of not having the sample data in the Org.?

NiranjNiranj
Hello,
Iam working on Challenge 2 and getting the below error.
Challenge Not yet complete... here's what's wrong: 
The '# of Volunteers Still Needed' field on the 'Volunteer Shift' record is not working as expected.
Can anyone help me to fix the error?
Abhishek ShakrawarAbhishek Shakrawar
Hi Niranj -  # of Volunteers Still Needed should be a formula - which should be '(Desired of Volunteers) - (Shifts Taken)'
VaishnaviVaishnavi
Hello,
Iam working on Challenge 2 and getting the below error.
"Challenge Not yet complete... here's what's wrong: 
The 'Volunteer Organization' field's filter is not configured correctly."
I have configured the fields and filter correctly.I tried deleting and creating it again still getting the same error.
Can some one help me with this?
Related ToAccount
Child Relationship NameVolunteer_Activities
Related List Labe lVolunteer Activities
Sharing Setting Read/Write: Allows users with at least Read/Write access to the Master record to create, edit, or delete related Detail records.
Reparentable Master Detail (Not Checked)
Filter Criteria
(Volunteer Organization: Account Record TypeEQUALSVolunteer Organization Account) AND (Volunteer Organization: Volunteer Organization StatusEQUALSAccepting Activities)
Filter Type Required.
The user-entered value must match filter criteria.
Error MessageValue does not exist or does not match filter criteria.
Lookup Window Text 
Active-checked
 
Brice Mbouani 9Brice Mbouani 9
Hi @Vaishnavi, did you manage to solve this issue, i'm facing the same error !
VaishnaviVaishnavi
Hi Brice,
I created a new Trailhead Playground and has done  everything and  Passed the challenge.
paluru laharipaluru lahari

Hello Everyone... I had done all the steps required for appp customization superbadge challenge-2.
But still iam getting this error......
Anyone .....Please help me out of this error.....
User-added image
Bethany PlatterBethany Platter
Hi all-

I'm getting an error which indicates that the Volunteer_Job__c field has not been created when trying to pass this challenge, but I'm pretty darn sure that is has in fact been created correctly.

I have already validated all of my field creation against Pratidnya More's post above and everything appears to be correct.

My error message:
User-added image

And my schema:
User-added image

Has anyone else run into this issue?  If so, any tips on how to resolve and move on are appreciated!
 
padala vasudhapadala vasudha
I got stuck in App customization challenge 2 with the error below.
User-added image
I am unable to figure it out and it is the second time that i am facing this error for the challenge. First time when I got this error, I did it in new playground. And now I am facing the same problem.
So can anyone help me.
Raul RuizRaul Ruiz
I found a really good help guide here: https://gum.co/MbXPA. It help me get thru this challenge when i was having a hard time. It hope it helps.
Nikhil_ReddyNikhil_Reddy
@Bethany Platter

If you have any validation rules or triggers on these objects disable them and try again. This caused an issue to me when I was checking the challenge.
Training DevelopmentTraining Development
Hello Trailblazers,

Though I created the Shift Hours field on the Volunteer Shift Object, It throws an Error.
Could not find the 'Shift Hours' field on the 'Volunteer Shift' object.
Schema view

Please help me out to clear this Challenge! 

Thanks,
Trailblazer.
Nikhil RakhadeNikhil Rakhade
Hi All,

I am getting below error in challenge 2: 
Could not find the 'Volunteer Organization' field or it is not configured correctly.

I tried applying solution for Volunteer Organization formula for Volunteer Job as below:
Volunteer Job Formula: Volunteer_Activity__r.Volunteer_Organization__r.Name

but I am getting error below:
User-added image

I am not able to figure out where I messed up. Could you please help.
 
Ritu KhannaRitu Khanna

Hello,

I am on second step of checking the challenge and keep getting this error:

Challenge Not yet complete... here's what's wrong:
The '# of Volunteers Still Needed' field on the 'Volunteer Shift' record is not working as expected.
 

I did check on the field and it seems to be correct. Attaching the screenshot. Can someone please help me find the reason for this error?
User-added image​​​​​​​
Timothy Brevart 5Timothy Brevart 5
Hi all, I've seen a few commenting on this thread with the same error i received, albeit for different fields:
Error on Volunteer_organization__c

I have checked these fields ad nauseum and cannot figure out what is missing. Did anyone ever discover how to resolve these errors?
Angel GuiaoAngel Guiao
Hi Nikhil,
1. Try to re-check the api name of the Volunteer Organization field
or
2. Have you doubled check the relationship between the Volunteer Job custom object and the Volunteer Activity custom object? It seems that you dont have the access for that object. You should see something like this when you used the insert operator

User-added image
Sreejith Janardhanan PillaiSreejith Janardhanan Pillai
Hi Nikhil,

Were you able to solve the issue posted above? I am also facing the same issue. Not seeing the volunteer_organization_r field.
User-added imageTrying to trace back where it has gone wrong.
MPB SalesforceMPB Salesforce
Hello all This is chance to complete your super-badge (App Customization Specialist Super Badge) with MPB Salesforce in some hours or we can say that in one day so please watch this video series

https://www.youtube.com/watch?v=cazq5JP-R6k


if you have any query so please ask me on my channel comment box
Jen SchoeberleinJen Schoeberlein
@Angel Guiao, how did you set up your relationship between the Volunteer Job custom object and the Volunteer Activity custom object? I don't have the Volunteer Org option in my "drop downs" like you do. I'm thinking I set up a master/detail relationship incorrectly somewhere, but can't figure out where. 

@Sreejith Janardhanan Pillai, my fields look like yours (from the Volunteer Job object). Did you figure out how to add in Volunteer Organization on the Volunteer Job object?

I'm stuck at this exact point as well. My error is "Could not find the 'Volunteer Organization' field or it is not configured correctly." -- and I'm pretty sure it's referring to the field built on Volunteer Jobs objects.
 
Sreejith PillaiSreejith Pillai
Hi Jen,

The issue for me was that the relationships were not set up correctly. I had to go through them entirely a couple of times before I could find where I went wrong. It's a tedious task, but that worked for me. 
Please refer to the post by Pratidnya More above. It details the right set up of the relationships. Hope it will work for you as well, best wishes.

Thanks,
Sreejith
ColbridgeColbridge
I got it fixed - the problem of missing Volunteer Organizations field when you create the My Top Volunteer Organizations report - I had somehow missed creating the following additional field (noted by @Pratidnya More here- https://developer.salesforce.com/forums/?id=9060G0000005YNZQA2)
Field: Volunteer Organization - in the following objects:
Object -    DataType -     ReturnType -     Formula
                
Volunteer Job    - Formula -     Text -    Volunteer_Activity__r.Volunteer_Organization__r.Name
Volunteer Shift     - Formula -    Text     - Volunteer_Job__r.Volunteer_Organization__c
Volunteer Shift Worker -     Formula -     Text -    Volunteer_Shift__r.Volunteer_Organization__c

I then deleted the My Top Volunteer Organizations report and recreated it - before recreating, I went back to the custom report type: Users with Volunteer Shift Worker Records and on the Edit Layout, dragged the Volunteer Organizations field into the Volunteer Shift Worker section. 

Checked the challenged, and this report section was completed successfully. Hope this help.
Francisco PenaFrancisco Pena
Hi, I can't seem to progress in Step 2 for the App Customization Specialist Superbadge.  I keep on getting the error message below even if I have deactived the Start_before_End validation rule and for my current environment.  Any thoughts on how can solve this issue?  Cheers!

User-added image
 
Hanspeter JostHanspeter Jost
Check on the Obj Volunteer Shift Worker (Refrence to Volunteer Shift)
- Shift_Hours__c Formula Number - Volunteer_Shift__r.Shift_Hours__c
- Shift_Start_Time__c Formula / Date Time - Volunteer_Shift__r.Shift_Start_Time__c
- Shift_End_Time__c Formula / Date Time - Volunteer_Shift__r.Shift_End_Time__c
 
MPB SalesforceMPB Salesforce
@Hanspeter Jost
@Francisco Pena
please refer this link I hope you will get solution
https://www.youtube.com/watch?v=Qw_wC7_OYN4&list=PLQf_Kv-dMRBLrZUvXFEoBi4BBFanPAgPp&index=2
Francisco PenaFrancisco Pena
@Hanspeter Jost, @MPB Salesforce
Thanks for the help.  I also created a new playground for this superbadge since the previous one might have data issues.
The youtube video is very helpful!
Ashutosh Singh 158Ashutosh Singh 158
Challenge Not yet complete... here's what's wrong:
The 'Desired # of Volunteers' field is not the correct data type.
(I have used number as its data type )
Claudia Hoops 17Claudia Hoops 17

Hi guys, I'm also getting this error 

The 'Shifts Taken' field is not using the correct filter criteria.

I've built it as a Roll up summary field as mentioned above. Is this advice below saying to change it for a formula field?

Use this formula " Volunteer_Shift__r.Shift_Hours__c " in Volunteer Shift Workers Object, before doing this u need to create a field "Shift_Hours__c" in Volunteer_Shift__c with this formula "(Shift_End_Time__c - Shift_Start_Time__c)*24" 
It works for me 

 

Many thanks,
Clauida

Pasca F MkansiPasca F Mkansi

Hello

I need help completing challenge 2 on the App Builder Customization Specialists Superbadge. I get the error highlighted on attached image below. I don't really know what the problem is as the "Shift Hours" field is visible on the "Volunteer Shift" Object, and it works well as expected too.

Please assist me. Thanks
Error I get for for challenge 2 regarding field 'Shift Hours' on 'Volunteer Shift' object

The config part seems correct to me as it works as expected. See below image:
The formula for Shift Hours field
Finally, below image shows the output of the Shif Hours field on the Volunteer Shift Object:
User-added image

Edwina HaleEdwina Hale
I feel like this is something obvious that I am just not seeing, but when I try to set up my filter criteria I don't have Volunteer Organization: Account as an option. I have looked at the set up of everything else I have done and it is all correct so I am not sure why this is not pulling in. User-added image
Can someone help me figure out what I am missing?
 
Rishitha Uppala 6Rishitha Uppala 6
@Pasca F MKansi and @Tarining Development..
Did any of you got to know how to resolve this issue?
User-added image
Salesforce DokariSalesforce Dokari
Why do we have to do a multiply by 24 in shift hours?
Prateek Prateek 1Prateek Prateek 1
Help me
stuck with the error
Challenge Not yet complete... here's what's wrong:
Couldn’t find the 'Shift Hours' field on the 'Volunteer Shifts' object.

I have created the field correctly with the required formula but coudn't figure out the issue.
Thanks
Arnulfo CascoArnulfo Casco
Can I ask why we multiply by 24hrs in the shift hours field?
asai thambiasai thambi
Couldn’t find the 'Volunteer' relationship field or it is not configured correctly.
I create a lookup relation in volunteer shift worker with user. but its show me above msg
Nicolas Cloet 4Nicolas Cloet 4
Just a small remark regarding the Permission set: --> requiered for challenge 2 
create permission set, name it Volunteerism Board
select a license (salesform platform OR standar user)
    assign permission set to a user with the SAME license (duplicate tab and create Maria Jimenez AND Dan Wong)
            checkout "Apps" , OBJECT SETTINGS under "Volunteerism board permission set"
                select the Object which CONTAINS the field the permission set needs access to (Account in this case)
            checkout Field Permission : "Volunteer Organization Status"
                            check/uncheck the readonly/write checkboxes as desired (check READ access AND EDIT access)