CategorySalesforce.com

Salesforce 1 Lightning Overview

S

This is the introductory post for new Salesforce 1 Lightning feature. Salesforce 1 Lightning provides component based framework and tools for developers as well as business people, which can be used for building apps, integrate data and automate the processes with Lightning fast speed. Lightning comprises of following technologies/terms/tools:- 1. Lightning Connect 2. Lightning App Builder 3...

Unable to Add as Partner for Person Accounts in Salesforce

U

Unfortunately from Spring 2012, Salesforce has disabled allowing Person Accounts to have access to Partner/Customer Portal or Communities 🙁 See the note here under Self-Service Portal: Or this: “Keep in mind that if your organization has person accounts, they can’t be used as partner accounts and you can’t create partner users that are associated with them. Only business accounts can be...

How to handle “No such column found in entity” error even though the column exists in entity

H

Sometimes when you try to access some columns dynamically in your class, you may come across the error “No such column found in entity”  even though when you check and u see that the column is present in your entity. This is due to the API version difference between the Class and the entity. There are many columns which have been added in the entities after the API version 27.0. If...

How to Fetch records from Web Services and put it into salesforce object.

H

Hi All, We can fetch  records or values from  Web Services and can save the value into our Salesforce Object.The responce we are getting it is in JSON formate.Please follow the steps below: Step 1.If you have already created the object, then make sure that all Fields are avaliable in that. Step 2.Make a Visualforce Page which will contain a button. By pressing the button, response will fetch from...

How to make Salesforce compatible CSV file from an Excel spreadsheet.

H

While Data Migration from external system to salesforce many of us face this issue. Just follow these steps and create salesforce compatible CSV files in minutes. Open spreadsheet in Microsoft Excel. Click on Save As which will open a dialog box. In Save as type dropdown select CSV(Comma delimited). Click on Tools button on same dialog box and select web options. In newly opened dialog box select...

Mixed DML Exception in salesforce

M

Hi All, Many times we face this “Mixed DML Exception” in salesforce error while updating records. This error means you are updating setup and non-setup objects simultaneously. Here you will get details about all setup objects which cannot be inserted/updated with non-setup objects. How can you avoid this? To Avoid this type of error you use @future methods. Since future methods runs...

Integrating Force.com with Microsoft .NET

I

Methodologies and Delivery Platforms As with other code bases written in .NET, an integrated Force.com application can be tailored to run on any .NET support platform. The Microsoft .NET Framework is included with all major Microsoft operating systems, desktop and server, as well as Microsoft’s 3 major application platforms: SQL Server, Internet Information Services, and SharePoint Services...

jQuery PostMessage (Cross-Domain Messaging)

j

From long back sending messages between windows was only possible if the windows used the same protocol, port, and host. The postMessage() method helps to solve this issue by providing a way to securely pass messages across domains. In this blog post I’m going to explain how to use the postMessage() method to communicate between a controller window and a receiver window running different domains...

How to add Chatter Feed for a record in visualforce pages

H

Chatter feeds show you recent activities performed by people and on records in your Salesforceorganization. Salesforce Touch lets you view your Chatter feed, group feeds, profile feeds, and record feeds. You must follow people and records to see their updates in your Chatter feeds. Chatter feeds display on profiles, groups, the Home tab, topic detail pages, and on record detail pages. Typically...

Category