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
Lawson Landmark
New Action Request
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Zac Shields
Past 24 Hours:
0
Prev. 24 Hours:
1
Overall:
5210
People Online:
Visitors:
313
Members:
0
Total:
313
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
Infor / Lawson Platforms
Lawson Landmark
New Action Request
Please
login
to post a reply.
5 Replies
3
Subscribed to this topic
32 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Srini Rao
Veteran Member
Posts: 149
5/31/2016 10:56 AM
Hello , How do I create a new action request on employee business class.
Woozy
Veteran Member
Posts: 709
5/31/2016 1:38 PM
Hi Srini Rao,
Assuming you are on LMRK10+ and TM10+, and you have security access to the Application Configuration Console:
- Log in to Rich Client
- go to (Rich Client) Start >> Configure >> Application
- Select "Business Classes" and click the "new" button in the panel header
- Select the "Action Request" radio button for a completely new action (or Action Override or Action Extension if you just want to modify and existing simple action - see the documentation for details)
- Select the Employee business class and click OK
- Fill out the form with the required information and select the parameter fields.
- If you wish, click the next button (right arrow in the panel header) to select the roles that should have access to this action
This will create the action request itself.
If you need to muck around with the related Action Request Form, take the following steps:
- Return to the Config Console main menu
- Expand the "Business Classes" section and select "Employee"
- Click the "New" button
- Select the "Form" radio button
- Select the Employee business class (it should already be selected)
- select the form named {your_action_name}_implicit_action_form
- Edit the form as required.
Please note that the custom action request functionality is pretty limited. Generally, you really can only manipulate the UI (user interface) functionality and very limited BL (business logic). If you are hoping to do something complex, it will be very difficult if not impossible. If you need to do anything remotely complicated, you will have to manipulate the Action Request and/or Form using LPL (Landmark Pattern Language) which is not intuitive, doesn't provide much useful feedback other than "Oops, that's not right", and is not documented in any useful way. Be prepared to spend many hours mucking around trying to make it work.
That said, it is possible to do some pretty impressive things - it just takes time to figure it all out.
Good Luck!
Kelly
Srini Rao
Veteran Member
Posts: 149
5/31/2016 1:54 PM
Morning Kelly, Thanks for detailed response.
We are working on the custom interface , HR wants to extract the employee record in certain format when they trigger a action or right click and select a action example "export to external system". I created a process flow to extract the data but i'm not sure how I attach the flow to a action. They only exports one employee at a time.
Yes we are on 10+
Woozy
Veteran Member
Posts: 709
5/31/2016 2:26 PM
Within the ActionRequest, you have to select the ProcessFlowService. You can create a custom service (Start>>Applications>>ProcessServerAdministrator>>Configuration>>ServiceDefinitions) and associate that service with your custom flow and associate your action with the custom service.
Within the flow, you can then retrieve the action parameters by querying the Employee business class using action "Find{YourActionName}" (returns only the fields populated in the action) or "FindMerged{YourActionName}" (returns the values from the action merged with the non-modified values from the business class). You won't find those actions listed in the builder, but they will still work.
Gok87
Advanced Member
Posts: 25
7/30/2016 2:56 PM
Hi Kelly / Srini,
Is there a way that particular action triggers itself when there is a change made to a specific field. for example i want HR to be notified when someone changes a passport entry.
Is that possible ?
i dont want an user to actually trigger it.
Thanks,
Gokulkumar.
Woozy
Veteran Member
Posts: 709
8/1/2016 2:38 PM
Hi Gokulkumar,
It is not possible to trigger an action based only on a field change. You have two options via the ActionRequest route: First, you can create a new action (maybe called Update Passport Info or something) and related service that triggers a custom flow to send notification, and then remove the Passport fields from all other action forms where they can be altered. This is the best option.
The other possibility (which will likely miss some updates) would be to modify all the action flows that touch that business class and add a new section to compare the "new" passport values to the "current" passport values, and then send a notification if they are different. It would be very challenging to make this work consistently and completely.
One other option - this is probably better that the two above - would be to create a scheduled flow to compare Passport values against value that is stored somewhere (maybe a UserField?). If they are different, add the employee to the notification and update the UserField. You could even create a Condition UserField that would identify records where the stored value doesn't match the "live" value for ease of filtering.
Good Luck!
Kelly
Please
login
to post a reply.