Hi Bobby,
I have somewhat managed (although not 100% perfect) to link Project to GL. It works ok and I use it primarily to compare the overall (grand total) for each project for what is in the Project module versus what has landed in the GL. Have a try and let us know how you go. Hope it helps and of course you can bring in whatever columns you want from the below tables.
SELECT
T1.PROJID,
T1.TRANSID,
T1.AMOUNTMST,
T3.MAINACCOUNTID
FROM dbo.PROJTRANSPOSTING T1
LEFT JOIN dbo.DIMENSIONATTRIBUTEVALUECOMBINATION T2
ON T1.LEDGERDIMENSION = T2.RECID
LEFT JOIN dbo.MAINACCOUNT T3
ON T2.MAINACCOUNT = T3.RECID
LEFT JOIN dbo.PROJREVENUETRANS T4
ON T1.TransID = T4.TRANSID