My Stuff
Comments
-
Hi @User_KSN9M , Please check the below suite answers Sales Order Saved Search > show Amount Billed Suite answer id : 34831 https://suiteanswers.custhelp.com/app/answers/detail/a_id/34831/loc/en_US Show Amount Unbilled on a Sales Order Using SuiteScript 1.0 Suite answer id : 45643…
-
Hi @User_K1S7K , When I do a vendor bill, the GL didn't capture the COGS account even when there is COGS account associated with the item, instead it goes to Accrual Purchases. Vendor Bill didn't captured it as COGS is only associated with Sales related because of it's nature, correct? General, the Item receipt hits the…
-
Hey @User_VAYT1 , I need to create a journal entry to reclass bank deposit deferred accounting entries It is only for cash deposits for a specific customer. The following customizations can be implemented. The user event script against cash deposits is capable of creating a journal based on the conditions (cash deposit for…
-
Hi @User_3GFP8 Workflow or User Event would be fine, but so far I can't find a record type to deploy either against. User event script can deployed against Message record Thank you
-
Hey @Mitzi B. , The below formula worked for me Name => GROUP FORMULA TEXT (NS_CONCAT({role}) ) MAX Thank you
-
B) 1000
-
.JS
-
Hi @User_I4Z2V , Can you verify the following? Dashboards and portlets are published for roles. Make sure that the user is using the same role that was previously used Please check if any dashboards have been published for the role with OVERRIDE EXISTING USER'S SETTINGS ? Thank you
-
@Elina Kourouzidou , I just want a generic email that will act as a reminder to the user so I think the workflow would be the way to go. But I need a specific record to do that and a triggring point right? Not necessary, scheduled the workflow /script will trigger based on the schedule irrespective of the record deployed…
-
Hey @Elina Kourouzidou , If you need to trigger an email from a saved search results, then you can schedule the search If the email is customized, it can be done using the scheduled workflow or scheduled script. Thank you
-
Hey @Rahul_Thakur, After reproducing the issue in the test account, it seems that the field help popup requires an active login session. Could you please check the below alternatives? Use the HTML field to create a link and align it with the standard suitlet field. An alert can be created by clicking the link that…
-
Hey @User_59L06 , You can implement the customizations Using the user event script before submitting action, you can disable item sublist fields for all roles except administrators field.updateDisplayType({ displayType : serverWidget.FieldDisplayType.HIDDEN }); By implementing workflow (trigger on Before Record Load), you…
-
Hey @Elina Kourouzidou , You can list the deleted records/transactions by creating a saved search on the deleted records dataset However, if you need to restore the transactions Check with NetSuite support best practices Recommend to refresh the sandbox every alternative interval for data consistency Integrate the system…
-
Hey @Andrii Siryi , I mean, do you prefer one over the other? Or are SOAP and REST supported equally? It's a hypothetical question - SOAP and REST APIs are different approaches to integration and the selection of SOAP and REST is purely based on the different aspects of integration examples Which platform do you need to…
-
Hey @esabis, Due to the fact that a saved search is not a record database, it is not possible to attach any record to a search or report. But you can try the below workarounds Create a formula text field as the last column in saved search results and add the notes as the formula text result Create a custom record with the…
-
Hey @Maxeem-83 , As a customization, you can store inventory details as JSON objects in a field by using the user event after submit script. { [LINE_ID] : {inventoryNumber : 21022024, expirationDate : 21/02/2024, qty : 1} , [LINE_ID] : {inventoryNumber : 22022024, expirationDate : 22/02/2024, qty : 2} } You can refer to…
-
Hey @User_M4JOC , If I understand correctly, you created a field in the item record 'standard quantity of pallets' and want to show it on the work orders item sublist. You can create a transaction line field and source the actual field value of the item record Thank you
-
Hey @Sivasubramaniam, Sending a file using multipart/form-data content type in the options.body parameter is not supported. Can you try the below methods? You can send Base64 PDF content via POST API. or Sending the encoded render object is possible using the POST API var poPDF = render.transaction({ entityId:…
-
Hey @Volkan Eroglu , Not sure if the answer below will work exactly as you are looking for. You can define the saved search access roles and employees in the audience subtab Thank you
-
Hey @User_9AUJK, Please check the below suite answer Custom Role cannot save a Saved Search due to permission > error you cannot access this search because it includes restricted fields. Please contact your administrator transaction search https://suiteanswers.custhelp.com/app/answers/detail/a_id/92049/loc/en_US Thank you
-
Hey @Harbour Mastery Inc, If you need to restrict zero quantity in invoice record level Implement client script/ workflow to validate the sublist field quantity field If you need to remove zero quantity lines in any saved search or report Define criteria Main Line False quantity in transaction units should be greater than…
-
Hey @User_ESHF0 , I believe the authentication is 0auth 1.0 Please make sure that the below details are provided in postman request Signature Method - HMAC-SHA256 Consumer Key Consumer Secret Access Token Token Secret Version - 1.0 Realm - Account Id Thank you
-
Hey @pbr528 If I understand correctly, you are trying to set a value in the date field referred from the date time field using workflow. I have tried the formula below in the workflow and it worked for me. TO_DATE({FIELD_ID}) FYI; In the above case, workflow will trigger on record after submit Thank you