Greg
01/08/2025, 11:57 AMCeligo AI
01/08/2025, 11:57 AMAI generated answer (using internal Slack threads):It seems like you're having trouble importing the
N/suiteAppInfo
module in SuiteScript. Based on the conversations, there are a few things you could check:
1. Ensure that the module name is spelled correctly and that the module actually exists. In SuiteScript, module names are case-sensitive. Also, make sure that the module you're trying to import is available in the SuiteScript version you're using.
2. Check your file path. If the module is a file that you've created, make sure that the path to the file is correct. Remember that file paths in SuiteScript are relative to the SuiteScripts folder in the file cabinet.
3. Check your import syntax. In SuiteScript 2.x, you should be using the define
function to import modules, like so:
javascript
define(['N/suiteAppInfo'], function(suiteAppInfo) {
// Your code here
});
4. If you're using SuiteScript 2.1 and trying to use import
and export
syntax, make sure that your script is set to ECMAScript 2018. You can do this by including the following comment at the top of your script:
javascript
/**
*@NApiVersion 2.1
*@NScriptType UserEventScript
*/
5. If you're using a tool like TypeScript or Babel to transpile your code, make sure that the transpiled code is correctly importing the module. You might need to adjust your configuration or the way you're writing your import statements to ensure that the transpiled code is correct.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
01/08/2025, 11:58 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.828348637
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.825238943
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.824323952
Celigo AI
01/08/2025, 11:58 AMGreg
01/08/2025, 11:58 AM