Thanks
What specific fields in GL are you trying to show in FRx? We may able to
work around on this within FRx. Another approach is to use GP Smarltist to
extract the same information in Excel and use the 'Link to External
Worksheet' in FRx.
Cheers,
Dennis Araullo, MACS
Microsoft Certified Technology Specialist GP,CRM,AX
MCITP Installation and Configuration AX 2009
MCITP Database Administrator SQL 2008
Citrix Certified Enterprise Administrator
--
Victoria Yudin
Dynamics GP MVP
Want to use Crystal Reports with GP?
http://www.flex-solutions.com/gpreports.html
blog: http://www.victoriayudin.com
"Merle Schwickerath" <MerleSch...@discussions.microsoft.com> wrote in
message news:EBE9F198-E816-4499...@microsoft.com...
Merle
--
Victoria Yudin
Dynamics GP MVP
Want to use Crystal Reports with GP?
http://www.flex-solutions.com/gpreports.html
blog: http://www.victoriayudin.com
"Merle Schwickerath" <MerleSch...@discussions.microsoft.com> wrote in
message news:F15F783E-5EB8-4552...@microsoft.com...
select a.ACTNUMST [Account], sum(g.DEBITAMT-g.CRDTAMNT) Balance
from GL20000 g
inner join GL00105 a
on a.ACTINDX = g.ACTINDX
where g.trxdate <= getdate() --replace with date if desired
group by a.ACTNUMST
order by a.ACTNUMST
Not sure if it will work for what you need, but it may be a start. This
assumes that the prior year is closed for P&L accounts, if that's not the
case, you would need to add an additional restriction for g.trxdate.
--
Victoria Yudin
Dynamics GP MVP
Want to use Crystal Reports with GP?
http://www.flex-solutions.com/gpreports.html
blog: http://www.victoriayudin.com
"Merle Schwickerath" <MerleSch...@discussions.microsoft.com> wrote in
message news:94551856-6F60-45F5...@microsoft.com...
Here is another one. Replace Year and Month
select b.ACTNUMST,SUM(a.PERDBLNC) from GL10110 a
LEFT OUTER JOIN GL00105 b on a.ACTINDX = b.ACTINDX
where YEAR1 = 2014 and PERIODID < 8
GROUP BY b.ACTNUMST