Minha área
Comentários
-
Hi @Shubham_Singh If this issue is urgent, I would recommend either giving a call or creating a customer support case so they can assist you further.
-
Hi, Has the Delivery Line Image field been added to the Page Element in the cloned poReceiving? If so, could you please provide the steps to reproduce this, so we can better understand your concern? Thank you!
-
Hi, Yes, you can access the line numbers in a list and use them to order list items in a SuiteScript. In SuiteScript, you typically work with records and sublists, and you can use the getLineCount() function to retrieve the total number of lines in a sublist, and the getSublistValue() or getSublistText() functions to…
-
Olá, Você poderia confirmar qual transação de pagamento específica você planeja usar na pesquisa salva? Além disso, você se importa de compartilhar uma captura de tela do critério para a pesquisa salva em questão? Obrigado!
-
Hi, After reviewing the documentation, it appears that using the Administrator role is not possible in this context. For instance, one article states, "Administrators can use role-based permissions in NetSuite to control which users have SAML SSO access to NetSuite," and "To use the SAML Single Sign-on feature, you need…
-
Hello, Thank you for the information. The "INVALID_KEY_OR_REF" error in SuiteScript generally indicates that the script is trying to access a record or reference with a key or internal ID that either doesn’t exist or isn’t valid in the current context. Because of this, it’s not possible to set multiple values in one…
-
We would greatly appreciate your valuable insights for our member, @aisaadaniya. Your input would be highly valued. Additionally, if you know of anyone who is new to NetSuite, kindly direct them to our "New to NetSuite" category, where they can find useful information and guidance.
-
We would greatly appreciate your valuable insights for our member, @NKusiak. Your input would be highly valued. Additionally, if you know of anyone who is new to NetSuite, kindly direct them to our "New to NetSuite" category, where they can find useful information and guidance.
-
Hi, were you able to check this? Thank you!
-
Resposta: B Explicação: O relatório de avaliação de estoque resume o valor do seu estoque em um momento específico. Você pode usar esse relatório para analisar as quantidades, e o valor de itens de estoque ativos em estoque. Para casa item de estoque, esse relatório detalhe o nome do item, descrição, valor do estoque,…
-
Respuesta: B Explicación: El informe de valoración de inventario resume el valor de su inventario en un momento específico. Puede utilizar este informe para analizar las cantidades y el valor de los artículos de inventario activos y disponibles. Para cada artículo de inventario, este informe detalla el nombre del artículo,…
-
Time's up! Answer: B. Inventory Valuation Report Explanation: The Inventory Valuation Report summarizes the value of your inventory at a specific point in time. You can use this report to analyze the quantities and value of active, on-hand inventory items. For each inventory item, this report details item name,…
-
We would greatly appreciate your valuable insights for our member, @User_GSHV1. Your input would be highly valued. Additionally, if you know of anyone who is new to NetSuite, kindly direct them to our "New to NetSuite" category, where they can find useful information and guidance.
-
We would greatly appreciate your valuable insights for our member, @kees.netsuiteadmin. Your input would be highly valued. Additionally, if you know of anyone who is new to NetSuite, kindly direct them to our "New to NetSuite" category, where they can find useful information and guidance.
-
We would greatly appreciate your valuable insights for our member, @User_H3HN2. Your input would be highly valued. Additionally, if you know of anyone who is new to NetSuite, kindly direct them to our "New to NetSuite" category, where they can find useful information and guidance.
-
We would greatly appreciate your valuable insights for our member, @Toni L. Your input would be highly valued. Additionally, if you know of anyone who is new to NetSuite, kindly direct them to our "New to NetSuite" category, where they can find useful information and guidance.
-
Hi, Once the support identify the root cause, I would appreciate if you can share your results here in our community.
-
Hello, Are you referring to XML in the context of using SuiteTalk SOAP Web Services? If that's the case, here's the SOAP Schema Browser, which you can use to verify the different records you want to reference. Note. if the link routing you to the Schema Browser (2024_1 version), here's the alternative link (2023_2 version).
-
Hi, Have you considered creating a support case so they can easily review your situation during a meeting? This concern might be specific to your case, and I couldn't find any related documentation or similar issues.
-
Hi, Could we review the execution logs to check for any errors? Additionally, can you confirm if the issue occurs when entering lot numbers in the NetSuite UI?
-
Hi, If you're looking to fill multiple values in a sublist using SuiteScript, you'll need to utilize a script logic that involves iterating through each item, such as a for loop. SuiteScript, by design, doesn't offer the ability to simultaneously populate multiple fields with a single command like setCurrentSublistValue.…
-
Hi, were you able to check this? Once the support identify the root cause, I would appreciate if you can share your results here in our community.
-
Hi, were you able to check this? Thank you!
-
Hi, After further consultation with one of our engineers, it has been confirmed that the "WITH RECURSIVE" clause is not compliant with Oracle DB syntax. The team is currently looking into following example, however keyword "parent" seems not to be supported by the SuiteQL pipeline. They are working to identify the exact…
-
Hi, Thank you for sharing this information. I would love to assist you further, but unfortunately, I was unable to replicate the issue using my own account. Given the situation, I recommend reaching out to NetSuite Customer Support, as they have the specialized tools and resources needed to investigate and resolve these…
-
Hi, Are you allowed to undeploy and redeploy the script that has an issue? If so, could you please do that and check the outcome?
-
Hi, were you able to check this? Once the support identify the root cause, I would appreciate if you can share your results here in our community.
-
Hi, Upon checking best practices, When calling a Suitelet using its external URL, properly escape the parameter values to avoid cross-site scripting injections, for example, by converting the appropriate characters to HTML entities. For access or redirection from another script to a Suitelet, the best practice is to…
-
Hi, were you able to check this? Thank you!
-
After coordinating, here's a straightforward example of a recursive query that you can review: WITH cte (n) AS ( SELECT 1 UNION ALL SELECT n + 1 FROM cte WHERE n < 5 ) SELECT * FROM cte; Alternatively, you can refer to this external site for more information on recursive queries. Additionally, I am consulting this queries…