Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Performance Management
Smart Notification
Dynamic User Filtering of SN on Dashboard?
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Hitman
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5208
People Online:
Visitors:
610
Members:
0
Total:
610
Online Now:
New Topics
Lawson S3 HR/Payroll/Benefits
Post Tax Benefit Plan Table
11/14/2024 9:16 PM
Hi, totally new to Laswon. I have a repor
Lawson S3 Procurement
ED501 Error: Map 850 not supported by /law/c15vda/lawson/test10/edi/bin/laws_out_91
11/12/2024 3:47 PM
Tried runnning ED501 and getting the atathced erro
Lawson S3 HR/Payroll/Benefits
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor ERP (Syteline)
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:24 PM
Hi, I need help with an error on syteline while us
Dealing with Lawson / Infor
Implementing Lawson v10 with Cerner Surginet, Case Cart Picking, and Quick Adds for the OR
10/29/2024 4:20 PM
Hi Everyone, I am wondering if there is any org
Lawson S3 HR/Payroll/Benefits
Canada Tax Calculation (Federal and Provincial) Issue
10/23/2024 5:00 AM
Initially, we had problem with CPP2 calculation is
Lawson S3 HR/Payroll/Benefits
CA Section 125 401k Plan
10/22/2024 10:13 PM
Does anyone have any recommendations on how to fac
S3 Systems Administration
Running AC120 deleted records from ACMASTER table
10/22/2024 3:40 PM
We recently ran the AC120 as normal and somehow it
Lawson S3 Procurement
RQ13 Approval Info
10/17/2024 2:12 PM
When a Requisition is approved on RQ13, what table
S3 Customization/Development
Read and Write CSV file COBOL
10/9/2024 2:53 PM
Does anyone have a quik example of a program that
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3291
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1372
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
Smart Notification
Dynamic User Filtering of SN on Dashboard?
Please
login
to post a reply.
5 Replies
0
Subscribed to this topic
14 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
George Graham
Veteran Member
Posts: 201
3/2/2011 3:17 PM
I am unfamiliar with any way to accomplish this - and I've communicated that I don't believe we can do this - but thought I would ping the gurus to validate.
Have a SN on a dashboard - and can successfully filter this based upon the user that is logged in. But by default we will show all items.
Assume we have a SN that has a column like Process Level - the desire is to somehow allow the user to put in a value to filter out that PL.
I'm not aware of any way to do this....other than create a PDV and they would have to go change that and then go back to the dashboard so that it refreshes....
Thoughts?
Matthew Nye
Veteran Member
Posts: 514
3/2/2011 3:31 PM
There are several ways to do this, it all depends on how flashy you want to be. Easiest way is to just do a Parent-Child notification, the SN guide covers this so I wont go into detail except to say that the parent note has a link on the field you want to filter on. This link is defined in your Infoset and points to your Child note. Using the parameterization of the child notification (see UG) it passes the filter value. you can either replace the parent note with the child in the module or use the UpdateModule javascript function provided in FS to update a different module with the child note. The second method requires you embed t he javascript call in the link defined in your infoset.
The cooler way to handle this requires you be a bit of a coder. Using JavaScript or better yet AJAX, you can consume the HTML table that is rendered in smartnotes, create a new HTML table, hide the old one and add filter controls. This can all be done without having to modify LBI code and even can be done without having to deploy any files (although if you want to be efficient you probably would want to create some script files based on your AJAX framework but inline AJAX works just the same).
Ive done this im several cases and it really allows you to punch up the LBI interface which has slowly grown stale since its release in 2003 (FS and SN anyway).
hth
Matt
mark.cook
Veteran Member
Posts: 444
3/2/2011 3:42 PM
I am not sure I totally understand your question, but what I hear is you want a smartnote that show all data then when you click you on the process level, you see filtered data for that process level?
If that is a correct assumption, have you tried using the root cause analysis feature to link the two results together?
The example I have built is GM related with all data for an employee including all dates for labor cost transfers needing approval. I then click a link (date value) that takes me to a second smart note that shows me only the detail lines associated with that date value. Once reviewed, I then can click another link to release and process the transaction (GM10.2)
That doesn't take into account anyone entering parameters as I don't know how to accomplish that piece.
Matthew Nye
Veteran Member
Posts: 514
3/2/2011 3:57 PM
mark brings up a good point. I kinda glossed over the entering-of-a-filter-value. Root Cause (what I called Parent-Child) is easiest to set up if you have values that you are displaying on the first level notification. If you require free text entry for your filter value, its still possible but youre just going to have to become comfortable with client side scripting (JavaScript or an AJAX framework). With this you can add a text input box on your 1st level Notification template and when the filter link is click, dynamically build and call the link to your 2nd level notification plugging in the value from the input box for the filter.
George Graham
Veteran Member
Posts: 201
3/2/2011 3:58 PM
Would **LOVE** to be able to use the AJAX option - but can't here. Even thought I could handle this even through just ASP - but not an option as well...
The parent/child might be an option....It's always looked pretty straight forward but never had the need to do one. Thanks for the suggestion.
Since you seem aware of this I'm going to tangle another thread in here. When you display a SN on a dahsboard as the content in a module there is some blank space between the module title and where the note starts (I've even tried just plain text - same issue). I've tried using a template that sets the top border to 0 but that does not help. Just trying to manage the space as effectively as possible.
Matthew Nye
Veteran Member
Posts: 514
3/2/2011 4:15 PM
tsk tsk tsk, one topic per thread. but ok....
margin-top=-10 in the body css class or inline style property. play with the value to get what you want.
Why cant you use AJAX? Its as [non] obtrusive as adding custom HTML to your templates and not like ASP which requires server side config. Might want to see if you can rock the boat on that one as it will really allow you to get the most out of your investment.
Please
login
to post a reply.