Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Integration / Customization
IPA/ProcessFlow
Result Variables for a User Action
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Raju
Past 24 Hours:
0
Prev. 24 Hours:
1
Overall:
5205
People Online:
Visitors:
160
Members:
0
Total:
160
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 Smart Office
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor CloudSuite
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:39 PM
Hi, I need help with an error on syteline while us
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
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
1369
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
Integration / Customization
IPA/ProcessFlow
Result Variables for a User Action
Please
login
to post a reply.
13 Replies
0
Subscribed to this topic
52 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
ajn
Basic Member
Posts: 13
4/25/2013 12:35 AM
I have a flow that uses a User Action, does some processing then loops back to the User Action. The flow can go back to this same user action up to four times. The User Action contains a variable for the user that the “request for approval” will be sent to along with a variable for the next level approver if the node times out. The first thing out of the flow I am trying to determine is which of the two users made the approval. There are variables that come out of the user action, one of which is “users” which appears to be an array. The first time through the node the “users” variable is populated with the value of the person that approved the action whether it was the original user or the timed out user. However from here on out the variable is never updated on the subsequent passes. I have captured data from the user action testing to see if the “users” array contains more than one value using .length and I have used .join to capture all elements of the array. I have found that the value in the array never changes and only contains one value, the value of the person who made the first approval. I know I could write a query to determine which user made the approval but I was hoping I could capture this information from the node in the process flow. Any ideas or solutions others have come up with would be appreciated.
TBonney
Veteran Member
Posts: 281
4/25/2013 11:36 AM
WFMETRICS is the table you want.
I have a similar query to validate actions taken on requisition approvals. WFMETRICS.TASK will tell you the task on which the action was taken, WFMETRICS.WF_RM_ID will tell you the person who took the action and WFMETRICS.OPERATION will tell you the action they took.
Just let me know if you want me to send you the full SQL query by email.
ajn
Basic Member
Posts: 13
4/25/2013 4:42 PM
Thanks TBonney for your quick response. I have the query built, thanks for the details on the tables and fields. For now I will use the query but I was hoping to pull the value from the flow and avoid using a query.
Terry P
Veteran Member
Posts: 234
4/25/2013 6:24 PM
Why the aversion to putting a query inside the Process Flow? Are we missing something here? Queries are about the easiest thing to do in a Process Flow.
ajn
Basic Member
Posts: 13
4/26/2013 12:47 AM
I am not opposed to using queries but it seems like the answer I need was created in the PF and then written to the table and now I have to use a query to go outside the PF to get the answer and bring it back in. Not a big deal, the query works great and the flow is doing what I want so I am happy.
Terry P
Veteran Member
Posts: 234
4/26/2013 3:00 PM
I re-read what you posted and I think I "may" know what is happening. What if you create the variable as a global variable in the START node. Then update it as normal. I recall something about variables losing their values in between User Actions. That might solve it.
ajn
Basic Member
Posts: 13
4/26/2013 4:37 PM
Hi Terry
I found the below information in one of the Lawson help guides. It describes the variables that come out of the UA, in particular I was trying to look at the _users variable which is an array. I did set up several variables in the Start node and would capture the information as it came out of the UA. The first time through the UA node it would capture the approver name but I found as the flow looped back through the node again and again, the array never grew to more than one element and the value never changed after the first pass. For example if "A" approved the first time and "B" approved the second time the _users variable still contained "A" as the value. If I let the node time out and reassign to "B" on the first pass then B would always be the value in the _users variable even if “C” approved on a subsequent pass. I am pretty happy with the results I am getting using the SQL query so this is no longer a pressing issue but something that might be useful down the road.
Variables for accessing data about actions taken by users
The variables shown in the following table are available for sending and receiving information about users' actions after they have taken them.
Variable Description
NodeID_users Contains users who took action on the specified node.
NodeID_actions Contains actions taken on the specified node.
NodeID_reasons Contains reasons selected by users who took action on the
specified node.
NodeID_messages Contains messages sent with the specified node
Lynne
Veteran Member
Posts: 122
6/25/2013 4:35 PM
I am having this same problem with our req approval that was written by a Lawson consultant. She used the _users variable on every UA node (of which there are many). I am just finding out that the _users does not change after the first person takes action. This really seems like a bug to me. I have one now where several users have tried to reject it, but it still thinks it's the first user. The problem for me in doing the query on WFMETRICS is that there are numerous records with 'Reject' as the task. The days they did it are the same too. Does anyone know what the ActivityID variable is called on the UA? That seems to change with each UA taken. If I could select based on that, I would be sure to have the correct user.
David Williams
Veteran Member
Posts: 1127
6/25/2013 4:50 PM
What information are you trying to retrieve? The last user who rejected? That would be the last "reject" record in your DME call so you could run your query and then use an Assign node right after the query ran to get the information.
Lynne
Veteran Member
Posts: 122
6/25/2013 5:19 PM
Yes, I am trying to get the last user that rejected it. If I run a standalone query to test this, they aren't sorted in chronological order. So, I need a way to know that the one I am looking for is the last one.
Robert Spurr
Veteran Member
Posts: 130
6/25/2013 5:48 PM
I do something similar to find an approval. Mine is a little easier because I allows know the filter to apply but in your case to accomplish what you need I would capture and store the ID's after each action and apply as a filter in your lookup. This means dynamically creating the Query string (Build and store as a variable). The net affect is that you filter out previous actions leaving only the action you want to see. There is one issue and that is if the same person can act on this node multiple times in which case this will probably not work. Just a thought
David Williams
Veteran Member
Posts: 1127
6/25/2013 5:52 PM
Check the index that you're using. I've always gotten this type of query to work in the past for the last approver. Are you sending the UserAction to more than one user at a time? I haven't tried it in that case.
Lynne
Veteran Member
Posts: 122
6/25/2013 6:29 PM
Thanks, David. I found an index that is sorted by date/time, so it looks like that will work. Yes, we do send the UAs to more than one user at a time. I don't think that will cause a problem here, but I will test it.
Thanks also, Robert, for responding. We do have the same user trying an action repeatedly time and time again due to the fact that they forget to enter a message. If you know of a way to have a pop up box telling them they didn't enter a message, that would be terrific. It sends them an email after they've gone through the process which is not user friendly at all.
ajn
Basic Member
Posts: 13
6/26/2013 12:51 PM
Lynne, what I ended up doing is running a query (I use the table WFMETSUM) right after the UA, I sort desc by END_DATE then END_TIME and I select the first result so I have the most current user for the UA. I think that is what you are saying you are going to do but I wanted to let you know it has been working for me.
Please
login
to post a reply.