Link to home
Start Free TrialLog in
Avatar of Jules74
Jules74

asked on

Sage 50 Accounts Professional 2011 - automated reports

Hi folks,
I need to get a daily scheduled report of aged creditors (what we owe our suppliers and how overdue the payment is) to run in Sage 50 Accounts Professional 2011.
It doesn't matter how it runs as long as I can have it automatically scheduled and it can output to a file or email.

Optional ingredients:
1
We have SDO running on Sage so for example the following will output results in a browser:
http://localhost:5493/sdata/accounts50/SDO/-/customers
Presumably the correctly crafted query could pull up the supplier information we need.
2
Am ok with: scripts/VB.Net/Java (or C++ if nothing else)
3
Maybe task scheduler to run a script or executable?
4
Don't want to shell out for Sage SDK etc as it costs a bomb
5
Theoretically we should be able to set up an ODBC to the Sage data (haven't been able to have the ODBC driver show in the ODBC data sources yet)

All ideas gratefully received.

Cheers
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Please note than the ODBC driver is read only.
You can backup the whole Sage Account folder data with the MS Windows Scheduler

http://www.addictivetips.com/windows-tips/how-to-backup-and-restore-important-filesfolder-in-windows-7/
https://www.experts-exchange.com/questions/27605996/Sage-Accounts-2011-Automatic-Backup.html
Avatar of Jules74
Jules74

ASKER

Thanks leakim971 - I'm looking for a report from the software, rather than backing it up.
there's nothing in the 2011 version, you need to build your own software or use a third party tools or just upgrade to the 2012
Avatar of Jules74

ASKER

hmm - thanks. I'm looking at AutoIt - will post solution if I can work something out. I don't see anything in the 2012 version (or 2013 version) that supports automated reports.
ASKER CERTIFIED SOLUTION
Avatar of Bruce Denney
Bruce Denney
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jules74

ASKER

Thanks! Good idea! Will try that out (need to get Excel onto the Sage machine)
Avatar of Jules74

ASKER

Didn't manage to get Excel to pull in data - something to do with 64-bit Excel and 32-bit Sage ODBC connector not wanting to work together.

But using odbc query tool gave me enough of a foothold to browse the table headers. In case anyone else finds it useful here's an SQL query that gave me the info I was looking for:

SELECT ACCOUNT_REF, INV_REF, AGED_30, AGED_60, AGED_90, AGED_OLDER FROM AUDIT_HEADER WHERE TYPE=PI AND (AGED_30 > 0.00 OR AGED_60 > 0.00 OR AGED_90 > 0.00 OR AGED_OLDER > 0.00) ORDER BY (AGED_30+AGED_60+AGED_90+AGED_OLDER) DESC

Thanks for your help!
J
http://support.microsoft.com/kb/942976/en

C:\Users\Jules74>cd %systemdrive%\Windows\SysWoW64
C:\Windows\SysWOW64>Odbcad32.exe
Avatar of Jules74

ASKER

cheers leakim971 - I went through a few goes trying to add a user DSN with the 32-bit and 64-bit versions of odbcad32.exe but either way I couldn't get msqry32.exe (in Excel: Data->From Other Sources->From Microsoft Query) within Excel to read properly from the user DSN. The message was something along the lines of "driver mismatch - wrong architecture". I'll post the actual message when I get back to the office. msqry32.exe never seems to show the Sage system DSN, only a user DSN.
As I understand it, it is not possible to access the data with 64bit drivers, the only option is to use a 32 bit application with the 32 bit drivers.

LibreOffice is FREE and an obvious replacement for Excel 2010
 (You could un-install the 64 bit version of excel and reinstall the 32 bit version).
Avatar of Jules74

ASKER

Thanks very much Bruce. Confirmed that LibreOffice Base will pick up the data.