Salesforce BigObjects
Nitin Indora
by Nitin Indora
3y ago
         What is a BigObject? Big Objects allow for storage of massive amounts of data on the Salesforce platform. The biggest draw for Big Objects is that they can provide consistent performance for objects with records upwards of a billion. Big Objects is a new type of objects that Salesforce provides. Maybe the most important thing I can tell is that they do not count against the storage limit. Big Objects let you store and manage large amounts of data. High Points The API name ends with __b instead of __c or __x like custom and external objects. Big obje ..read more
Visit website
SalesForce With Selenium
Nitin Indora
by Nitin Indora
3y ago
Source: SalesForce With Selenium ..read more
Visit website
Inserting Records in Account or (any other sObject) Through Postman in salesforce
Nitin Indora
by Nitin Indora
3y ago
We are using postman from API testing and request management to hit api by get or post and received data in the form of JSON and XML. We can also add a record from postman to our Salesforce org. We’re going to use OAuth2 and the authorization code flow. Step 1: create your connected app Inside Salesforce setup, navigate to Build > Create > Apps. In the bottom panel of the page, where it says Connected Apps, click New. This will open a dialog to create a new connected app. In Name, type “Postman”, and supply a mandatory contact email Make sure Enable OAuth settings is ticked. As an addit ..read more
Visit website
WHICH SFDC API SHOULD I USE
Nitin Indora
by Nitin Indora
3y ago
API Name What It’s For When to Use It Protocol Data Format Communication REST API Accessing objects in your organization using REST. You want to leverage the REST architecture to integrate with your organization. No WSDL requirement. Well-suited for browser-based applications, mobile apps, and highly-interactive social applications. REST JSON, XML Synchronous SOAP API Integrating your organization’s data with other applications using SOAP. You have pre-existing middleware services that need to work with WSDLs and XML data. SOAP/WSDL XML Synchronous Chatter REST API Accessing Chatter ..read more
Visit website
Salesforce Coding Utility Chrome Extension
Nitin Indora
by Nitin Indora
3y ago
Salesforce Coding Utility Chrome Extension 0to1Code Hi Everyone, In this post, I will introduce my new salesforce coding utility chrome extension. This is a very cool extension. I have made this for me and my friends. But after some time, we felt that we are addicted to this extension very much and it can be useful for another developer too. That’s why I published it and I hope you will like it. About SFCU: This extension provides you following features: 1. Code in maximized window: We can code in Developer console and Setup tab(Like VisualForce Pages, Apex Classes, Apex Triggers ..read more
Visit website
Creating a Wizard with Lightning Design System
Nitin Indora
by Nitin Indora
3y ago
Define three Visualforce pages in lightning design system for each of the three steps in the wizard, plus a single custom controller that sets up navigation between each of the pages and tracks the data that the user enters. It’s important to understand the best procedure for creating the Visualforce pages in lightning design system, since the three pages and the custom controller reference each other. you can’t create the controller without the pages, but the pages have to exist in order for you to refer to them in the controller. To create the wizard pages and controller: Navigate to the UR ..read more
Visit website
How to use the Lightning Design System within a Visualforce page
Nitin Indora
by Nitin Indora
3y ago
There are  few things when working with the Design System in Visualforce: As an alternative to downloading the Design System, you can install it directly in your development org using our unmanaged package https://login.salesforce.com/packaging/installPackage.apexp?p0=04t61000000DVio You can also use by Download the Design System from the Design System website and upload it yourself as a static resource. https://www.lightningdesignsystem.com/resources/downloads/#role=regular&status=all If you go this route please name it SLDSXXX where XXX is the version number (e.g. SLDS080 ..read more
Visit website
Create Lightning Components in the Developer Console
Nitin Indora
by Nitin Indora
3y ago
The Developer Console lets you create and edit Lightning components, with access to other powerful Force.com development tools. Follow these steps to create a Lightning component in the Developer Console. You’ll also create a Lightning app as a container for the component. Open the Developer Console by clicking Your Name | Developer Console. The Developer Console opens in a new window. Click File | New | Lightning Component. Enter firstComponent for the name of the new component, and click OK. This creates a firstComponent.cmp resource. In the editor, enter the following markup for th ..read more
Visit website
Creating a Salesforce Lightning Map Component
Nitin Indora
by Nitin Indora
3y ago
Step 1: Import Leaflet as a Static Resource Download the latest stable version of leaflet from Here (0.7.3 at the time of this writing). In Setup, go to Build > Develop > Static Resources, and click New. Specify leaflet (all lowercase) as the Name, click the Choose File button and select the leaflet zip file you just downloaded. Click Save. Step 2: Create the Component In the Developer Console, click File > New > Lightning Component. Specify MyMap as the bundle name and click Submit Implement the Component as follows: <aura:component implements="force:appHostable"> ..read more
Visit website
Facebook integration in salesforce
Nitin Indora
by Nitin Indora
3y ago
1. Include the JavaScript SDK on your page once, ideally right after the opening <body> tag. <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> 2. Place the code for your plugin wherever you want the plugin to appear on you ..read more
Visit website

Follow Nitin Indora on FeedSpot

Continue with Google
Continue with Apple
OR