Friday, August 22, 2025

Revenue Cloud Important Links

Blogs

https://revenuecloud.info/category/pricing/

https://thecloudupdate.co/

Official Documentation

https://help.salesforce.com/s/articleView?id=ind.revenue_lifecycle_management.htm&language=en_US&type=5

Youtube Channels

  1. https://www.youtube.com/@thecloudupdate

  2. https://www.youtube.com/@sfdclearning

  3. https://www.youtube.com/watch?v=9hdPQU1OaTc&list=PLFNbZmUNjID7HKZ3Sx67P7vaqsWnV3r7x&index=1

Tuesday, February 20, 2018

Heroku deployment


If you are in a situation where you got following error:

git push [remote name] master

Unable to negotiate a key exchange method
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Check your remote repository path of heroku app by using command 

git remote -v | grep [remote-name]

Output of command will give you git path of your repository

[remote-name] git@heroku.com:[heroku-app-name].git (fetch)
[remote-name] git@heroku.com:[heroku-app-name].git (push)

Change it to https path as following

[remote-name] https://git.heroku.com/[heroku-app-name].git (fetch)
[remote-name] https://git.heroku.com/[heroku-app-name].git (push)

Then again try to push your code to Heroku app.

Your code will be deployed , Happy Heroku Deployment.

Salesforce1 app in Firefox browser

If you are building for Salesforce1 App and you want to test in your browser.
For firefox browser

1. Just inspect the page 



2. Click on Mobile icon

3. Select any mobile device


And you are ready to test your changes in your browser , without opening and login in the app on your phone.

It's very handy for your future Salesforce1 customizations.
Happy Salesforce coding.

Tuesday, September 3, 2013

Saturday, June 29, 2013

How to use Twitter Bootstrap

Twitter Bootstrap is become standard for developing web UI and it's kind of web 3.0 which uses HTML5 and CSS3 to make UI beautiful.

Following are steps to use Twitter Bootstrap


  1. Download jQuery --ver 1.8 or greater version from http://jquery.com/download/
  2. Customise Bootstrap from http://twitter.github.io/bootstrap/customize.html
  3. Finally include jQuery, Bootstrap-css, Bootstrap-js, and Bootstrap images in your project.
What if you are using jQuery-UI, no problem jquery-ui Bootstrap is also available 

But two things are missing in Twitter Bootstrap
  1. Datepicker
  2. DateTimepicker
  3. Bootstrap Dropdown for Select-box
Following are the respective list for including Datepicker, Datetimepicker, and SelectBox
  1. If you only want Datepicker use http://www.eyecon.ro/bootstrap-datepicker/
  2. If you want Datetimepicker use http://tarruda.github.io/bootstrap-datetimepicker/ which also include Datepicker so you can leave eyecon date picker if you want to use Datetime picker
  3. For converting simple dropdown select box to Bootstrap dropdown use http://silviomoreto.github.io/bootstrap-select/

Followers