Forum Replies Created
-
raghu.a_85Participant6 years, 3 months ago in reply to: Salesforce to Dynamics GP #5674
Kevin,
Default template for Opportunity to SOP used OpprtunityLineItems in the subquery . If you do not have thos object then customization is required . Please contact your salerep on the same so that he can schedule a meeting with business analyst.
raghu.a_85Participant6 years, 5 months ago in reply to: How Do We Get Contacts In QuickBooks? #5671You might join Account and Contacts using SOQL and map the required fields.
raghu.a_85Participant6 years, 5 months ago in reply to: Event based integration from salesforce to SQL database through dbSync #5670yes please find the below link http://help.mydbsync.com/docs/display/dbsync/Salesforce+Streaming+Connector
raghu.a_85Participant6 years, 7 months ago in reply to: Problems with Integration #5669You need to add Fax field on the Account layout
raghu.a_85Participant6 years, 11 months ago in reply to: Error with QB Enterprise 2016 and Web Connector setup #5663Looks like you have installed qb webconnector for very recent version of quickbooks . Recommendation is to downgrade the qb webconnector
raghu.a_85Participant7 years, 1 month ago in reply to: Any limitations with Quickbooks Online version? #5659Yes it is supported in qboe
raghu.a_85Participant7 years, 1 month ago in reply to: How to Map a Salesforce Field to a Custom Quickbooks Online Field #5650Let us take an example of custom field SalesRep__c on Opportunity in SalesForce.
We have to map this field to SalesRep custom field on QuickBooks online
To map this field, type custom field name(SalesRep) in the target area(QuickBook Online) and add below given query in the source field.
{
ADDXML(“<CustomField><DefinitionId>2</DefinitionId><Name>SalesRep</Name><Type>StringType</Type><StringValue>”+VALUE(“SalesRep__c”)+”</StringValue></CustomField>”);
return “”;
}
Where→ <DefinitionId>2</DefinitionId> :Position of custom field in QuickBook online.
<Name>SalesRep</Name>: The custom field name in QuickBook online.
<StringValue>”+VALUE(“SalesRep__c“)+”</StringValue>: The custom field in SalesForce.
raghu.a_85Participant7 years, 1 month ago in reply to: Scheduling and Salesforce polling for changes #5649Paul,
Dbsync recommends every 5 minutes for incremental syncs. Each minute sync would quickly exhaust your salesfroce API calls
raghu.a_85Participant7 years, 3 months ago in reply to: Bulk API’s #5646Can you please check if the proxy is set in global properties on UI . Also are you able to login to salesforce using that proxy from browser.
raghu.a_85Participant7 years, 3 months ago in reply to: Any limitations with Quickbooks Online version? #5645Quickbooks online only supports Invoice, Salesreceipt & Estimate transactions. Also there are limitation on custom fields to be created in QBO.
raghu.a_85Participant7 years, 6 months ago in reply to: SFDC Integration with Quickbooks Contractor Edition (not online version) #5640Hi Mark,
You will need to use dbsnc iPaaS to instegrate from salesforce & quickbooks . Please sign up for trial on https://app03.mydbsync.com/appcenter/c/register/DBSync2-Register
raghu.a_85Participant8 years, 7 months ago in reply to: Configuring Web-Connector – (Microsoft .Net Frame Work ) #5630<<< Start –> run –> regedit –> Software –>Intuit –> QB WebConnector –> then delete all the WebConnector profiles under SOAP and Scheduler to get this issue resolved and reconfigure the WebConnector
raghu.a_85Participant8 years, 8 months ago in reply to: REQUEST LIMIT IS EXCEEDED #5629This exception comes from salesforce when the salesforce API’s are exhausted . You might need to contact salesforce support to temporarily get the api .
Also please disable any scheduler under dbsync if you have scheduled it for 1 minute.
raghu.a_85Participant8 years, 10 months ago in reply to: Packet Size Error #5588You can change this value on the MySQL server by setting the max_allowed_packet’ variable. Refer the below link for more details,
http://stackoverflow.com/questions/5688403/how-to-check-and-set-max-allowed-packet-mysql-variable
raghu.a_85Participant8 years, 10 months ago in reply to: ERROR:Data too long #5574Normally this error is seen when the source data size is > target table field size . So the database throws an exception while insert/update.
To overcome this please increase the size of field under database.