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 Portal
RD955
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
John Bonin
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5270
People Online:
Visitors:
122
Members:
0
Total:
122
Online Now:
New Topics
Lawson S3 Procurement
Tolerance Settings
3/31/2025 2:01 PM
I've been trying to set a tolerance for some t
Dealing with Lawson / Infor
Printing Solutions other than MHC
3/27/2025 1:00 PM
What are others using for printing solutions besid
Lawson S3 Procurement
Green check marks in Lawson 9.0.1
3/20/2025 4:55 PM
Hi, How to remove green check mark on items when o
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
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 Portal
RD955
Please
login
to post a reply.
6 Replies
0
Subscribed to this topic
14 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
L G
Advanced Member
Posts: 38
1/30/2008 3:46 PM
Hi 1)I would like to know if anyone knows of a program similar to RD955 in the new LSF 9.0 environment A lot of our EMSS bookmarks data are loaded using RD955 Basically we create programs that generate a CSV for all eligible employees under a specific task like Benefits Enrollment We identify the eligible employees and push them as a CSV output for RD955 to load into bookmark groups Now RD955 no longer exists So anyone has any idea how can we load the generated CSV to bookmark groups in RM 2) Also we created a custom program to mass delete users from bookmark groups Is it possible to mass delete users from a particular bookmark in RM 3) What is the replacement for SIRDIDGRP in RM in lSF9.0 Sorry if this is not the right subforum for asking this question Not sure where this should go?
John Henley
Posts: 3351
1/30/2008 5:46 PM
Split
Not sure what you mean by "A lot of our EMSS bookmarks data are loaded using RD955". RD955 didn't do anything with bookmarks, just adding users to groups. In LSF9, SIRDIDGRP has been replaced by storing Group membership within the LDAP repository. Not something you want to update from outside. You can ADD users to a group via an XML file and the loadusers utility, but I don't think you can remove them from a group. The only reasonable/supported way to remove/disable them is via ProcessFlow Integrator and the ResourceUpdate node.
L G
Advanced Member
Posts: 38
1/30/2008 6:36 PM
Split
Hi What I meant was that users are added to groups based on eligiblity criteria for certain functions like Benefits by generating a CSV for RD955 to process Then those users as part of groups) are added to Bookmarks for those functions / reponsiblities I was looking for a way to easily add or remove users to groups via commandline or a script If it is possible I could always create a script if I knew what command is used to remove a user from a group in effect removing him from the bookmark the reason we remove all users from a group and then repopulate the group is to remove ineligible employees who may still have bookmarks after the selection criterion has changed once a day or is there a way to automatically add and remove users to groups by selecting the logic in RM itself sometimes the logic is pretty tough which I am not sure RM logic if any supports
Greg Moeller
Veteran Member
Posts: 1498
3/14/2008 7:43 PM
Split
We are using an ldapmodify command to remove and add users to groups. It seems to work just fine.
printf "\tCreating code to delete the
group for: $CN\n"
printf "dn: cn=$CN,ou=resources,o=lwsnrmdata,o=lwsn,dc=domain\n" >> ${LDIF}
printf "changetype: modify\n" >> ${LDIF}
printf "delete: zzlwsnattrGroup\n" >> ${LDIF}
printf "zzlwsnattrGroup:
\n" >> ${LDIF}
printf "\n\n" >> ${LDIF}
printf "\tCreating code to assign the
group for: $CN\n\n"
printf "dn: cn=$CN,ou=resources,o=lwsnrmdata,o=lwsn,dc=domain\n" >> ${LDIF}
printf "changetype: modify\n" >> ${LDIF}
printf "add: zzlwsnattrGroup\n" >> ${LDIF}
printf "zzlwsnattrGroup:
\n" >> ${LDIF}
printf "\n\n" >> ${LDIF}
Then
ldapmodify -D cn=
-w
-h
-p 389 -v -c -f ${LDIF} >> ${LDIF}_log 2>&1
Feed in a list of user's to ${CN} and it works for us. We are using this to enable and disable the "New Hire" link for Benefit enrollment after the person has been hired for 30 days.
John Henley
Posts: 3351
3/14/2008 8:22 PM
Split
Greg, thanks for pointing out ldapmodify as an option; the only caveat is that you're basically going in thru thru back door, just like you would be if you update the Lawson database directly from SQL..
Greg Moeller
Veteran Member
Posts: 1498
3/14/2008 8:25 PM
Split
Yes, John and others, I realize that by doing this, we would not be supported on GSC calls, or things like that, but it does work and does what we need it to do. Not sure if we are setting ourselves up for future problems, though.
Kwane McNeal
Veteran Member
Posts: 479
7/11/2008 6:02 PM
Split
I actualy think Lalit was asking about the BookMark->Group mapping, not the RMUser->Group mapping....If that is the case, He could always do something in AddIns to load the data via LOGAN's LO14/LO15 programs
Kwane
Please
login
to post a reply.