• Aasif.K1982
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 7
    Replies
I have a bulkified flow which updates the user record. The error specifically occurs in a FastUpdate element which updates the user records stored in a SObjectCollectionVariable.

ERROR STRING
FLOW_ELEMENT_ERROR| Argument must be a big decimal java.lang.Integer|FlowRecordUpdate|UpdateUserRecords 
Error executing flow: Update_User_Fields An unhandled fault has occurred in this flow
An unhandled fault has occurred while processing the flow. Please contact your system administrator for more information.

 
Hi,
How can we remove the Salesforce to Salesforce connection message "This Account is externally shared" or "This Opportunity is externally shared" from the detail pages?

Thanks,
Asif
 
I am trying to write a test class for reCaptcha functionality implemented using Apex. 
Any ideas on how to set the response for a challenge given by google recaptcha?
I have a bulkified flow which updates the user record. The error specifically occurs in a FastUpdate element which updates the user records stored in a SObjectCollectionVariable.

ERROR STRING
FLOW_ELEMENT_ERROR| Argument must be a big decimal java.lang.Integer|FlowRecordUpdate|UpdateUserRecords 
Error executing flow: Update_User_Fields An unhandled fault has occurred in this flow
An unhandled fault has occurred while processing the flow. Please contact your system administrator for more information.

 
Hi,
How can we remove the Salesforce to Salesforce connection message "This Account is externally shared" or "This Opportunity is externally shared" from the detail pages?

Thanks,
Asif
 
I am trying to write a test class for reCaptcha functionality implemented using Apex. 
Any ideas on how to set the response for a challenge given by google recaptcha?
My vf Page-

<apex:page sidebar="false" standardStylesheets="false" showHeader="false">
<apex:includeScript value="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"/>
    <apex:includeScript value="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js"/>

    <apex:includeScript value="{!URLFOR($Resource.bootstrap, 'bootstrap/js/bootstrap.js')}"/>
    <apex:includeScript value="{!URLFOR($Resource.bootstrap, 'bootstrap/js/bootstrap.min.js')}"/>
  
    <apex:stylesheet value="{!URLFOR($Resource.bootstrap, 'bootstrap/css/bootstrap.css')}"/>
    <apex:stylesheet value="{!URLFOR($Resource.bootstrap, 'bootstrap/css/bootstrap.min.css')}"/>
  
   
     <link href="//getbootstrap.com/examples/signin/signin.css" rel="stylesheet" media="screen"/>
    


<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>
</apex:page>
Dear  All,
This is Bootstrap Modal Code at visualforce page please execute it...

<apex:page standardStylesheets="false" sidebar="false" showHeader="false" >

<link href="{!URLFOR($Resource.styles, 'bootstrap/css/bootstrap.min.css')}" rel="stylesheet"/>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<!-- Button trigger modal -->

<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

</apex:page>

How to popup a visualforce page(within jquery modal) on mouse click?