Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
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')