-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
6Questions
-
0Replies
salesforce replicate error using DBAmp
Here is the error message that I’m getting
12:25:16: Error: An error has occurred while fetching rows from salesforce.com.
12:25:16: Too many requests waiting for connections
12:25:16: Error: Replication failed.
Source: ForceAmpAPI.SQueryResults4.1
Description: Too many requests waiting for connections
12:26:05: Error: DBAmp.exe was unsuccessful.
12:26:05: Error: Command string is C:\"Program Files"\DBAmp\DBAmp.exe Export "Lead_Previous" "ISQ-UTLSQL-01\U1" "SalesForce_Prod" "SALESFORCE"
--- Ending SF_Replicate. Operation FAILED.
Msg 50000, Level 16, State 1, Procedure SF_Replicate, Line 244
--- Ending SF_Replicate. Operation FAILED.
Does anyone have any suggestions on how to fix?
12:25:16: Error: An error has occurred while fetching rows from salesforce.com.
12:25:16: Too many requests waiting for connections
12:25:16: Error: Replication failed.
Source: ForceAmpAPI.SQueryResults4.1
Description: Too many requests waiting for connections
12:26:05: Error: DBAmp.exe was unsuccessful.
12:26:05: Error: Command string is C:\"Program Files"\DBAmp\DBAmp.exe Export "Lead_Previous" "ISQ-UTLSQL-01\U1" "SalesForce_Prod" "SALESFORCE"
--- Ending SF_Replicate. Operation FAILED.
Msg 50000, Level 16, State 1, Procedure SF_Replicate, Line 244
--- Ending SF_Replicate. Operation FAILED.
Does anyone have any suggestions on how to fix?
- Jim McCabe
- October 10, 2014
- Like
- 0
- Continue reading or reply
Error: system security No Access Exception: Update access denied for echosign_dev1_SIGN_Agreement_c"
All users with one profile are receiving the following error in production when they create an agreement
"Error: system security No Access Exception: Update access denied for echosign_dev1_SIGN_Agreement_c"
I don't see echosign_dev1_SIGN_Agreement_c any where in Salesforce. Can anyone point me in the right direction?
"Error: system security No Access Exception: Update access denied for echosign_dev1_SIGN_Agreement_c"
I don't see echosign_dev1_SIGN_Agreement_c any where in Salesforce. Can anyone point me in the right direction?
- Jim McCabe
- September 03, 2014
- Like
- 0
- Continue reading or reply
Security to prevent button from being pushed
Hello. I am not a developer. The following Java Script pushes contacts from SF into Marketo Campaigns. Unfotunately it would have to be displayed on all Contact List views. Does anyone know how I can limit the functionality of this button to specific people? For example I would want only these two users to be able to push it. The script is below
User ID = 00560000001VtiU
User ID =00560000001W0HL
function post_to_url(path, params, method) {
method = method || "post";
var form = document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var key in params) {
if(params.hasOwnProperty(key)) {
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", String(key));
hiddenField.setAttribute("value", String(params[key]));
form.appendChild(hiddenField);
}
}
document.body.appendChild(form);
form.submit();
}
function build_action_path(actionName) {
var hostname = window.location.hostname;
var server = 'na1';
if (hostname.indexOf(".salesforce.com") != -1){
server = hostname.substring(0,hostname.indexOf(".salesforce.com") );
} else if (hostname.indexOf(".force.com") != -1){
server = hostname.substring(0,hostname.indexOf(".force.com") );
}
return "https://mkto-si." + server + ".visual.force.com/apex/" + actionName;
}
var idArray = {!GETRECORDIDS($ObjectType.Contact)};
if (idArray[0] == null){
alert('Please select at least one row');
} else {
var path = build_action_path("mkto_si__Add_to_Marketo_Campaign");
var method = 'post';
var params = {};
params['contactType'] = 'Contact';
params['contactIds'] = idArray;
params['retUrl'] = encodeURIComponent(document.location.href);
post_to_url(path, params, method);
}
User ID = 00560000001VtiU
User ID =00560000001W0HL
function post_to_url(path, params, method) {
method = method || "post";
var form = document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var key in params) {
if(params.hasOwnProperty(key)) {
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", String(key));
hiddenField.setAttribute("value", String(params[key]));
form.appendChild(hiddenField);
}
}
document.body.appendChild(form);
form.submit();
}
function build_action_path(actionName) {
var hostname = window.location.hostname;
var server = 'na1';
if (hostname.indexOf(".salesforce.com") != -1){
server = hostname.substring(0,hostname.indexOf(".salesforce.com") );
} else if (hostname.indexOf(".force.com") != -1){
server = hostname.substring(0,hostname.indexOf(".force.com") );
}
return "https://mkto-si." + server + ".visual.force.com/apex/" + actionName;
}
var idArray = {!GETRECORDIDS($ObjectType.Contact)};
if (idArray[0] == null){
alert('Please select at least one row');
} else {
var path = build_action_path("mkto_si__Add_to_Marketo_Campaign");
var method = 'post';
var params = {};
params['contactType'] = 'Contact';
params['contactIds'] = idArray;
params['retUrl'] = encodeURIComponent(document.location.href);
post_to_url(path, params, method);
}
- Jim McCabe
- August 06, 2014
- Like
- 0
- Continue reading or reply
contactDuplicatePreventer trigger...can you exclude a specific record type?
We use the following trigger to prevent adding contacts from being created when another contact exists based upon exact email. We just created a second account record type that a very small profile group has access to. There is a use case where they will need to create a contact that already exists on our original record type, so I don't want them to be prevented from adding the contact. I have zero experience writting triggers, so my question is can we exclude this trigger from running where account record type = 01260000000JKZ8
Thank you for any suggestions you can provide.
- Jim McCabe
- July 01, 2014
- Like
- 0
- Continue reading or reply
Error: Only five batch jobs allowed at a time. Please wait a few minutes and try again
We worked with Zuora to develop a renewal run. It is a job that looks at zuora subscriptions that are expiring and creates a opportutnunity and quote according to what was on their subscription. We are getting a new error "Only five batch jobs allowed at a time. Please wait a few minutes and try again". Can someone please explain wha the error is and possible resolutions...other than trying in a few minutes.
Thanks for any suggestions.
Thanks for any suggestions.
- Jim McCabe
- June 24, 2014
- Like
- 0
- Continue reading or reply
BulkAPI Error
We are DBAmp to upload information to all of our leads and am getting this error. Would someone be willing to explain where I am going wrong. We are on Enterprise Edition
BulkAPI:Update:75060000000wiETAAY:751600000029qGJAAY:1677:Error - CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY:leadBeforeInsertUpdate: System.LimitException: Too many SOQL queries: 101:--
BulkAPI:Update:75060000000wiETAAY:751600000029qGJAAY:1677:Error - CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY:leadBeforeInsertUpdate: System.LimitException: Too many SOQL queries: 101:--
- Jim McCabe
- April 29, 2014
- Like
- 0
- Continue reading or reply