Hi, we are using SL2011. We recently discovered that sometimes while we run a Sales Journal report, it never came out of the printer due to some PC/network/printer bug. To keep a track of what got printed we want to create a Crystal report showing Sales Journal Ids and Date of Print against each ID, and then group them by Date Range.
Can you identify for us the data sources ie. database fields to create such a report. Thanks.
*This post is locked for comments
Try this:
SELECT DISTINCT(ShipRegisterID), MAX(LUpd_DateTime) AS LUpd_DateTime
FROM SOShipHeader WHERE
ShipRegisterID <> '' AND LUpd_Prog = '40690'
GROUP BY ShipRegisterID, LUpd_DateTime
ORDER BY ShipRegisterID
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156