My Stuff
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
Comments
-
Hi @Angel Chang , Kindly provide the following to investigate your concern further Do you have any Script within the Expense Report? If yes, can you share it with us? Can you also take a screenshot the Script Deployment record of this script? Can you take a screenshot again of the error you encounter in the Console. Thank…
-
Apologies on the confusion about "items are accessed from resources", what I mean is "the error is about in accessing a resource." means via REST API, items need to be available for us to use it in Sales Order. Thank you!
-
Thank you for sharing your insight, @Miguel Ariza - Sol4IT
-
Hi, I would like to follow up on this thread. Please let us know if you need further assistance. Thank you!
-
Nice to see you posting here, @brocha Kindly allow us to review your concern about Sales Order and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Nice to see you posting here, @jitendrapratap Kindly allow us to review your concern about employee and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Hi, Upon trying to deploy the same SuiteScript in Invoice record, it gives me execution log about throwing a true condition. Is this a Customize form? If yes, kindly set the Printing Type to Basic to get an Email log. To trigger a create email option, you can use a User Event Script that is triggered when an email record…
-
Hi, Yes, since Items needs to access from the resource which means it is not possible to create a new one from the Sales Order..
-
Hi, I would like to follow up on this thread. Please let us know if you need further assistance. Thank you!
-
Hi, These are the possible supported records you may need to meet your concern. In SuiteScript, please check SuiteAnswers Article: 10242 SuiteScript Supported Records In Suitetalk; SuiteAnswers Article: 10059 SuiteTalk SOAP Web Services Platform Overview The SOAP web services platform provides programmatic access to your…
-
Thank you @asha.jena , hoping that it will get resolved asap.
-
Nice to see you posting here, @User_E7TQ2 Kindly allow us to review your concern about bank imports and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Hi, Thank you asking that scenario. With this, I have tried to replicate again the issue. Deployed the SuiteScript in Sales Order with condition about email context. Upon clicking the "Email" under the Actions menu. It gives me execution log about throwing a true condition. Hope this clarifies your concern about email…
-
Nice to see you posting here, @User_FL4CK Kindly allow us to review your concern about bills and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Nice to see you posting here, @User_V5KBL Kindly allow us to review your concern about templates and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Nice to see you posting here, @Sharon Hirsc Kindly allow us to review your concern about locations and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Hi, Upon checking, it seems that you have created a NetSuite Support case since this is an urgent request. Support will help you with this concern as they have the tools to investigate and analyze this issue. Once the support identify the root cause, I would appreciate if you can share your results here in our community.…
-
Hi, Something weird with this field. Me and my co-worker have tried also, but we have the same issue. I am afraid, that would highly advise to create a support case as this seems to be a problem in defualtShippingAddress field in Customer Record via REST API. Once the support identify the root cause, I would appreciate if…
-
Hi, Trying this JSON to create Sales Order with new Item gives me an error { "entity": { "id": "1" }, "item": { "items": [ { "cost": 40.0, "currency": { "id": "1" }, "displayName": "REST WS SO ITEM", "itemId": "REST WS SO ITEM", "itemType": { "id": "InvtPart", "refName": "InvtPart" }, "lastPurchasePrice": 40.0,…
-
Hi, Since customer payments is for invoices, can you try to map this to make sure that it is good on your end. Thank you! <soapenv:Body> <add xsi:type='platformMsgs:AddRequest'> <record xsi:type='tranCust:CustomerPayment'> <customer xsi:type='platformCore:RecordRef' internalId='1'/> <payment…
-
Hi, Per checking, when exporting reports from NetSuite to Excel, the formatting may not always transfer over automatically. Also, the compatibility issues: It's possible that the version of Excel you're using is not compatible with the version of NetSuite you're working with. Make sure you're using a compatible version of…
-
Nice to see you posting here, @Vernita and thank @Brian Stisser for your insight! Have a great one!
-
Nice to see you posting here, @JPrice Kindly allow us to review your concern about templates and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Nice to see you posting here, @Helen Nguyen Kindly allow us to review your concern about transactions and we'll be keeping you updated on the results. To other members of the community, feel free to share your thoughts. Have a great one!
-
Hi @Benjamin Paul - USA , Unfortunately, I am getting an error upon creating a new item via Sales Order due to availability and invalid value. Anyone from the community who might had the same need? Any insights you can provide would be highly appreciated. Thank you!
-
Hi, I would like to follow up on this thread. Please let us know if you need further assistance. Thank you!
-
Hi, Upon checking the Customer Record SuiteScript Browser, it seems that Address sublist is the only supported record. See Customer Record SuiteScript Browser Upon checking also the Address SuiteScript Browser, it seems that Address 1, Address 2 etc. is only supported via Searching. See Address SuiteScript Browser Given…
-
Hi, Per checking and replicating, here's the only way to set an Item of Sales Order via REST API. { "entity": { "id": "1" }, "item": { "items": [ { "item": { "id": "6" }, "quantity": 1 }, { "item": { "id": "9" }, "quantity": 1 } ] }, "location": { "id": "3" } } See SuiteAnswers Articles for details: 98261 Use Case For…
-
Hi, I have tried using the below snippet (!==) to verify if it will be triggered. (context.type !== context.UserEventType.EMAIL) Since you are using beforeLoad, the email type will not be triggered since it is for "edit" or "create". You need to have another logic if you want to trigger an email type upon sending an email…
-
Hi, Upon trying to use context.UserEventType.EMAIL as condition then after loading a specific transaction, it seems that my condition triggered since my statement logs in the execution log. function beforeLoad(context) { if (context.type !== context.UserEventType.EMAIL){ log.debug(' b4 load', context.UserEventType.CREATE);…