Discussions
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Missing Transaction Accounting Lines in JDBC and SuiteQL SuiteLet
Hello,
Edit and update: It looks like the cutoff date is somewhere in March 24/25, 2023, which is when the 2023.1 release of Netsuite came out. Is that possibly related?
I am facing a strange issue querying Transaction Accounting Lines through both the SuiteQL suitelet and through the JDBC driver. I am using the latest JDBC driver (8.10.170).
When I query
select count(*) from transactionaccountingline where lastmodifieddate > to_date('2023-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss')
To get the count of all transaction accounting lines since 2023-01-01, I get about 228K results.
When I query
select count(*) from transactionaccountingline where lastmodifieddate <= to_date('2023-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss')