NetSuite API | operator undefined for search

| By Webner

On filtering contacts coming from Netsuite CRM based on last modified date, gives error “operator undefined for search”: Below is the code that retrieves all the contacts from Netsuite CRM: ContactSearch custSearch = new ContactSearch(); ContactSearchBasic custSearchBasic = new ContactSearchBasic();

CSS3 Viewport units vh, vw, vmin and vmax explained

| By Webner

CSS3 Viewport units vh, vw, vmin and vmax explained Sometimes we need to fit our webpage content into viewport (visible browser window). Some developers achieve this using Javascript by checking the size of viewport and then they resize the content

Salesforce | Passing data via Javascript to Apex Controller

| By Webner

Some situations occur when we become unable to pass the data from visualforce page to apex controller directly.  For example: Suppose you have three divs (todoDiv, doingDiv, doneDiv) that are showing some tasks through the List from apex controller. It

How to install and use command line tools in Heroku

| By Webner

What is Heroku Command Line: The heroku command-line tool is an interface to the Heroku Platform API and includes support for things like creating/renaming apps, running one-off dynos, taking backups, and configuring add-ons. It is generally installed in your local

Java | Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter

| By Webner

Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter in java 6 and 7. Solution: javax.xml.bind.Datatypeconverter class is the built in class inside JRE. We don’t need any third party library as we need in case of Cipher encoding/decoding method. javax.xml.bind.DatatypeConverter.printBase64Binary(byte[]) encodes a byte[] array into