My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
right now I just try to update the status for the support case. I got the remote server returned an error: (400) Bad Request. Any suggestions???? Here is my .net code: //create HTTP request WebRequest request = WebRequest.Create("https://rest.netsuite.com/app/site/hosting/restlet.nl?script=333&deploy=1");…
-
Thanks...an alternate solution using Saved Search. Below is my script, no return. Can someone tell me what's wrong? function getSupportCaseFileName(datain) { var cases = new Array(); if (datain.casenumber === null) { var error = new nsError('NO_casenumber', 'No case number sent'); return error; } var filters = new Array();…
-
okay, got the script working result no error, just don't know why got waring message in SuiteCloud IDE "message" is not a valid field for "supportcase". columns[10] = new nlobjSearchColumn('message', 'messages', null); Thanks...
-
Thanks, got it working.
-
Thanks Lorne, very helpful info.
-
Thanks, questions: 1. the following look right to you: filters[0] = new nlobjSearchFilter('casenumber', null, 'is', datain.casenumber, null); filters[1] = new nlobjSearchFilter('message', 'messages', 'isnotempty', null, null ); // I don't think I need this filter since I don't need to filter the messages. am I correct? 2.…