Marwan
07/23/2024, 10:52 PMhttps://.....<http://suitetalk.api.netsuite.com/services/rest/query/v1/suiteql?limit=2&offset=100000|suitetalk.api.netsuite.com/services/rest/query/v1/suiteql?limit=2&offset=100000>
Edgar Valdes
07/23/2024, 11:03 PMMarwan
07/23/2024, 11:35 PMWHERE transaction.recordtype IN ('vendorbill','vendorcredit','vendorpayment','check','creditmemo','customerdeposit','customerrefund','deposit','depositapplication','expensereport','inventoryadjustment','inventorytransfer','invoice','itemfulfillment','itemreceipt','journalentry','customerpayment','returnauthorization','salesorder','transferorder','vendorprepayment','vendorprepaymentapplication','vendorreturnauthorization')
Marwan
07/23/2024, 11:36 PMMarwan
07/23/2024, 11:37 PMtransaction
and transactionLine
and gets the important data out of it with simple filters like transaction.posting = 'T' AND transaction.voided = 'F'
Marwan
07/23/2024, 11:39 PMMarwan
07/23/2024, 11:40 PMOFFSET X ROWS FETCH NEXT Y ROWS ONLY
Edgar Valdes
07/23/2024, 11:53 PMMarwan
07/24/2024, 4:32 AM36522724
Jay Jetley
07/31/2024, 10:32 AMJay Jetley
07/31/2024, 10:34 AMUsing SuiteQL queries, you can return a maximum of 100,000 results. For more information, see query.runSuiteQLPaged(options).
Marwan
08/01/2024, 7:41 AMJay Jetley
08/01/2024, 8:04 AMJay Jetley
08/01/2024, 8:07 AMMarwan
08/01/2024, 8:09 AM.... WHERE transactionLine.uniquekey > 0 ORDER BY transactionLine.uniquekey
That's for the first query, then replace 0 with the last key you get, and repeat.