Tagsalesforce

Bundles in Steelbrick CPQ

B

Steelbrick CPQ allows users to define bundles to be added to Quote. This proves very helpful as it saves time of adding every product individually. For achieving this there are two objects in CPQ. The first is Features. Features is basically definition of the bundle. Features can be added from related lists of Products. The product that has a feature becomes the master. So whenever the Master is...

Create Short URLs with Bitly

C

This post is related to how to integrate Salesforce and Bitly to create short urls to include in communication Messages. Step 1. Sign-up for Bitly To use the Bitly API you will need to register. You can sign-up using Twitter, Facebook, or create a new login with their service. I chose to create a Bitly specific login using below url. Step 2. Create Bitly Apex Classes I developed below class, that...

Use preferred Locale for your users (Translation Workbench)

U

  And the good news is that we can translate field labels,custom labels, custom settings, Picklist values etc. in multiple languages and can show to users in their preferred locale. This is a small demo to translate field labels in Hindi, you are just 4 steps away! 1. Enable the Translation Workbench for your Org. Go to: Setup -> Administer -> Translation workbench -> Translation...

How to get last modified field value or previous field value without using Trigger

H

Today in this post i will explain you how you can get last modified value or previous value without using trigger Creating aText Field: Create aTEXT (255) field on the Object and name it say: Old Value 2. Setting up the Workflow Rule + Field Update   Go toSetup | Create | Workflows & Approvals | Workflow Rules New Rule Select theObject ClickNext Evaluation Criteria:created and every time...

Auto populate related field when lookup filed is selected at run time in visualforce page.

A

Sometimes we need to populate related field according to selected lookup filed for the form submissions etc. and we need this to be happen at run-time. ex: In visualforce form contains lookup field of Account object and two field like Email,Phone when user select Account lookup the Email and Phone field will be populated  from Account’s email and phone field. We can achieve this using...

How to enable .net to access Quickbooks company file

H

To do this You should have : A) QuickBooksEnterprise (here we used 13) B) QBSDK  (here we used  12.0) c) Microsoft Visual Studio 2008 How we can do ? a.  Open Connection to QuickBooks b.  Begin session with a company file c.  Construct set of request messages d.  Send request to QuickBooks e.  Receive response messages f.   End session g.  Close connection a. Open Connection to QuickBooks :...

How to implement Paging in Apex Salesforce

H

Put this code in your class & replace your query for myRequestsSetCon: public ApexPages.StandardSetController myRequestsSetCon { get { if(myRequestsSetCon == null) { myRequestsSetCon = new ApexPages.StandardSetController(Database.getQueryLocator([ select Id, Name, Merchant_Name__c, Requested_Pricing_Change_Effective_Date__c, Status__c, CreatedDate from Global_Merchant_Pricing_Change__c where...

Unable to access Products from Salesforce.com Partner Portal [Solved]

U

Hi Folks, I was trying to setup a Salesforce.com Partner Portal for one of my client and realized that no matter I give Read access to Gold Partner User profile, I still cant see Products when logged in as a partner in the partner portal. Additionally, When you goto Setup -> Customize -> Partners -> Settings -> Customize Portal Tabs, I cant at all see Products as an option in the list...

How to use Visualforce IDs in jQuery

H

Prerequisites: You will need to download the jQuery and jQuery UI libraries. jQuery is the core library which offers DOM manipulation methods and jQuery UI is a higher level library which constructs widgets for use on your page. From the jQuery UI site, you can download a zip tailored to the portions of the libraries you need.Once you have the ZIP in hand, you’ll need to upload it as a static...

Relationship in Salesforce

R

When two objects are related in the database, they are linked together by a relationship field. This allows you to associate related information easily between objects. All relationships maintain some form of a parent-child relationship. This can be thought of as a hierarchical structure where one object looks up to the other, and as such, you only need to create one relationship field. You...

Category