Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Please note that on Friday, March 20, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
cc expiration date
I'm trying to set credit card expiration date from string '12/2010' during post(suitelet) but it always invalid date format because it will treat as 12 divided by 2010. see my code below.
function createSwipeForm(request,response){ if(request.getMethod()== 'GET'){ var form = nlapiCreateForm('Swipe Credit Card', true); var field = form.addField('custpage_ccswipe','text','Card #'); field.setLayoutType('normal','startcol'); response.writePage(form); } else { var swipe = request.getParameter('custpage_ccswipe'); var s = swipe.indexOf("%B"); var e = swipe.indexOf("?"); var track1 = swipe.substring(2,e); var arrStr = track1.split('^'); var ccNum = arrStr[0]; var nameOnCard = arrStr[1]; var cExp = arrStr[2].substring(0,4); var mon = cExp.substring(2,4); var yr = cExp.substring(0,2); var cExpDate = mon.toString() + '/20' + yr.toString(); response.write(parseSwipe(ccNum,nameOnCard,cExpDate)); return true; //nlapiLogExecution('DEBUG', 'Card Swipe', request.getParameter('custpage_ccswipe')); } } function parseSwipe(ccNum,ccName,expireDate){ nlapiLogExecution('DEBUG', 'Credit Card, Name', 'Expire Date = ' + ccNum + ccName + expireDate); var html = "<html>n"; html 0