Software / Technology Tips

Access Google Contacts using Google GDATA api in JAVA

We can access google contacts for particular user credentials very easily now using java. Thanks to Google GDATA api. Google GDATA provides lots of library modules to access google data from client side. Google GDATA api is available for various platforms such as JAVA, .NET, PHP, Python etc. We will be using JAVA for this…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

A better way to Clear a StringBuilder

Since .NET Framework does not provide the “Clear” Method for StringBuilder class, sometimes as a developer you may come accross a sitution like using the StringBuilder object for concatenation operation of some sets of random number of string and then empty it and again re-use it for another concatenation operation. So there are various way…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

How To Set Shipping Cost Value As Zero

In ‘Sales Order’ record, Total is calculated by adding Subtotal and Shipping Cost (as shown in the picture below): But, in our project, there was a requirement that Total should be the same as Subtotal. So, we need to set the Shipping Cost zero. In this tip, we will see how to set the Shipping Cost.…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Batch Processing In ColdFusion

‘Batch Processing’.. The name itself explains that some job is done in a batch (phase wise). Normally when we have requirement of populating data base table from some external source (may be XML or excel sheet), we do loop with the data that to be inserted into specified data base table. If the data is…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Use of Filter Expression In Suite Script

In new release, Netsuite allows to use Filter Expression for advance search. Earlier we had to use nlobjSearchFilter API to filter a search which makes filtering records as per our requirements much easier. To start we have to check the Use Expressions checkbox to set advance criteria a feature previously not available in suitescript. Now we can…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Tips that can be useful while Scripting

Some APIs & methods(of Netsuite) and its use in Netsuite Suite Script There are some APIs and Methods in Netsuite Suite Script that we all Netsuite Developer may know , but we may not know where they can be used and where they can’t . Here are some APIs and methods with their usability which…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Check If Time Period Of New Record Overlaps With Any Other Existing Records

While creating a custom record we may be required to check if the newly created record overlaps the time period with any existing custom record of same type. In Custom record we have 2 fields called “Start Date” and “End Date” which specifies the time period. So on save record, we need to check these two…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

How to set alternative row color of grid using jQuery

When we represent some data in a grid view we usually prefer to set alternative row color. For this we can use two css classes with different background colors or inline styles. What we need to do is that while constructing the grid by looping through data set, we can check the loop count is odd or even and…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Some important JavaScript functions and their use.

var objStack = [] objStack.push(2); objStack.push(5); objStack.push(8); So here objStack will behave as a Stack object & it will follow FIFO (First-In First-Out) concept. We can access the value of the object by – objStack; // It will give the 2nd element’s value, i.e 5. objStack.toString(); // It will give the values separated by comma,…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Creating a custom “Share on Facebook” button

At the present date you are unlikely to come across any content page that does not provide option to save the URL in Social Bookmarking sites or Social Networking sites. As a developer adding these functionalities is easy as there are a number of free widgets available that can be added without a lot of fuss. Further,…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!