Blog

Curly Brackets is a site aimed for web developers, designers and hobbyist offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites. I cover HTML, CSS, Javascript, CMS, Netsuite, PHP and .NET

Netsuite | How to know if a form has a client-side suitescript

Posted by on Jun 8, 2010 in Blog, Netsuite, Suitescript | 0 comments

When checking if a form has a client-side suitescript installed on it, we normally go to the Netsuite UI and navigate on:

Setup > Customization > Scripted Record.

There is a shortcut on doing this by simply loading the form and viewing the source in the browser.

(more…)

Netsuite | How to get the value of custom fields using webservices in .NET application

Posted by on Jun 8, 2010 in .NET, Blog, Netsuite, Suitetalk | 0 comments

A sample code on getting custom fields values in a record in Netsuite using .NET application

In this example we will load a customer record with custom entity fields. Entity fields can be located at Setup > Customization > Entity Fields

(more…)

Netsuite | ODBC – How to get the total value on the amount field of transaction records?

Posted by on Apr 10, 2010 in Blog, Netsuite, ODBC | 0 comments

Using ODBC, how can we get the total value on the amount field of transaction records?
(more…)

Tutorial – How to DEBUG Suitescript using Google Chrome

Posted by on Mar 23, 2010 in Netsuite Tutorials, Suitescript, Tutorials | 0 comments

Tutorial – How to DEBUG Suitescript using Google Chrome

This is a guide on how to use the google chrome browser as a debugger for Netsuite’s suitescript. It will also show the great feature that the browser has when debugging a suitescript.

Google chrome is a browser that comes with a debugging feature for javascript. This is a tutorial on how to use the debugging capability of google chrome

(more…)

Netsuite | Search PHP webservice – sample code

Posted by on Feb 10, 2010 in Blog, Netsuite, PHP, Suitetalk | 0 comments

As per the Suite Talk Web Services Platform Guide; The search operation is used to execute a search on a specific record type based on a set of criteria. You can search by defining search filter fields on the record, joined fields on an associated record, search return columns, or joined search return columns from an associated record. The results of the search can be complete records, or a select set of fields specified through search return columns. This example will guide developer how to perform a search operation thru web service using PHPToolkit.

(more…)

Netsuite | AsyncAddList .NET webservice code sample

Posted by on Feb 3, 2010 in .NET, Blog, Netsuite, Suitetalk | 0 comments

In asynchronous requests, your client application sends a request to the SuiteTalk Platform where it is placed in a processing queue and handled asynchronously with other requests.

This article requires existing knowledge of Web Services and .NET. In this example three customer will be added and the response of the request will be stored in a string value.

(more…)

Netsuite | PHP webservice Delete operation – code sample

Posted by on Feb 3, 2010 in Netsuite, Suitetalk | 0 comments

As per the Suite Talk Web Services Platform Guide, The delete operation is used to delete an existing instance of a record in NetSuite. This example will guide developer how to perform a delete operation thru web service using PHPToolkit.

This article requires existing knowledge of Web Services and PHP. The example will delete a contact record.

(more…)

Netsuite | GetSelectValue PHP webservice code sample

Posted by on Jan 1, 2010 in Blog, Netsuite, PHP, Suitetalk | 0 comments

The GetSelectValue operation is used to return the entire list of values or just a subset of values. This example will guide developer how to perform a GetSelectValue operation thru web service using PHPToolkit.

This article requires existing knowledge of Web Services and PHP. The example will get the values on the salesrep field of the opportunity record.

(more…)