Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Performance Management
Lawson Business Intelligence/Reporting/Crystal
Query based on date
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Starr
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5327
People Online:
Visitors:
366
Members:
0
Total:
366
Online Now:
New Topics
Lawson Add-Ins for Microsoft Office
Lawson Add-in
9/30/2025 6:51 PM
I am looking for a Lawson Add-ins query to add new
Lawson S3 Procurement
Anyone getting PO 0000 not found for company error in PO23?
9/30/2025 2:45 AM
Anyone getting PO 0000 not found for company error
Lawson Add-Ins for Microsoft Office
PO20 - Cancel PO via Add-in
9/25/2025 8:03 PM
Is it possible to cancel PO's using add-ins? I
S3 Systems Administration
S3 Payroll - PayStubs
9/18/2025 6:58 PM
Looking for a reliable solution to streamline the
S3 Systems Administration
Quick Access report
8/25/2025 7:17 PM
Looking for a good way to see who has access Lawso
S3 Customization/Development
LP01 hiding a PTO plan from the list
8/13/2025 4:44 PM
Hi all. is there a way to hide a specific PTO&n
Lawson Business Intelligence/Reporting/Crystal
GLTrans - PO Line/MAInvdtl
8/6/2025 6:13 PM
Hello, we have an existing tabular model for fina
IPA/ProcessFlow
Retrieving GUID from InforOS
7/25/2025 2:22 AM
Hello everyone, I was wondering if there is a way
IPA/ProcessFlow
IPA for forwarding cost messages (MA64/MA66.3)
7/23/2025 6:07 PM
When a buyer has an invoice cost message where the
Lawson Portal
Lawson ESS customization
6/23/2025 10:28 AM
I want to add new links and customize the ESS (sel
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3293
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1377
Roger French
1315
mark.cook
1244
Forums
Filtered Topics
Unanswered
Unresolved
Announcements
Active Topics
Most Liked
Most Replies
Search Forums
Search
Advanced Search
Topics
Posts
Prev
Next
Forums
Performance Management
Lawson Business Intelligence/Reporting/Crystal
Query based on date
Please
login
to post a reply.
8 Replies
0
Subscribed to this topic
22 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
JonA
Veteran Member
Posts: 1163
8/16/2010 7:01 PM
Can I create a query that will pull data based on a date calculation? I want to pull monthly purchase order information but only for 1 year back from the current date. So I can schedule the report to run at the end of each month and not have to change the date range every time. Something like
- 365.
FireGeek21
Veteran Member
Posts: 84
8/16/2010 7:14 PM
Split
In the Report -> Selection Formulas type:
{PurchaseOrderTable.PurchaseOrderDate} in CurrentDate-365 to CurrentDate
Arvin Ojales
Advanced Member
Posts: 24
8/16/2010 7:23 PM
Split
Are you using ODBC connection? If using ODBC, you can add something like this to the WHERE clause of your select statement:
WHERE PO_DATE > SYSDATE - 365.
Arvin Ojales
Char
Veteran Member
Posts: 62
8/16/2010 7:42 PM
Split
Depending on how you run your reports (if you use LBI or Enterprise for example where there are historical instances) CurrentDate and DataDate can produce very different results. I'd generally recommend using datadate and the record selection would be {PurchaseOrderTable.PurchaseOrderDate} in Date(year(datadate)-1, month(datadate), day(datadate)) to DataDate - this will also assure correct results for leap year
FireGeek21
Veteran Member
Posts: 84
8/16/2010 7:49 PM
Split
Char,
Please explain the difference between CurrentDate and DataDate.
Thank you!
Char
Veteran Member
Posts: 62
8/16/2010 8:01 PM
Split
DataDate is the date the query executed against the database whereas CurrentDate is the date you're looking at the report. Let's say for Example that you have a formula that says "if {table.field} = currentdate -1 then {table.amount}" and you run the report on Monday thereby creating a historical instance. If you go and look at that historical instance on Friday then the formula will try to display data for Thursday since it's the day before Friday and there will be none since you ran the report on Monday and you'll see 0. If the formula had used DataDate then the numbers stay consistent over time because you're always looking at that fixed point in time that is the date the query executed. This same type of issue can arise when you use certain functions such as LastFullMonth because they are based internally on the currentdate rather than than the datadate. I hope that's clear......
FireGeek21
Veteran Member
Posts: 84
8/16/2010 8:05 PM
Split
THANK YOU CHAR!!!
Very clear explanation. Guess there are some reports I need to rewrite!
JonA
Veteran Member
Posts: 1163
8/17/2010 2:55 PM
Split
I'm connecting via OLE DB. It looks like the solution is found after the query, within the report itself, letting Crystal do the work?
JonA
Veteran Member
Posts: 1163
8/19/2010 3:32 PM
Split
Thanks Char! Your formula worked beautifully!
Please
login
to post a reply.