• Francesco Boccassi
  • NEWBIE
  • 5 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Dear All,

anybody of you has succeeded to run Salesforce for Ionic on Android device? I succeeded to run on local web browser following the developer guide, but when I try to run it on Android a white screen appears. I've followed some of the suggestions on Stack Overflow but nothing happened.

Can you help me?

Kind regards.
Dear All,

anybody of you has succeeded to run Salesforce for Ionic on Android device? I succeeded to run on local web browser following the developer guide, but when I try to run it on Android a white screen appears. I've followed some of the suggestions on Stack Overflow but nothing happened.

Can you help me?

Kind regards.
Dear All,

anybody of you has succeeded to run Salesforce for Ionic on Android device? I succeeded to run on local web browser following the developer guide, but when I try to run it on Android a white screen appears. I've followed some of the suggestions on Stack Overflow but nothing happened.

Can you help me?

Kind regards.
Our sales team will clone opportunities with the same accounts for new upsell opps, but there is a critical Checkbox Field with a Validation Rule that we need to default as "FALSE" (unchecked) however, when the SR clones the record, the checkbox defaults as 'TRUE' which "lets" the rep unwittingly bypass the correct sales step that the Checkbox/validation rule is designed to guide against.  

I am trying to create some business logic that resets a cloned Opportunity check-box field to FALSE if that Opportunity record is cloned. 

Here is what I have tried:
IF (ISCLONE(), Example_Checkbox_field1__c = FALSE, Example_Checkbox_field1__c = TRUE)
I figured out that this rule is only accepted by the syntax checker if the Eval Criteria is set to "Created, and every time it's edited.'

However, this WFR does not work (I made sure it was Activated), cloning the opportunity still results with this Checkbox defaulted as TRUE in the record edit page. 

Is there a way to create a formula that sets the 'Example_Checkbox_field1__c' field to FALSE right after 'Clone' button was clicked and BEFORE the record is actually saved for the first time?