My Stuff
Comments
-
Not sure how unchecking delay loading of sublists would help inline editing - one thing it will do for sure it make your page loading slower. That suggestion came to me via support when I had 2 browsers open - one showed the "new" custom form and the other showed the "old" custom form... making that change fixed the issue…
-
nixn1 - it's pretty easy. Go to the custom form itself and click Customize Click the Screen Fields Tab. Select the tab that you want the new field displayed on - and then click the New Field button. That will take you to the form that creates a new field and here is where select the type of field, what that field may or…
-
From the Permissions Doc - Financial History(no longer in use) Anyone got the updated permission for a role in 2015.2 to see the Transactions sublist on a Vendor?
-
I'm assuming the use case above is: look at a customer, look into the address book for that customer, select the address marked default shipping, and then select the field phone from that entry... right? Or are you hoping for something else? You question is a little brief and I just want to be sure I understand it :)
-
HJMkreminski - I'm assuming the script is sitting on the Case record and acting there... not an email plugin?
-
Wouldn't it be awesome if you could put them onto the web YES it would! +1 vote
-
NetSuite Marketing is nice - but it's much more "general use" as in you can't get all the explicit details you can with MailChimp or dedicated email platforms. I have shuttled data back and forth between a BUNCH of different external mail platforms (including MailChimp) - thats not too bad once you figure out the mappings…
-
Carl it depends on what you are mapping in your import. Unique external ID's can help. Also - if you have the Customer ID (entityid) set to Auto name then the lead automatically picks up the name fields... You can override that in your import. Start with (and play with) your CSV import - it's pretty powerful and will get…
-
I have found Support to be pretty darn good at helping even when there are customizations involved. So - don't be too afraid if you have to go custom - the reality is "customizations are supported" to some degree - since it's allowed within the given framework. If the CSV import won't change enough for you - the next step…
-
Yup - anyone with Administrator access can see where you are at... Setup > Company > Billing Information. Look for Campaign Email Volume - likely you have 120000 / year unless you bought more (and you can) - the column on the right will show you how many you have already used... and a "year" is contract year - not calendar…
-
@FinOps - did you get this to work? The process you have will work for WEBSTORE but not forms (i.e. sign up for email lead forms)... but there's an alternative if that's what you are trying to do. NS Support confirmed that tag only executes on webstore pages.
-
Reference My Account, again, built with SSP, SuiteScript and Commerce API. Use the reference implementation, customize it or build your own. Diego, Is the Reference My Account now available as a bundle (or even just the .ss and .ssp files + templates in a zip)? Very interested to see it and how it works! If it is out there…
-
What jmalinis said... (actually that's a great list). Plus - good, solid, real, authoritative inbound links... this is the hardest to accomplish because you have to talk to others and get them to link back... but this is the BEST way to build authority for a product, service or site. You can also use any of a number of SEO…
-
Good idea Wiz... but no dice!
-
Do you have a script or workflow that runs against the sales order when it's created?
-
This thread started well before the workflow engine was in place - that may be the best way to send the response you want to send under 2010.2
-
@nick - your sample was helpful in seeing how the elements are added to the array that ultimately becomes the search... Thanks. I'll take a look at PhpStorm for sure if this project moves forward... The issue with the samples in the toolkit is they are all very basic - like hello world for each action (search, add, update,…
-
@Daniel Giguere Yeah - I was looking at that page in help... :h_a_w: the thing is it's not at all clear to me based on the THAT definition of the Advanced search and the functionality of the toolkit how the two work together... i.e. - do you just assume that the element is "criteria" and it accepts a Customer Search…
-
@nicholasmschultz I use those things a lot too - all good resources. What You don't have a link for is the PHP side of things... as I responded to @Daniel Giguere, unless I'm missing the obvious, the PHP Toolkit is "close"... but not exact... and absolutely no documentation. I hope I'm wrong.
-
There's documentation on WS calls for NetSuite - that should be enough to get you started - but beware of the "allows non-programmers" part... you will be, at a minimum, formatting some XML I'm sure... Cool project - post back with results!
-
If you go directly to the invoice the WS call is updating - and try to make the changes - what happens? In particular what happens in the price fields?
-
@anju rao - the best way to know what you should have in code is to visit the form you want to pull the information off of and click on the filed name (the link that makes the little help window pop open) - in the lower right corner of that window the field ID should be displayed - that's what you use in code. NOTE: If the…
-
It sounds like you know exactly what you need to do then. Add a custom field to your fulfillment form - type date or date time - and then I'd do an on create workflow to stuff the current date into the field when the status is set to "shipped". Should give you exactly what you want!
-
Have you looked at the SO after fulfillment? On the Shipping Tab there are 2 fields - Ship Date and Actual... That may give you what you need.
-
Defect 196378: Setup > Customization > Transaction Body Fields > New > Unable to change the value It's an S1.
-
You make any progress with this?
-
Thanks but it just won't go. I can do all sorts of logic on the form with workflow - basically everything up to but not including actually changing the form on load based off customer field criteria... if I make a field that I update THEN it will change the form... but of course if you change the form after some data has…
-
@khultquist - that's a good idea and I have done that in some other circumstances - this one was solved a different way... but for anyone searching these forums - that's a GREAT way to manage it.
-
Hi. I have the same problem. Any update from support? Br I wrote a script todo it instead.
-
Thanks for the reply Evan - appreciate it and the fact these forums exist! You are correct. A pageInit script that does this : nlapiSetFieldValue('customform', '123', false) works just fine. The workflow - before user edit (which I understand to be basically = pageInit) - with a Set Field Value of Custom Form = 123 does…