Hello Community,
I am strugling with an issue in AX 2012 R3 CU8.
From one day to another, our management reporter stop issuing report correctly. I make it short, we found through the query below found on the internet an incoherence between GeneralJournalAccountEntry and GeneralJournalEntry (all created at the same time by a period closing in AX). We have 1035 lines in GeneralJournalAccountEntry refering to 2 GeneralJournalEntry RecId that doesn't exist ...
--transaction details with no associated transaction header information
select * from GeneralJournalAccountEntry with (nolock)
where GeneralJournalentry not in (select distinct RECID from GeneralJournalEntry with (nolock))
My question is simple (I am making some tests at the same time to validate this but your opinion could help) : can I simply and safely delete the 1035 lines from GeneralJournalAccountEntry ?
Many thanks for your help !
Nicolas