My Stuff
Comments
-
Hi @Dave_Orchesis, We tried replicating the negative Inventory Adjustment from the UI by using the GET method and then creating it via REST API. However, the process still resulted in an error. We understand that this may be impacting your process, and to make sure you get the right guidance, we recommend raising a Support…
-
Hi @ABDUL HANNAN, Apologies for the misunderstanding. Unfortunately, it is not possible to run Client Scripts with administrator privileges. As outlined in SuiteAnswers 67650: Client Script Role Restrictions, a workaround for this is: Consider writing the script as a user event script, and set the Execute As Admin…
-
Thanks for sharing your insights on this Tigran! Hi @User_7WW0P, Good day! I agree with Tigran's insights, using NetSuite’s “System Notes” is an excellent way to track when records are created or edited. Let us know how it goes! __ If you find Tigran's reply to your question as helpful, others with the same question might…
-
Hi @Amir Deris, Upon further checking, SuiteAnswer 64733 states that “most of the old properties on the Tax Code record are removed once the SuiteTax feature is enabled.” Also, it says that Rate has been removed from the form: Here's the SuiteAnswers article for your reference: SuiteAnswers 64733: Tax Code Records in…
-
Hi @ABDUL HANNAN, Good day! Sending a follow up on this in case you haven't read my previous reply. Thanks!
-
Hi @ABDUL HANNAN, Direct restriction by role is not native for Client Scripts, but you can add this via script logic using the runtime module. Here's a quick snippet on how it would look like: var userRole = runtime.getCurrentUser().role; // Array of permitted role internal IDs var allowedRoles = [3, 1001]; // Example:…
-
Hi @Amir Deris, Would you be able to try it using an Administrator role so we can confirm the behavior? Thanks!
-
Thank you for sharing your insights TyClaes and GauravAgrawal! Hi @Oshadha Perera, Good day! I agree with the suggestions shared above. Have you tried this on your end? Let us know how it goes!
-
Hi @Dave_Orchesis, If your item does not use bins, you do not need to enter a BinNumber. Have you had a chance to try this on your end? Let us know how it goes!
-
Hi @Amir Deris, Glad to hear you were able to fetch the Tax Type! Just to confirm, when testing the Tax Code, were you using the Administrator role or a custom role? Thanks!
-
Hi @User_3CN3G, Good day! Sending a follow up on this in case you haven't seen @User_UTB5L's reply. Thanks!
-
Hi @Amir Deris, Good day! For the TaxType, can you try this SOAP request body: <soapenv:Body> <search xsi:type='platformMsgs:SearchRequest'> <searchRecord xsi:type='listAcct:TaxTypeSearch'> <basic xsi:type='platformCommon:TaxTypeSearchBasic'> <isInactive xsi:type='platformCore:SearchBooleanField'> <searchValue…
-
Hi @User_DFQMH, Good day! Sending a follow up on this in case you haven't read our previous reply. Thanks!
-
Hi @User_DFQMH, Thank you for clarifying. Upon testing, I was able to make it work on my test account. Here's what I've done on my test account: Custom Field: Note: I used the 'Comments' field in the Customer record as my email field Customer Record: Custom Field in the Invoice record: Workflow: Results: Based on the…
-
Hi @bcruson, Good day! Sending a follow up on this in case you haven't read our previous reply. Thanks!
-
Hi @Dave_Orchesis, Good day! Sending a follow up on this in case you haven't read my previous reply. Thanks!
-
Hi @Elina Kourouzidou, Thanks for sharing this! Upon checking, I wasn’t able to find any related defects on our end. Could you confirm if a support case has already been submitted for this? If not, we highly recommend submitting one so the support team can review the backend logs and identify the cause. We appreciate your…
-
Hi @bcruson, A potential reason for this is because SuiteScript 1.0 isn’t being updated anymore. Have you tried converting this into SuiteScript 2.0? Here’s a SuiteAnswers article that shows the mapping of 1.0 to 2.0 functions: SuiteAnswers 61040: SuiteScript 1.0 to SuiteScript 2.x API Map – Functions (nlapi) I hope this…
-
Hi @User_3CN3G, Good day! To clarify, when you refer to the "Audit Trail," are you asking about changes made on the configuration page of the custom field? As seen below: If so, unfortunately, NetSuite does not currently offer a direct download option for this. However, I was able to find an existing enhancement request,…
-
Hi @Dave_Orchesis, We used an existing Inventory Adjustment record to find out what's the correct fields to use in the POST method. With this, we've tried another way (without using internalId and inventoryDetail): { "account": { "id": "1" }, "adjLocation": { "id": "3" }, "customer": { "id": "1" }, "inventory": { "items" :…
-
Hi @User_DFQMH, Are you seeing any error messages other than Unexpected Error? I’m also trying to replicate this in my test account. When you mentioned “this field writes to an email field on the sales order which is not stored”, were you sourcing the values through the Sourcing & Filtering subtab of the Custom field?…
-
Hi @Dave_Orchesis, We used the Inventory Adjustment record for the GET method. I hope this helps!
-
Hi @Dave_Orchesis, Good day! Sending a follow up on this in case you haven't read our previous reply. Thanks!
-
Hi @Dave_Orchesis, I got them both by using the GET method first, then used this as a guide for the POST method. Can you try excluding the "inventoryDetail": 230 and check if you will still meet the expected output? Thanks!
-
Hi @Dave_Orchesis, Can you try aligning your API call like this: { "account": { "id": "1" }, "adjLocation": { "id": "3" }, "customer": { "id": "1" }, "inventory": { "items" : [ { "adjustQtyBy": 1.0, "item": { "id": "6" }, "location": { "id": "3" }, "quantity": 1, "inventoryDetail": { "item": { "id": "762" }, "location": {…
-
Hi @User_68KLQ, Good day! Sending a follow up on this in case you haven't read our previous reply. Thanks!
-
Hi @User_68KLQ, Good day! In the Event Definition of your Workflow, have you tried selecting your Custom Form in the condition? As seen below: Let us know how it goes! __ If you find this reply to your question as helpful, others with the same question might find it helpful as well. By marking “Yes” on the “Did this answer…
-
Hi @Elina Kourouzidou, Good day! Sending a follow up on this in case you haven't read our previous reply. Thanks!
-
Hi @Elina Kourouzidou, Good day! Would you be able to confirm which specific API you are using for your Journals? Thanks!
-
Hi @Elizabeth Vance, Unfortunately, Inventory Number (or Item Number) records are not available as a selectable base record type in Workflows. On the scripting side, when I tried to use nliapiGetRecordType() in the console, it returned null. If we check on the Records Browser > Inventory Detail, the Inventory Number record…