Need Help with Bulk Insert Using JavaScript in SQL Mode

I solved the problem!
Not using SQL mode, Use GUI mode.

{{ 
    TableFTLMatch.changesetArray.map(item => {
    return {
      ...item,
      "InsPayId": TableSelectIc.selectedRow.InsPayID,
      "EobMethod" : InputReconcilingEobMethod.value,
      "EobDate" : InputReconcilingEobDate.formattedValue,
      "FtlDt" : now.value
    };
  })
}}
1 Like