Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Infor / Lawson Platforms
S3 Security
LSF9 security by process level AND security location - is it possible
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Lauren Beeker
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5222
People Online:
Visitors:
42
Members:
0
Total:
42
Online Now:
New Topics
Lawson Portal
Need to limit available values in Manager Self-Service based on Action
4/16/2026 1:47 PM
Hello, Our managers have the ability in M
Lawson Portal
Lawson HR170 Jobs Index
3/30/2026 7:35 PM
Hi All, I am new in my role. The organization h
IPA/ProcessFlow
IPA Question - Filtering Employees by XRef Cost Center Across Person and HR Modules
3/2/2026 4:29 PM
Hello Everyone, I am building an IPA process in
Lawson S3 Financials
Lawson S3 to SAP S/4 Hana Migration
2/12/2026 8:54 PM
Can anyone recommend a consulting company who has
Lawson Add-Ins for Microsoft Office
Missing Multi-Stream Upload Option
7/12/2023 11:09 PM
Our IS department has made the server configuratio
Lawson S3 HR/Payroll/Benefits
Secure 2.0
12/8/2025 9:06 PM
Has anyone using S3 V10 for Benefits been able to
Lawson Add-Ins for Microsoft Office
More.... ic81.2
12/5/2025 10:51 PM
We build our PAR's with MS Addins using IC81 and o
Lawson Add-Ins for Microsoft Office
Deleting an Orphan Time Record with MS Add-ins
12/13/2025 7:26 PM
I have discovered an Orphan Time Record when dumpi
Lawson Landmark
Configuration Console - UserField
7/24/2019 6:05 PM
I have a userfield called "ContactCenter"&nb
Lawson Add-Ins for Microsoft Office
Uploads
11/20/2025 3:32 AM
The Next button has stopped functioning on the upl
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1377
Roger French
1315
mark.cook
1244
Chris Martin
825
Forums
Filtered Topics
Unanswered
Unresolved
Active Topics
Most Liked
Most Replies
Search Forums
Advanced Search
Prev
Next
Forums
Infor / Lawson Platforms
S3 Security
LSF9 security by process level AND security location - is it possible
Please
login
to post a reply.
1 Replies
0
Subscribed to this topic
18 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
RachelM
Basic Member
Posts: 27
10/22/2010 6:57 PM
We have been able to secure LSF9 using the element groups using either process-level or sec-location but not both; roughly what we're looking to do is ((process-level = 'X' and sec-location = 'Y') OR (process-level = 'Z')). Is that even possible using element groups? Thanks.
Jimmy Chiu
Veteran Member
Posts: 641
New Poster
Congrats on posting!
10/25/2010 2:47 PM
Split
Yes, use the builtin PROCLEVEL + HREMP element groups.
for example:
Define HREMP element group (SEC_LOCATION 9999999999 is open access by default):
if(lztrim(SEC_LEVEL)=='9'&&(lztrim(SEC_LOCATION)=='9999999999'||lztrim(SEC_LOCATION)=='X')&&SystemCode=='HR')
'I,'
else
'NO_ACCESS,'
PROCLEVEL: (note: this calls to the user profile's 'CompanyControl'-put in the company you want the user to have access, and 'ProcesslevelControl', where you can fill in "process-level X and Z as multi-variables)
if(user.attributeContains('CompanyControl',lztrim(COMPANY))&&user.attributeContains('ProcessLevelControl',PROCESS_LEVEL)&&SystemCode=='HR')
'I,'
else
'NO_ACCESS,'
EMPLOYEE:
if(user.attributeContains('CompanyControl',lztrim(COMPANY))&&user.attributeContains('ProcessLevelControl',PROCESS_LEVEL)&&SystemCode=='HR')
'I,'
else
'NO_ACCESS,'
HR11:
if(user.attributeContains('CompanyControl',lztrim(COMPANY))&&user.attributeContains('ProcessLevelControl',PROCESS_LEVEL)&&SystemCode=='HR')
'I,'
else
'NO_ACCESS,'
There is a bug with this however, user will need to drill and do an inquiry on an employee first before NEXT/PREVIOUS would work. I have a LIS open with lawson on this.
Please
login
to post a reply.