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:
Hitman
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5208
People Online:
Visitors:
371
Members:
0
Total:
371
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
User Experience
Lawson Portal
RD955
Please
login
to post a reply.
6 Replies
0
Subscribed to this topic
13 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: 3353
1/30/2008 5:46 PM
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
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
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: 3353
3/14/2008 8:22 PM
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
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
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.