• Hugo Gimenez Franco
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
Hello all,

I feel a little bit frustrated since this is the only unit with error when trying to check challenge.

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

I have used three DE already.

Please help!

Thanks


Hugo
 
Module: Workflow Rule Migration
Unit: Map Your Workflow Criteria to Process Criteria
Topic: Implement the Criteria in Your Process
Item: 5, b, ii

I could not find "Support Plan" inside Case field list.

I am not able to continue the exercise unless I create a custom field inside Case.

Please help!

best regards,

Hugo
Module: Workflow Rule Migration
Unit: Map Your Workflow Criteria to Process Criteria
Topic: Implement the Criteria in Your Process
Item: 4, b, iii

I could not find "Top Account" inside "Case/Account ID>" field list.

Instead, I have choose te following:

Case>Account ID>Accoount Type
Account Type is a picklist type field
Then I chose the "Top Account" value

Will this work for the exercise?

best regards,

Hugo





 
Module: Workflow Rule Migration
Unit: Map Your Workflow Criteria to Process Criteria
Topic: Implement the Criteria in Your Process
Item: 4, b, iii

I could not find "Top Account" inside "Case/Account ID>" field list.

Instead, I have choose te following:

Case>Account ID>Accoount Type
Account Type is a picklist type field
Then I chose the "Top Account" value

Will this work for the exercise?

best regards,

Hugo





 
Hello all,

I feel a little bit frustrated since this is the only unit with error when trying to check challenge.

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

I have used three DE already.

Please help!

Thanks


Hugo
 
I've been working on this trail for a bit - and while I undertsand the concepts, I'm stumped on why I'm getting this error: 
 
Challenge Not yet complete... here's what's wrong: 
A Create a Record action for the Closed Won criteria node isn't properly configured. Make sure that it creates a draft contract according to the instructions in the ‘Create contract for closed opportunity’ task action. Make sure that Start Date is set by using a formula.

I've gone over all of the workflow tasks information to recreate the contact. If I activate the process and close an opportunity, it creates a contract with the expected information and the date is 1mo away with 12mo term. The workflow's task (which is the template for the actual contract) specifies the following: 
 
Use the closed opportunity to create a contract for the associated account. 

Account: The account associated with this opportunity
Status: Draft
Contract Start Date: 1 month from today
Contract Term: 12
Here are my actions: 
User-added image

The Contract Start Date is set to the following formula:
DATE(
    YEAR(Today()) +
    FLOOR((1 + MONTH(Today())) / 12) -
    IF (MOD(MONTH(Today()) + 1, 12) = 0,
        1,
        0),

    MOD((1 + MONTH(Today()) - 1), 12) + 1,

    DAY(Today())
)

Again, for all practical purposes I'm passing this, as it functions and the contract is created. But I must be missing some small detail, named field, something that's tripping up the validation settings. Any help is appreciated!