NetSuite - CSV import status search
问题 I want to get job status information of CSV imports in NetSuite by using SuiteScript. for this I used search.create({ type: search.Type.JOB_STATUS, filters: null, columns: ['internalid'] }) But I think I am using wrong search. 回答1: You need the csv import ID, If you are using suitecript create your import var scriptTask = task.create({taskType: task.TaskType.CSV_IMPORT}); scriptTask.mappingId = 201; //Id for you saved import for example var file = file.load({id: fileId}); scriptTask