Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
User Experience
Lawson Design Studio
Hide button on screen based on group/role
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Rich Cowie
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5255
People Online:
Visitors:
520
Members:
0
Total:
520
Online Now:
New Topics
Lawson S3 HR/Payroll/Benefits
Pay Rate History to Show All Positions
2/26/2025 3:34 PM
Does anyone know how to modify payratehistory.htm
Infor CloudSuite
How to build a Pre-Prod tenant
2/7/2025 1:28 AM
After we finished our implementation and ended our
Lawson S3 Procurement
Browser issue with RQC Shopping
1/28/2025 5:49 PM
Since the recent Chrome/Edge updates, our RQC shop
Lawson S3 Procurement
S3-Procurement New Company
1/22/2025 10:38 PM
My Accounting Department has created a new Company
S3 Customization/Development
JUSTIFIED RIGHT
1/15/2025 7:41 PM
Is there a way in Lawson COBOL to make a character
S3 Systems Administration
ADFS certificate - new cert
12/3/2024 9:38 PM
The certificates on the windows boxes expired and
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
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
1375
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
User Experience
Lawson Design Studio
Hide button on screen based on group/role
Please
login
to post a reply.
8 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Rudy
Basic Member
Posts: 5
7/8/2010 4:43 PM
Need some assistance. I have a button on the HR11 screen that will launch a webpage. This works fine. But, we are rolling out in a phased approach to 40+ offices, 1-2 at a time and the powers that be do not want anyone seeing the button until it is their turn to go live. We are talking about 2-4 people per branch. Using the hammer approach I was able to get the code working below but it requires me to add user IDs every time a new office goes live. This requires a lot of extra red tape going thru QA and production control not to mention the extra coding on 5 screens that we have the button on. I am looking for a way to put the users in a role or group and be able to authenticate them in that role or group, but can’t seem to find a way. If I use portalWnd.oUserProfile.getAttribute("???") for group or role then it brings back only one out of the several that they are in. So it is not a guarantee that I get the group that I would use for the button group/role. Questions: 1) is there any way to loop through all of their groups/roles to match a particular one. 2) Is there a better mousetrap than the one I am using below? Thanks, Rudy Code: function FORM_OnAfterDataInit() {var str1="UserID1,UserID2,UserID3,UserID3 "; var UserId=portalWnd.oUserProfile.getAttribute("id"); //gets logged in user ID //alert(portalWnd.oUserProfile.getAttribute("group")); //UserId="u3lxd"; var iOk=str1.indexOf(UserId); //searches for a string w/in a string if (iOk==-1) { var objButton = lawForm.getFormElement("push11"); objButton.value=""; //hides button on screen } }
David Williams
Veteran Member
Posts: 1127
7/8/2010 4:50 PM
Split
Can you add a Service to their Lawson Security "Manage Identies" (like ProductLine_REQUESTER) and do a quick look up to see if the user logged in has the value that indicates they should see the button?
John Henley
Posts: 3351
7/8/2010 4:59 PM
Split
What about their Portal Role?
Rudy
Basic Member
Posts: 5
7/8/2010 5:04 PM
Split
When I add the below code, i get a blank value. I went in to the manage identities and did not see anywhere to add anything to ProductLine_REQUESTER. var ValidUser=portalWnd.oUserProfile.getAttribute("ProductLine_REQUESTER"); alert(ValidUser);
Rudy
Basic Member
Posts: 5
7/8/2010 5:06 PM
Split
Also, do you have any idea where I can get a list of all of the elements that I can bring back using: portalWnd.oUserProfile.getAttribute("??????");
Deleted User
New Member
Posts: 0
7/8/2010 5:20 PM
Split
Hi Rudy, still struggling with this one huh? Do not try to add anything to the REQUESTER agent. That is predefined for use in RSS. The suggestion was to create a new agent similar to that and populate it. Not practical because you will have to maintain the values when it is already there in your groups. Did you try what I suggested previously of calling servlet/Profile and parsing the group attributes out of the XML returned?
Rudy
Basic Member
Posts: 5
7/8/2010 6:34 PM
Split
Did you try what I suggested previously of calling servlet/Profile and parsing the group attributes out of the XML returned? No. was unable to find any examples to get a start. Thanks.
Rudy
Basic Member
Posts: 5
7/13/2010 7:49 PM
Split
Finally got it to work by parsing out the XML data from the servlet/Profile? servlet as mentioned above by Gary. I am new to JS so the code could probably be a little tighter. function FORM_OnAfterDataInit() { var bOk=FindGroup(); if (bOk==false) { var objButton = lawForm.getFormElement("push11"); objButton.value=""; } } function FindGroup() { var sProdLine=portalWnd.oUserProfile.getAttribute("productline"); var bDisplay = false var sTarget_Group="myGroup" var sServer=""; var sDomain="test.local"; switch (sProdLine) { case "PROD9": sDomain="company.net"; break; case "QA9": sServer="qa-"; break; default: sServer="dev-"; } var sDME="http://"+sServer+"hrportal."+sDomain+"/servlet/Profile?"; var vDMEInfo = portalWnd.httpRequest(sDME); var oRecs = vDMEInfo.getElementsByTagName("ATTR"); //alert("length=" + oRecs.length); for (var i = 0; i < oRecs.length; i++) { if (oRecs
.getAttribute("value")==sTarget_Group) { bDisplay=true //alert(i+"--"+oRecs
.getAttribute("name")+"="+oRecs
.getAttribute("value")); } } return (bDisplay); }
David Williams
Veteran Member
Posts: 1127
7/14/2010 4:29 PM
Split
This actually met a need I had so I appreciate you figuring it out. I found that I had to revise your script to indicate the record number but otherwise it worked great. // if (oRecs[i].getAttribute("value")==sTarget_Group) Thanks
Please
login
to post a reply.