Issue:
A customer has a problem that needs testing in their Sandbox company.
How can we tell if the Sandbox company has current data?
Resolution:
You can look at the transactions in the GL_Register table for recent transactions.
You can use the script below to see the most recent records created.
select top 20 Created_On as Created_Date,* from GL_Register order by Created_On desc
