My Stuff
Going to SuiteWorld? Connect with SuiteGurus—Your NetSuite Product Experts!
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.
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.
Comments
-
Sorry to revisit an old thread but how did everyone get on with this? One of our online forms has started being flooded and we need to get a captcha system put in place. Any ideas? Thanks. Below is a description of how I did this for an online case form. The case form is in an iframe on a site page. The iframe src param…
-
For your new location did you check "Make Inventory Available"? And on the order line did you set the location to be the new location?
-
Certainly is very slow right now
-
Are you doing that from the command line or an Ant script? I haven't regenned since 2009.1 but I seem to have everything. I did have problems with timeouts a couple of years ago but for the ant task there's a timeout parameter that you can set to a large value: [PHP] <axis-wsdl2java output="${generated.src.dir}"…
-
ping shopping.netsuite.com and it responds very quickly. I checked 4 other Netsuite sites that I know of and all are down.
-
Did you ever get a resolution on this? I am getting the same thing with custitem image fields in an item list cell template all returning the same as the the value from the first item that isn't empty for that field.
-
The following can be used in an after submit user event script for an itemfulfillment: var soInfo = nlapiSearchRecord('salesorder', null, [ new nlobjSearchFilter('internalid', null, 'is', nlapiGetFieldValue('createdfrom')), new nlobjSearchFilter('mainline', null, 'is', 'T') ], [ new nlobjSearchColumn('statusref'), new…
-
A kit or an assembly will do depending on whether or not you stock the finished bundle. If you check "Special Order" for the items you don't stock then you'll have the option to make a PO that is tied to the order. If that doesn't work and you order the goods in bulk you can play with your commitment priorities so that the…
-
FWIW Netsuite has WYSISYG editor functionality. Just include a Rich Text field on a Netsuite page. Users control whether they want to edit in Rich Text mode or source mode for rich text fields under Home -> Set Preferences and the Appearance tab. I have also used jQuery quite a bit to add functionality to Netsuite pages.…
-
For the public facing web site you just include the jQuery reference in a script tag the same as for any site. If you host the jQuery files in your Netsuite account make sure you use root relative addressing so that you don't get a security warning when you go to checkout e.g. <script type="text/javascript"…
-
Hi Antero, There doesn't appear to be any quick way to do this against the live templates. However you SHOULD have your templates stored in a version control system such as subversion or git and you SHOULD be making your edits locally where you can validate (well at least check for broken tags) your templates and tags. If…
-
... Can this be achieved with workflows? No idea but it can be achieved via scripting
-
It's been a while so I don't recall all the details but I've handled this by creating alternate no charge shipping methods for 3rd party billing. They were managed When one of those methods is selected in the cart the user is required to enter their account number. The field defaults to their stored billing id. This was…
-
Steve, I just completed an integration for a company called SMS Global. SMS messages were triggered off a campaign event and sent via an nlapiRequestURL call to the SMS Global server. There were a couple of ways to use that service to trigger callbacks to Netsuite. In this case they were for subscription opt-out but lots…
-
Actually for what it's worth: /** * @NApiVersion 2.x * @NScriptType MapReduceScript * @NAmdConfig /SuiteScripts/kotn/oauthShim.json */ Note the space before @NAmdConfig :h_a_w:
-
Will SuiteCloud Plus still have 5 and control? Also one way to get quite parallal is to script CSV imports. If your mods are amenable to CSVs then your scheduled script might be able to generate csv files to submit to the CSV processor. I've done that where I was scripting a nightly update of around 36k records and it…
-
Did you get this? You have to use form.addSecretKeyField not addCredentialField The NS example shows form.addCredentialField({ id : 'username', label : 'Pwd', restrictToDomains : [config.host], restrictToScriptIds : config.targetScript, restrictToCurrentUser : false }); but for HMAC it should be: form.addSecretKeyField({…
-
What happens is chanarbon 's sample does work but the client script is not actually loaded until you click the button. The use case driving this is a client script that uses the messaging api in view mode to report the results of some action. with SS1.0 I used to be able to test whether the page was loaded and fire my…
-
This is just a poc and that it's the simplest code that works. It's also a little more independent of the life-cycle of the page -- There are things that NS loads async. I don't think they've gotten there with view pages (i.e. I think the views are all rendered server side) so, given that jQuery is dependably available on…
-
So hacking a bit on the button code gives a hack-y but working example not triggered by the button: Server Script: /** *@NApiVersion 2.x *@NScriptType UserEventScript */ define(['N/record', 'N/log', 'N/ui/serverWidget'], function(record, log, ui) { function beforeLoad(context) { log.debug({title:'before load with '+…
-
In fact skip the finished CLI. If NS could just publish the files/formats/API needed the dev community could likely come up with a number of working solutions. It's bizarre to hear that the current SDF tool in eclipse logs you out of your current Netsuite session while the SCA app doesn't.
-
You may contact me at lfarruggia@athleticausa.com I am open to discuss our current situation to see if you can find a solution. Hi Linda, I've got experience in this area as well and have sent you a private message.
-
Thanks! and to think I'd come to the conclusion that Run Unrestricted was useless.
-
I've enabled Custom PO Approval Routing and developed a workflow to handle the approvals. Before, when I used the standard Approval Routing feature, the Purchase Approvers could use Employee Center to approve the PO's. Now, with a custom workflow, approvers can't see PO's in Employee Center, although the Reminders portlet…
-
that makes sense. Thanks Evan.
-
Steve, Thanks for posting this. I don't know what to think about workflows (betrayed? bewildered?) They seemed like they had such promise but are so flaky I've been avoiding them. This should at least help map what not to do with workflows but of course we may never hear from NS if it get's fixed. I don't know why they…
-
Jim, I'd tend to do this in a client script. You can use the saveRecord event to test if the field has changed or not and keep the user from submitting the form if it hasn't. In the event script you can either re-load the field each time from the server or cache it in the pageInit event so you can test against it. HTH
-
Hi Evan, I am trying to utilize this technique but it is still required that the state field be stored. If it is not then the field doesn't show up in the "Store Result in Field" list. This shouldn't be an issue if I set the value in the before Load phase but I wonder about using it on submit? Someone else looking at the…
-
p.s. I think you can see this by running the workflow in test mode and checking the log - I think it will say "send email action skipped for trigger type before record submit" or something like that. Evan, This is intriguing -- where is the log? How do we see it? It's not a tab in the workflow wizard.
-
... the task workflow's current state transitions will be processed when the company is updated. ... -e Evan, What does this mean then? The part I quoted sounds like you are saying some user event on the subscribed to record should initiate a transition. But I read the rest of your response as "if you can trigger the…