You need to sign in to do that
Don't have an account?

Lightning Experience Specialist #5
I'm getting this error: Challenge Not yet complete... here's what's wrong:
Opportunities with the stage of 'Awaiting Approval' and a Discount > 0, did not kick off an approval process named 'Approval for Package Deal'.
Here is what I submitted:
Object: Opporunity
Start Process when created or edit
Criteria
Conditions are met
[Opportunity].StageName Is Changed True
[Opportunity].StageName= Awaiting Approval
[Opportunity].Discount > 0
All conditions are met (And)
Immediate Actions
Object Opportunity
Approval Proccess: Specific Approval Process- Approval for Package Deal
Submitter: User field from a record- [Opportunity].Owner.Id
Update Record
Record: [Opportunity]
Criteria: updated records meet all conditions
Filter: Discount Is null= true
New field: Stage=Scheduled
Criteria
Deposit Made
[Opportunity].StageName = Deposit Made
Immediate Action
Update Record
Record: [Opportunity].Fulfillments__r
No criteria
Status= paid deposit
Criteria
Cancelled
[Opportunity].StageName =Cancelled
Immediate Actions
Update Records
[Opportunity].Fulfillments__r
Status= Cancelled
Thank you in advanced!
Opportunities with the stage of 'Awaiting Approval' and a Discount > 0, did not kick off an approval process named 'Approval for Package Deal'.
Here is what I submitted:
Object: Opporunity
Start Process when created or edit
Criteria
Conditions are met
[Opportunity].StageName Is Changed True
[Opportunity].StageName= Awaiting Approval
[Opportunity].Discount > 0
All conditions are met (And)
Immediate Actions
Object Opportunity
Approval Proccess: Specific Approval Process- Approval for Package Deal
Submitter: User field from a record- [Opportunity].Owner.Id
Update Record
Record: [Opportunity]
Criteria: updated records meet all conditions
Filter: Discount Is null= true
New field: Stage=Scheduled
Criteria
Deposit Made
[Opportunity].StageName = Deposit Made
Immediate Action
Update Record
Record: [Opportunity].Fulfillments__r
No criteria
Status= paid deposit
Criteria
Cancelled
[Opportunity].StageName =Cancelled
Immediate Actions
Update Records
[Opportunity].Fulfillments__r
Status= Cancelled
Thank you in advanced!
Thanks for trying out superbadges!
Jeff Douglas
Trailhead Developer Advocate
Is that a glitch? Or is there some way to kick of the discount approval process without calling the approval process through Process Builder? Or some way to rebuild my initial 'Approval for Package Deal' in the Process Builder?
I have looked at previous attempts to answer this challenge. Michele Losch's attempt (above and midway down the page here (https://developer.salesforce.com/forums/?id=906F0000000kEDkIAM" target="_blank)) answer seems to no longer be possible through the UI, and as @Jeff mentions, the challenge has changed anyway.
Rich Wingerter 9 hints at an answer here (https://developer.salesforce.com/forums/?id=906F0000000kGlyIAE), but perhaps I've been working at this for too long, because his answer is Greek to me. Simple solution to the issue?
For the sake of the search engines (to help other lost souls), or if anything changes in the future, the challenge as of 15 Nov 2016 reads:
Following the requirements described above, create the Sales Automation process flow. Please ensure that your process works as expected without errors before submitting this challenge."
Again, for the sake of the search engines, or if anything changes in the future, the instruction data as of 15 Nov 2016 reads:
You want to make some additional changes to further automate your sales process. Create another process named Sales Automation.
You’ll customize three opportunity stages with automation for each stage.
Awaiting Approval
Deposit Made
Cancelled
I have completed LES challenge #5 by following the below steps.
Here are steps which I followed to complete the challenge.
Object: Opportunity
Start Process when created or edit
Node 1 :
Criteria
Conditions are met
[Opportunity].StageName= Awaiting Approval
[Opportunity].Discount > 0
All conditions are met (And)
Immediate Actions
Object Opportunity
Approval Process: Specific Approval Process- Approval for Package Deal
Submitter: User field from a record- [Opportunity].Owner.Id
Node 2 :
Criteria
Conditions are met
[Opportunity].StageName= Awaiting Approval
[Opportunity].Discount = 0
[Opportunity].Discount IsNull true
Custom logic 1 AND (2 OR 3)
Update Record
Record: [Opportunity]
New field: Stage=Scheduled
Node 3 :
Criteria
Deposit Made
[Opportunity].StageName = Deposit Made
Immediate Action
Update Record
Record: [Opportunity].Fulfillments__r
No criteria
Status= paid deposit
Node 4 :
Criteria
Cancelled
[Opportunity].StageName =Cancelled
Immediate Actions
Update Records
[Opportunity].Fulfillments__r
Status= Cancelled
Follow the above steps it will help.
Hope this will help cheers :)
Thanks,
Amit Singh.
Thanks a million. I have been stuck on this stage for a while.
Best Regards,
Khaled Halabieh
Thank you,
Brandon
Can someone help me, where I need to go to get this thing done?
Here's another screenshot of what I have done:
I can get passed that error "Opportunities with the stage of 'Awaiting Approval' and a Discount > 0, did not kick off an approval process named 'Approval for Package Deal'." I have manually tested the process and also the approval process and the work as expected.
My Process is the same as above, (I had missed the test for discount = Null)
I can't found the error? any suggestions where to look?
1)You need to make a process builder on the opportunity
2)In Define Criteria for this Action Group Check for stage and discount
2)If the criteria is true. Call the approval process
3)If the criteria is false then add another criterion and check if the stageName is 'Deposit Made'
4)If the criteria is true. Update fulfillment status to 'paid Deposit'
5)If the criteria is false then add another criterion and check if the stageName is 'Cancelled'
6)If the criteria is true. Update fulfillment status to 'Cancelled'
7))If the criteria are false then add another criterion and check if the stageName is 'Awaiting Approval' and Discount equal 0.
8)If the criteria is true. Update Opportunity stage to 'Scheduled'.
Before checking the challenge activate the process Builder.
Get your shiny badge by following the above step.
Hope, the post will help you to achieve the superbage
Thanks
"[Opportunity].Discount IsNull - False". It worked for me with this. Can you recheck on this and update me.
Thank you!
I am still getting the below error Tried all above mentioned stuff but no luck,
Challenge Not yet complete... here's what's wrong:
Opportunities with the stage of 'Awaiting Approval' and a Discount > 0, did not kick off an approval process named 'Approval for Package Deal'.
the flow the is not getting triggered and there is no way to debug it, so frustrating.
can someone help me on this
and flow builder screen shot
ur sales automation is almost correct but try to do these changes in process
1.In action for first condition change submitter into
User field from a record- [Opportunity].Owner.Id
2.While selecting the opportunity object check "when a record is created or edited" not "only when a record is created".
try to implement these changes
thanks
jaswanth
[Opportunity].StageName= Awaiting Approval
[Opportunity].Discount = 0
I got an error when putting [Opportunity].Discount IsNull true
After I delete it, I got a pass