Hi,
is there any way to achieve this in Business Reporter?
SELECT MAX(result_seq_no)
We run a job several times each month, generating values for our projects. Each time, the results are logged it creates a new result_seq_no., I only want to fetch the highest (newest) sequence for my projects into my Business Reporter report.
Eks data in IFS Cloud:
Project | result_seq_no | Values |
---|---|---|
A | 1 | 1 |
A | 2 | 2 |
B | 3 | 1 |
A | 4 | 5 |
B | 5 | 3 |
When fetching to Business Reporter, I want this:
Project | result_seq_no | Values |
---|---|---|
A | 4 | 5 |
B | 5 | 3 |
Is this possible, or do I need to set this in the Information Source?