My Stuff
Comments
-
nlapiGetLineItemValue('sublistid', 'fieldid', 'linenumber')
-
In your Suitelet file, you should have a couple of lines like this: form.setScript(XXX); // XXX being the ID of the new script you create of type CLient form.addButton("custreset", "Reset 1", "reset();"); In the new client script you will create (new file), you will have the following: function reset() { alert('hello…
-
Yes, you can call a function in a client script. First set a script in your form using the form.setScript(id) function. Then create a client script file and in that file add a function for resetscript(). Then your reset button line in your form script file should look something like this: form.addButton("_reset", "Reset",…
-
Have you tried using nlapiGetLineItemValue('sublistid', 'fieldid', 'linenumber') ?
-
Thanks! I thought that might be something like the "Attach Files' on Bulk Merges that doesn't work.
-
I'm still running into this issue and have submitted it to NetSuite. No response other than marking it as a defect... unit of measure on netsuite is really confusing. whenever there isn't a unit of measure, i always assume it's base unit. ive tried the report builder. when i change quantity to "sales uom", it still shows…
-
Very handy. Thanks Brett!
-
You can group the results
-
I don't believe you can. I suggest using Save+Run after you've made changes to the first one, and then making changs the second search, Save+Run, and then compare.
-
I don't believe this is possible as the highlighting feature always highlights the entire row - not just a cell.
-
You're welcome
-
Don't use count for the set by, use group for all including the set by. As long as the set by is the same person then you should be fine.
-
Which record type are you dealing with? Should should be able to pull this from the system notes by setting your criteria to System Notes : Type = Create, and in your results System Notes : Set By
-
Have you tried nlapiSetFieldText instead of nlapiSetFieldValue? Just a thought...
-
I doubt it can
-
Have you tried just removing the label for those two fields? Try leaving the labels blank/empty and see if that does the trick
-
I've never tried this but you're saying the customer is asked to sign in twice? Once when they view the form and again when they submit it?
-
Let us know if you need any help... like Felix said, it shouldn't be more than a few lines.
-
You'll have to write a script to hide the fields in the box in the top right corner. If you need help with that, let me know.
-
No. Customize the custom form your partners are using, and there should be a checkbox on the top right called Store Form with Record
-
nlapiSubmitField does not return anything. You can also load the case record, var sc = nlapiLoadRecord('supportcase', input['case_id']). Then update the field, sc.setFieldValue('incomingmessage', input['message']). And then submit the record, nlapiSubmitRecord(sc).
-
I suggest using a restlet to retrieve the credit card information from the customer record to allow them to remove any they no longer want on file, and then have an option to add new credit cards again using a restlet. You can also write a suitelet which you can insert into an iframe on your site but that would be less…
-
{type} should work
-
No problem!
-
Yes you can, either using a script or the manual option I gave you. With a script you'll be able to select the field values to be included and from which line, and then use the nlapiMergeRecord fields parameter (last one) to insert the values into custom merge tags that you've added to your email template.
-
On the custom form you've setup for your partners, do not select Save Record with Form.
-
Do you have them restricted to a certain form?
-
You should be able to include URL links in a spreadsheet. If the users trying to access the file don't have access to NetSuite, make sure that the files in the NetSuite File Cabinet are marked "Available without Login".
-
Are you embedding the sales/purchase order in the body of the email?
-
You will have to merge the email template with the SO using a script in order to get the contents of a line from the item sublist and write them in. Another more manual option is to create a custom field on the SO and enter the info from the line yourself, and then include that field in your email template :p