That's not quite so easy. Hopefully you have SQL available.
select GLA1.Account, GLDP1.* from GL_Account GLA1
inner join GL_DetailPosting GLDP1 on GLA1.AccountKey = GLDP1.AccountKey
where SourceJournal+'^'+JournalRegisterNo in
(select SourceJournal+'^'+JournalRegisterNo from
GL_Account GLA2 inner join GL_DetailPosting GLDP2 on GLA2.AccountKey = GLDP2.AccountKey
where GLA2.MainAccountCode = '20300')
------------------------------
Kevin Moyes
Technical Systems Analyst
Munjal White Consulting Co.
Toronto ON
------------------------------
Original Message:
Sent: 03-09-2021 16:39
From: Brett Zimmerman
Subject: How can I extract all the full entries from G/L for a particular account in a given time period?
Thanks, @Kevin Moyes, but won't that just give me the transactions/lines that only hit that specific G/L account? I basically want the full entries that hit the G/L when Purchases Clearing is in play. We need to see all the other accounts/data/info that's part of each entry when P/C is involved.
------------------------------
Brett Zimmerman
Net at Work
Greater Boston Area
------------------------------
Original Message:
Sent: 03-09-2021 16:11
From: Kevin Moyes
Subject: How can I extract all the full entries from G/L for a particular account in a given time period?
Excel query from GL_Account linked to GL_DetailPosting. Filter by account and date range.
(Or custom report to do the same thing).
------------------------------
Kevin Moyes
Technical Systems Analyst
Munjal White Consulting Co.
Toronto ON