Tag: Zoho Features
Salesforce Integration | Upsert multiple records with single connection in PHP
When we create connection with “SforceEnterpriseClient”, we can upsert one record and then we need to recreate connection for next upsert, which eventually can result in the exception: “UnexpectedErrorFault: REQUEST_LIMIT_EXCEEDED: TotalRequests Limit exceeded.” The solution is to use “SforcePartnerClient” instead
Java | What is the default location for maven repository and how we can modify it
To print maven default configurations, run following command: Command: mvn -X This will show you maven default configurations similar to following: Apache Maven 3.0.4 Maven home: /usr/share/maven Java version: 1.7.0_79, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-7-openjdk-i386/jre Default locale: en_IN, platform
Salesforce | Check who is accessing your Salesforce account manually or through code
To check the login history of your Salesforce account (who is accessing your Salesforce account manually or through API calls) follow these steps : 1. Click on setup. 2. Click login history as shown in image below and you will
How to add ©, ®, ™ symbols to the text in Windows, Linux and Mac
For Windows: Hold down the alt key and use the num pad of your keyboard to create these symbols: For copyright – 0169 – © Registered – 0174 – ® Trademark – 0153 – ™ For Mac: Hold down the
PHP | How to call SOAP based web services from php
We were working on codeigniter website project. We had wsdl web services available to access our backend functionality. We had configured a WSDL Client in our php code but it was not working. Sample Code: try { $testSoapClient = new
Selenium | Use of Robot Class to handle Dialog box
When we write selenium script for downloading files over internet through Mozilla Firefox following dialog box appears to save or open the file: Note: This dialog box cannot be handled with simple find element functions like: find_element_by_id find_element_by_name find_element_by_xpath find_element_by_link_text
Google Maps | Display routes to different locations from common starting point
Suppose in Google Maps you want to display routes to different locations from common starting point. For this we need accurate lat/long of the origin and destination addresses (only 1 origin and multiple destinations). We will use following statement to
Subclipse – How to disconnect and connect your project to a repository
Right click on project -> Team ->select Disconnect option, following dialog box will appear: Now if you want to delete complete svn metadata information, select the respective option and click yes. Now your project is totally independent and you can
Salesforce | Read csv file, insert objects and get results back in Apex visualforce page
If you have a csv file with raw data and you want to read it using apex, convert to sfdc objects and insert these, then get success and failure results back then following steps and code can help you: 1.