Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Human Capital Management
Lawson S3 HR/Payroll/Benefits
Update HR11 User Fields from Portal?
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:
1
Prev. 24 Hours:
1
Overall:
5205
People Online:
Visitors:
274
Members:
0
Total:
274
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
Human Capital Management
Lawson S3 HR/Payroll/Benefits
Update HR11 User Fields from Portal?
Please
login
to post a reply.
9 Replies
0
Subscribed to this topic
68 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
phanna@ghs.org
Basic Member
Posts: 4
3/3/2006 7:16 PM
We need to allow employees to update a single user field on HR11 from Portal ESS. Can this be done?
Can we use Javascript to make an AGS call to update the user field?
If not, can we store the employee input on a file in some UNIX directory (by using Javascript) and later update via batch?
(I am a Javascript novice).
There is of course the Personnel Actions form in Portal, but this is available only to Managers.
We are using Lawson Env 8.0.2.9, Portal 3.0.9.1, on a UNIX IBM AIX 5.2 machine.
Thanks for any clues,
Paul
John Henley
Posts: 3353
3/3/2006 9:07 PM
In order to make AGS calls, you have to have a back-end form that does the work. Ironically, Lawson doesn't have one for the HR user fields. Check my article (see
https://www.danalytics.co...archive/2005-12.htm)
on using the Excel uploads for updating HR user fields, and you'll see an alternative to using HR11--creating your own back-end form (see my screen shot here: https://www.danalytics.com/guru/letter/archive/2005-12_files/addins6.gif)
You would then need to modify whatever the HTML pages in ESS on which you wanted to display, capture and update the user fields. As part of that process, I wrote a utility JavaScript module (i.e. 'update_user_fields.js') which does AGS calls against the custom form.
Hope that answers your question...
phanna@ghs.org
Basic Member
Posts: 4
3/6/2006 4:28 PM
John,
Thank you very much for your reply!
Some questions arise.
(1) Can one create a form (similar to your DA15.1) using Design Studio against HR11?
(No doubt you have more intricate methods.)
(2) Must the user enter key values? Or,
can the form allow entry of one user field value only, without requiring the user to specify key fields?
To be able to do that from ESS is basically what we need. Is it feasible?
Alex Tsekhansky
Veteran Member
Posts: 92
3/6/2006 6:20 PM
Hello, Paul!
I respectfully disagree with John on the inability to do it via AGS calls. If it is possible to do it via some form or a combination of forms (including form transfer, inquiry-first tasks etc.), it CAN be done via AGS calls, potentially more than one though. I have implemented things in the past (admittedly, using the ideas of others :-)) that modify data in Lawson using "indirect" calls (e.g. the ones with function pair codes, inquiry first, form transfers etc).
Moreover, if it can be done with Excel add-on in some way, you probably can do it with only 1 custom AGS call, that needs to be captured by a technique indicated in John's Excel add-on article (DEBUG switch on Portal works too).
John Henley
Posts: 3353
3/6/2006 7:16 PM
Alex, it's quite alright to disagree with me--that's what I'm here for!
BTW, I do agree that what Paul could be done via some AGS calls (which is how Excel ultimately does it). However, it would require a complicated AGS call (as well as a way [i.e. a DME call] to translate the field name to the field number). In the end, I think the COBOL form I offered as an alternative is a much more approachable solution. It can be called with either the field name OR number. And, since it's sitting on the back-end, it can be called either from AGS/Design Studio, ESS/MSS, and/or the Excel addins.
John Henley
Posts: 3353
3/6/2006 7:27 PM
Paul,
The technique I'm describing is a COBOL form on the application server that updates HRHISTORY. It can be called via AGS from Excel addins, as well as Design Studio, ESS/MSS, and Process Flow. One common misconception in the Lawson world is that Design Studio is the solution for everything...it can only be used to modify the Portal XML forms.
The user would only key the "data" value, the "key" (company/employee/fieldname) would be coded in the ESS Javascript AGS call that invokes the form.
phanna@ghs.org
Basic Member
Posts: 4
3/6/2006 9:23 PM
John,
Thanks for the information.
I have not been able to successfully code an AGS call from within a javascript.
I know that we must have the COBOL form (like you described) in place first.
But assuming we have such a form,
how would I obtain the user's employee ID,
and then format and invoke the AGS call in js?
If only I had one good example ...
Thank you for the help you've been so far.
Paul
John Henley
Posts: 3353
3/7/2006 3:07 AM
Here's an example. This particular function is called with a field name/value pair, and adds the user field. It then transfers control to a function called DspMsgDA15().
It helps if you understand the JavaScript syntax and browser object model, such as the "parent" object. Also remember that JavaScript is case-sensitive. It also helps if you understand how ESS is put together and that there are certain functions and objects that are available in ESS (such as AGSObject) that are callable from JavaScript. When ESS loads in the browser, a number of variables get set in the "parent" object in the browser. "prodline", "employee" and "company" are examples of those variables.
function UpdateUserFieldA(myFieldName, myFieldValue)
{
var object = new AGSObject (parent.prodline, "DA15.1")
object.rtn ="MESSAGE"
object.longNames = true
object.tds = false
object.event ="ADD"
object.field = "FC=Add"
+ "&HEU-EMP-APP=0"
+ "&HEU-COMPANY=" + parseFloat(parent.company)
+ "&HEU-EMPLOYEE=" + parseFloat(parent.employee)
+ "&HRU-FIELD-NAME=" + escape(myFieldName)
+ "&HEU-A-FIELD=" + escape(myFieldValue)
+ "&ADD-OVERWRITE-FLAG=Y"
object.func = "parent.DspMsgDA15()";
// object.debug = true;
showWaitAlert("Updating Employee information - Please Wait")
AGS(object, "bnreturn")
}
function DspMsgDA15()
{
if (lawheader.gmsgnbr == 000)
{
removeWaitAlert()
}
else
alert(self.lawheader.gmsg)
}
phanna@ghs.org
Basic Member
Posts: 4
3/7/2006 1:56 PM
John,
What can I say? but thank you very much for taking time to assist so generously.
You have been a tremendous help.
I have already discussed the various tips you offered, here and elsewhere on your website, with my coworkers and supervisor.
Thanks again,
Paul
DarrylS
New Member
Posts: 1
6/24/2009 4:39 PM
John,
I am working on something related to this thread...
I am creating a Self Service screen that updates HR11 user fields. I am trying to get AGS Javascript to work to do this. I modified you JS example above and I am trying to get the following to work:
//function UpdateUserFieldA(myFieldName, myFieldValue)
//{
var object = new AGSObject (authUser.prodline, "HR11.1")
object.rtn ="MESSAGE"
object.longNames = true
object.tds = false
//object.event ="ADD"
object.event ="CHANGE"
//object.index = "heuset2"
//object.key = "58" + "=" + "0" + "=" +
//escape(parseInt(authUser.company,10)) + "=" +
//escape(parseInt(authUser.employee,10))
//object.field = "FC=Add"
//object.field = "FC=A"
object.field = "FC=C"
+ "&HEU-FIELD-KEY=58"
+ "&HEU-EMP-APP=0"
+ "&HEU-COMPANY=" + parseFloat(authUser.company)
+ "&HEU-EMPLOYEE=" + parseFloat(authUser.employee)
//+ "&HRU-FIELD-NAME=" + escape(myFieldName)
//+ "&HEU-D-FIELD=" + escape(myFieldValue)
+ "&HRU-FIELD-NAME=UF-EMP-SMKR-CODE"
+ "&HEU-A-FIELD=" + escape(updateValue) //Y or N
+ "&ADD-OVERWRITE-FLAG=Y"
//+ "&XMIT-HREMP-BLOCK=1000000000"
//+ "&XMIT-REQDED=1"
+ "&EFFECT-DATE=" + formjsDate(fmttoday)
object.func = "parent.DspMsgHR11()";
//object.func = "parent.DisplayMessage()";
object.debug = true;
showWaitAlert("Updating Employee information - Please Wait")
AGS(object, "jsreturn")
//}
Any recommendations?
Thanks,
Darryl
Please
login
to post a reply.