RE: Opening Balance is not showing in Management Reporter after Year-end process
Hi Sarah,
Yes, this means you're not using the DataMart connector.
If you do have access to SQL Management Studio (or someone that has), can you please run the following query:
SELECT top 100 * FROM [TWO].[dbo].[GL20000]
where OPENYEAR = 2021
and SOURCDOC = 'BBF'
and PERIODID = 0
Replace the [TWO] database name by your company DB name and the OPENYEAR by the new FY.
If the books were closed properly, the current open year should show those entries, if there are none, it means something wasn't completed during the year-end process.
Also, please run this script to show which FY are currently historical and which ones are open:
select top 20 * from TWO.dbo.SY40101
Again, replace the TWO company name by your own company DB name.