Skip to main content

Quick Tips : Salesforce : 10 ways to develop application without coding

Hi all, as evident from the topic, I'm hereby sharing a small list of configuration options available within Salesforce using which a non-programmer can also develop functionalities within salesforce. The best part of using these features is that you save time, save development/ testing effort, deploy and manage it easily.

Standard/ Custom Objects
Objects a.k.a. table (for database junkies) a.k.a. entity are used to store data within Salesforce. We can use out of the box objects for e.g. Account, Contact, opportunity, lead etc. (along with their powerful features) or create our own custom objects to store required information for e.g. invoice, purchase orders etc.

Custom fields
As with any entity, you need to store its attribute, similarly in salesforce an object can have fields. Out of the box objects have standard fields. Additionally, custom fields can be added to standard and custom fields. Following are few special types of fields that can be added to enrich product's functionality
  1. Formula fields:- these are automated fields which can calculate value at run-time and display it. For e.g. you want to calculate age of contact dynamically via his/her date of birth
  2. Relationship fields:- these are one of the most important types of fields. Relationship fields, as name implies, help you associate an object with other object. This further helps in screen designing, validations, automated workflows
Validation rules
Formula based rules to ensure that any data being entered within salesforce conforms to business rules. Validation rules can be very beneficial in ensuring that data within Salesforce is valid at all times and provides appropriate error messages to users when data doesn't conform to business rules.

Page layouts

Page layouts are the user interface of objects within Salesforce. Whether you want to add/ update/ view an entity you can customize its user interface by a simple yet powerful drag-drop interface.

Apps
A app is a collection of tabs (of custom objects, visualforce pages, other external urls) which are logically connected for business operations. In case of service cloud, we can configure apps for service cloud console and manage all settings from here for e.g. what options to display (knowledge management, live agent chat etc.), how to open tabs etc.

Listviews
Listviews can be simply explained as filtered lists of your records, to make sure you are looking at right data for e.g. My Accounts, Hot Leads, Top accounts etc. this helps in filtering view to show essential records only. Listviews can be created fairly easily and shared with other users.

Workflows and Approvals
Now, with all the above options, you can create objects, fields to store data and manage its user interface. But, what if you want to automate certain functions. This is where workflow and approvals help.

Workflows can help define specific actions for e.g. send email, update a field, create task or send message to external system whenever any record is updated/ created. Workflows can also be used to schedule an action for e.g. send an email after 5 days of case creation.

Approval processes help define a process wherein a request can be send to one or multiple reviewers for their approval. There can be multiple approval steps and actions (for e.g. send email, update a field, create task).

Lightning process builder
Process builder is comparatively new bullet in gun. It has advanced features to define process, rules and actions. It can also have a multi-step decision graph (something not possible in workflows). It can be understood as an advanced workflow mechanism.

Flow
At times, standard screens do not help when situation calls for a multiple screen scenario. In this case you can use Flows to create custom screens with ability to do CRUD operations (Create Read Update Delete) fairly easily.

Reports and Dashboards
Lastly, with all the functionalities in place, any business will want to report on their data. Salesforce provides standard reporting capabilities using which users can create reports and dashboards in minutes by mere drag and drop. It may not be as powerful as BI tool, but it is really effective and useful for transactional data. 

There are lot of cool things that can be done with combination of above options and create really powerful applications. So, start exploring all the different options available within above features to understand real power of configuration in Salesforce.

Comments

Popular posts from this blog

Quick Tips: Salesforce default Images

Well, I'm sure a lot of you still rely on using out of the box salesforce images for displaying quick icons within formula fields or even using them within your Visualforce pages. Lately, I realized that a lot of earlier resources are no longer accessible, so I tried to quickly extract all images from Salesforce CSS files and provide a quick reference here. Please note, I've referenced all images from SF servers directly, so if anything changes, the image should stop rendering here. As these images are completely controlled by Salesforce, and in case they change anything, it might lead to image not being accessible. Image path Image /img/samples/flag_green.gif /img/samples/flag_green.gif /img/samples/flag_red.gif /img/samples/color_red.gif /img/samples/color_yellow.gif /img/samples/color_green.gif /img/samples/light_green.gif /img/samples/light_yellow.gif /img/samples/light_red.gif /img/samples/stars_100.gif /img/samples/stars_200.gif /img/samples/stars_300.

Lightning: Generate PDF from Lightning components with in-memory data

I'm sure as everyone is diving into lightning components development, they are getting acquainted with the nuances of the Lightning components framework. As well as, its current limitations. Being a new framework, this is bound to happen. Although we have our users still using salesforce classic, we have started using lightning components framework our primary development platform and Visualforce is considered primarily for rendering lightning components within Classic Service console. Recently, while re-architecting a critical module, we encountered a problem wherein we needed to generate PDF from lightning components. Now, being Javascript intensive framework, it has limited room for such features (may be included in future roadmap). As of now, there is no native feature within the lightning framework to do so (at least I didn't find anything). Common Scenario - Create Visualforce page to retrieve data and generate PDF For scenarios where the data exist within Sa

Quick Tips: Setup SFDX Manually without Admin access

We all have faced challenges while working in different enterprise environments, where there may be lot of controls/ checks/ red-tape to get by. In such situations, getting access to simple tools (even git) can take lot of time. Note: This tutorial is to be followed at your own risk, as it may not be complaint to your organization's IT policies. What is SFDX? SFDX is a command line utility for managing salesforce builds/ deployments. Being command line, it can be easily embedded to automation chains, to help build fully automated build and deployment processes. To get started, refer  https://trailhead.salesforce.com/en/content/learn/trails/sfdx_get_started Setup SFDX on Windows machine without admin access As you may have already realized, SFDX installation needs admin access to one's machine. Which may be a luxury a lot of developers may not have. So, i tried to provide a step-by-step guide to setup SFDX on your computer without any admin access Steps: Note: