Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Ie: 2008 Ff: 108 ???
I am outputing some data to an HTML template.
If I use IE the date shows as June 25, 2008
If I use FireFox the date shows as June 25, 108
The code used to generate the Date is:
function xGetTodayLongDate()
{
var today = new Date()
var Month = today.getMonth();
var Day = today.getDate();
var Year = today.getYear();
var m_names = new Array("January", "February", "March","April", "May", "June", "July", "August", "September","October", "November", "December");
var Today = m_names[Month]+ " " + Day + ", " + Year;
return Today;
}
The code where I use the date looks like this:
var Blurb01 = xGetTodayLongDate() + "<br><br>" + "Dear " + nlapiLookupField('customer',CustomerID,'custentitydear',null) + ",<br><br>As I travel.....