プロフィール
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
コメント
-
Hi @"4182610", You are correct that workcalendar is not listed in the Record Browser and also, it is not part of Supported Record/Record or Search Type. Meaning, it is not yet supported. There is an enhancement(Enhancement # 286291 - List > Employees > Work Calendars > Ability to expose Work Calendars in SuiteScript) filed…
-
I would be glad to help you but with regards to your concern about setting up a conference with Azure, I would suggest to create a case to support and there will be a representative that will be happy to assist you with your concern. -Mikko @"Mikko De La Fuente-Oracle"
-
Hi New_44789, If you are familiar with scripting, I could suggest an alternate solution that might work in your case. You could achieve this by following the steps below but first you need to have the following: * Another custom field(which will be made via User Event Script). Use Field.addSelectOption(options) for your…
-
Hi @"Shawnna", You could do it by: * Navigate to your Saved Search. * Click the Email subtab. * Check the options "Send Email According to Schedule" and "Send If No Results". * Click Save. I hope this helps. -Mikko @"Mikko De La Fuente-Oracle"
-
Hi Hubi @"hubidubi", May I ask what level is the Web Service permission given to the user? Please note that Full level is required. See SuiteAnswers Article Assigning the SOAP Web Services Permission to a Role for reference. If it is possible, could you send a sample SOAP Request and Response? You could get this by…
-
Hi @"Rob Leij", For starters, you may want to check these SuiteAnswers Articles below for reference: * Complete Preliminary Steps in NetSuite for SAML SSO * SAML Single Sign-on * Complete the SAML Setup Page In shorter version, the important things you need to know on NetSuite side are the following: * NetSuite Metadata*…
-
Hi @"4169315", If you are familiar with scripting, you could create a User Event Script and try to use the following code snippet below in the beforeLoad function of the UE script: function beforeLoad(context) { var form = context.form var field = form.getField({ id : 'custentity6' // id of the custom field }); if…
-
You are having this kind of error because you are trying to edit the "discount rate". As a standard behavior, the discount rate is based on the promotion set and it is greyed out meaning it is not editable. In addition to that, there is also an enhancement regarding having different discount under one promotion code. (…
-
The highlighted part of the picture is the entry point: You need to remove the "()" and you should good to go. E.g From: priceHeading() To: priceHeading -Mikko @"Mikko De La Fuente-Oracle"
-
Have you tried this one: define(['N/ui/message'], function priceHeading(message) { var myMsg = message.create({ title: "My Title", message: "My Message", type: message.Type.CONFIRMATION }); // will disappear after 5s myMsg.show({ duration: 5000 }); log.debug({ title: 'myMsg' }); return { pageInit: priceHeading }; });…
-
Hi @"ShyamBandari", Some customers also reported this kind of issue and it happens for some TSTDRV Accounts. There is also an issue filed regarding this matter ( Defect # 508606 - Getting "an unexpected error has occurred" when clinking on SuiteAnswers ) In case you still experience this, you may want to try the…
-
Hi @"coffeeguy", Upon checking the sample snippet, there is an excess comma(,) after "myMsg" in the log.debug function and a semicolon(;) after priceHeading. I suggest that you remove those syntax. In addition to that, you may want to use N/ui/dialog module for alert that is more interactive than N/ui/message. See sample…
-
Hi @"battk", This is possible. You may refer to the sample code snippet provided below: require(['N/record'],function(record){// create a Parent Matrix Itemvar objRecord = record.create({ type: record.Type.INVENTORY_ITEM, isDynamic: true});objRecord.setValue({ fieldId: 'itemid', value: 'Matrix…
-
Hi @"Chris Dobbins", The functionality you want is actually an enhancement. It is currently logged as enhancement # 149893 - Be able to have the package dimension visible on the Basic tab of the Item Record. The suggested steps for the workaround are listed below: Create custom item fields to hold the dimensions…
-
Hi @"MS Chandrasekhar", Could you answer the following questions for us to help you better: * Is is possible for you to provide the sample script? * have you checked the Records Browser if the field you are editing is included or available for scripting? * have you check the properties of the field you are trying to edit?…
-
"inventorylocation" refers to the location that can be found in the item sublist(line item) while location is a body field that can be found in the mainline. The location field is under the schema definitions "salesorder" since it is a body field and those that fall under salesOrder>lineElement are the fields that can be…
-
Hi @"fa035f39-06b6-4948-9245-effbd902e7d8", I understand that you want to edit the display type of the field "Disc. Date" on the customer transaction form. This field is a standard field of NetSuite and as of the moment, it is not possible to edit. On the other hand, there is an enhancement filed that indicates the ability…
-
Hi @"callen42", If you want to edit the "From email address" on your account, you could go to Email Preference by navigating to Setup > Company > Email > Email Preferences. Under Transactions subtab, check what option was selected on the field "From Address For Emailed Forms". In this field, select the email address to…
-
Hi @"dev0001", What you can see in the REST API Browser(2019.2) are the only fields available when working with REST Web Services. For Line Item, do you mean the refName of an item?(see sample below): "item": { "links": [ { "rel": "self", "href":…
-
Upon testing, the imported saved search was not encrypted. Maybe I did not replicate the steps you have done to reproduce the concern. If I may ask again the following: * Could you provide the sample saved search? e.g criteria/results used. * Is importing saved search the only encrypted and not when you are importing other…
-
Hi @"Kenny Wise", The ability to customize the Gross Requirements Inquiry page/report is still an enhancement. It is currently logged as enhancement # 205289 - Inability to customize Gross Requirements Inquiry. You may want to submit a case to support to add an additional vote or visit SuiteIdeas. Thank you for…
-
Hi @"Benjamin Hille", Is it possible to provide a sample script that you are working and receives this kind of error? Possible reasons why you receive such error is because of the following: * A line item field value is being set on a non-existing line * A line item is being added to or removed from a non-inline-editor…
-
Hi @"lilywu", I agree with ShyamBandari, kindly check the values of test1 and test2 and nlapiLoadRecord('inventoryitem',test1) is also correct. In addition to that, could you check if there are any results on your custom search. Also, if I may ask, what error did you encountered? -Mikko @"Mikko De La Fuente-Oracle"
-
Could you provide the sample saved search? e.g criteria/results used. Is importing saved search the only encrypted and not when you are importing other objects? Could you also provide the steps to reproduce your concern? E.g the step by step procedure on how you import. -Mikko @"Mikko De La Fuente-Oracle"
-
Hi @"ssilveri777", May I ask why do you need to import not encrypted saved search? -Mikko @"Mikko De La Fuente-Oracle"
-
Hi @"Naoki Komachi", May I ask the following questions: * What address are you talking about. E.g Shipping or Billing Address. * Is Item Line Shipping enabled or disabled? Please take note that Dialog module is supported for Client Script only and saving the Address Record when adding new address from Sales Order's…
-
You could unhide the default NetSuite Assignee by: * Customize the form being used by the Project Task Record. (Navigate to Customization > Forms > Entry Forms). * Look for the form used by the record. * Click the Sublists subtab. * Check the Show checkbox. * Click Save. You could also edit the form by going to a sample…
-
Hi @"9f113d34-6c84-4fba-b3b2-8f9d3bf8d962", Is it possible to provide a sample code or the screenshot of your saved search criteria and results so we could take a better look on the scenario? Are you also loading the saved search created via UI in your suitescript or creating the search on the fly using script? -Mikko…
-
Hi @"vti", This is possible through scripting. Here is the idea: * Create a button (Form.addButton(options)) * Create a function with the following:* render.transaction(options) * email.send(options) * Create custom html template/advanced pdf/html template * Create a Custom Form for Sales Order. The button will trigger the…
-
I am not sure if there is a common script to mass update the records affected on your account since it is a case to case basis. What I could suggest to you is to: * Create a Saved Search for all the records you want to update. * Based from the results, update the necessary fields on these records. Take note of the…