Author name: Rakesh Kumar

Workflow Automation for your Sales Pipeline

  Sales pipeline: The sales pipeline is the perception of the stream and volume of an organization’s income openings (AKA expected deals) in a given period. The essential capacity is to give a preview of key deals components, for example, The number of open arrangements/openings, just as their individual and total money related qualities. The […]

How to Install NPSP in Salesforce and it’s Benefits

How to Install NPSP in Salesforce and it’s Benefits Here is the article which provides information regarding the NPSP and how to Set Up NPSP in Salesforce. NPSP: The Nonprofit Success Pack(formerly known as Nonprofit Starter Pack) is a set of managed packages developed and maintained by Salesforce.org. It allows nonprofits to better manage some

Check daily limit in Salesforce org

Check daily limit in Salesforce org Workbench will be used to track the daily limits of a salesforce org. 1. Logged into the organization where you want to verify your limits. 2. Open workbench. URL: https://workbench.developerforce.com 3. Accept any OAuth prompts to complete authentication 4. Go to REST Explorer. 5. From the options presented select:

Apex to transfer Image

Salesforce apex to send image file to 3rd party using REST API

Salesforce apex to send image file to 3rd party using REST API //attObj is an Object of Attachment object for which values will be coming from Visualforce page. //Attachment attObj = new attachment(); public pagereference customsave(){ String fileName = attObj.name; Blob file_body = attObj.body; String targetURL = system.label.ImageUploadEndPointURL; //API End point URL String boundary =

Import date/datetime field with correct date/time value using data loader.

Users always face issue in importing date or datetime fields in salesforce. Sometime they face format issue or increase/decrease in date and time after importing the record. Best way to get the valid format is to take export of any existing record containing date time value. Possible formats are: YYYY-MM-DD — For date only YYYY-MM-DD

Create debug log in salesforce for force.com communities

To Create debug log in salesforce for force.com communities, follow below steps: Open the url in browser. Then, open the browser’s console. document.cookie=”debug_logs=debug_logs;domain=.force.com”; If you are using foce.com domain. If using Custom domain use (copy and paste in devTool console of browser) document.cookie=”debug_logs=debug_logs;domain=yourCustomDomain.com”; Create debug log in salesforce using community user. To identify community user

Upgrade Angular cli

To upgrade Angular cli run below 3 commands: npm uninstall -g angular-cli npm uninstall -g @angular/cli npm cache clean npm install -g @angular/cli@latest

Call SuiteCRM services from Postman

Follow below guideline to call SuiteCRM or SugarCRM services from postman. Enter endpoint url. If there is any customization in service then url would be www.xyz.com/custom/service/v4_1_custom/rest.php else endpoint url would be www.xyz.com/service/v4_1/rest.php. In case of SugarCRM version will be different. Request will be of POST type. Go to Body tab and select option ‘application/x-www-form-urlencoded’. Add

Salesforce community custom domain to work without www

Scenario: I have salesforce community to run on custom domain e.g. ‘www.xyz.com’. But this should also work without ‘www’ (naked domain) i.e. ‘xyz.com’. Solution: Goto to domain management (considering Godaddy here, but same applies to other providers as well including cpanel tool.). Add domain forwarding on Godaddy (it is at the bottom right of the

Scroll to Top