Android Application Domain|Salesforce™ Attendance Management App
We are Salesforce Experts and we channelize our energy by documenting all the industry-specific technical problems we solve in Salesforce CRM world. Here I am going to explain the Salesforce Android Attendance Management App. I was closely involved as a Salesforce Developer. And we have done it successfully on. This is an Attendance management app integrated with Salesforce Rest...
Testing Strategies for Developer
Salesforce provides a framework for testing apex code. Testing is the key to successful software development. Before deploying apex code, try to cover as many lines of code as you can. At least 75% of your Apex code must be covered by unit tests else your code will not be deployed to production. Why Test? You should not write...
Salesforce App Builder Certification
The Salesforce Certified Platform App Builder exam is for them who want to grow in their skills and knowledge in designing, building, and also want to implement custom applications using the predeclared customization capabilities of the Force.com platform. In June 2015, Salesforce University introduced the three new certifications: Salesforce Platform App Builder Platform Developer I Platform Developer II...
Salesforce Google Map Integration
Google Map Integration Integrating google maps into Salesforce Description of the requirement: Starting with description of the Project we have worked upon, there’s an app we created for searching and showing Account’s location on the Map and knowing a route map from one location to another location via...
Eclipse IDE
I am writing this blog out of my experience to share the key details of the different IDEs I have used while programming in Force.com environment. This might help an experienced or newbie developer in choosing the right IDE to code.My favorite and most probably every programmers most loved IDE. Eclipse is famous as a Java Integrated Development Environment (IDE)....
ATOM IDE
The Atom Atom is a text editor that’s modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file. What Atom IDE can do : Cross platform editing Atom works across operating systems. You can use it on OS X, Windows, or Linux. Builtin package manager Search for and install new...
Sublime Text
I am writing this blog out of my experience to share the key details of the different IDEs I have used while programming in Force.com environment. This might help an experienced or newbie developer in choosing the right IDE to code. Sublime Text is a sophisticated text editor for code, markup and prose. You’ll love the slick user interface, extraordinary features...
Difference SLDS & Aura Components
As we all know Lightning has been added to Salesforce very recently and it is the future of Salesforce. So lot of people who are new to Lightning but have the curiosity to learn it sometimes find it difficult to understand. I realised that the best way to start would be by describing what are the differences between Salesforce Lightning...
Coding Genius (Trigger)
The following practice questions are for Salesforce developers who are new to salesforce and wish to solve some basic programming questions. Write a trigger 1. On Account create a default contact every time an account is created. What is Trigger Click here to learn more trigger Accounttir on Account (after insert) { list<contact> con = new list<contact>(); for(Account acc...
Coding Genius (Visual Force)
The following practice questions are for Salesforce developers who are new to salesforce and wish to solve some basic programming questions. Develop the following Visualforce pages in your salesforce developer org. 1. Create a page that displays the detail page same as of the Account object along with its related lists Click here to learn more <apex:page standardController=”Account”> <apex:detail...
Recent Comments