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
"Display Exec" html file creation???
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:
2
Overall:
5205
People Online:
Visitors:
332
Members:
0
Total:
332
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
"Display Exec" html file creation???
Please
login
to post a reply.
5 Replies
0
Subscribed to this topic
52 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Shane Jones
Veteran Member
Posts: 460
1/14/2007 9:54 PM
We have a personnel action that has a process flow connected to it for approvals. The process flow uses an HRAction node for approval and it does not display the correct information in the web inbasket. I know that I need to modify an HTML file for displaying the information and put the name of that file in the "Display Exec" box of the properties. I just want to display the field from the personnel action... Why do I have to set this up in more then one place... Does anyone know how to setup the web inbasket display using the html file?
Some notes:
THe personnel action is named "LUMPSUM"
The action is setup to change a numeric user field named "Lump Sum Merit Amt"
The process flow includes a variable named "lump2"
I want the web-inbasket display to show the value from the action "Lump Sum Merit Amt" or the variable "lump2". Either one should display what I need...
I tried to modify the "salchgdisp.htm" document but I keep getting errors that the database is secured when someone tries to pull up thier web inbasket with my modified document
This tells me that I have something wrong in my html document.
Thanks
Shane
John Henley
Posts: 3353
1/16/2007 6:57 PM
You're on the right track. The reason you have to do this set up in multiple places is that Lawson's ProcessFlow doesn't really interact very well with the Applications--in other words, there's no "context" of what a workunit really is--it could be from an Lawson application or even an outside application, so rather than build in hooks for every conceivable type of application that could create a workunit, Lawson leaves it up to the PF designer/implementer and just stores enough information with the work to make sense of what the workunit reflects. Same holds true for procurement--by default, you can't display the requisition information associated with the workunit except by looking up the requisition using the keys stored with the workunit.
To troubleshot the "database is secured", make sure the user who is testing really does have access to the underlying forms (PA52) and tables (PERSACTHST, EMPLOYEE, etc.). Quick way to test is to turn off security and have them try it. If that works, you know it's a matter of their security needing to be tweaked.
Shane Jones
Veteran Member
Posts: 460
1/16/2007 8:18 PM
How would I create this Display Exec file? Is it a simple modification? Could anyone tell me how to make the lump2 variable display in the web inbasket?
John Henley
Posts: 3353
1/17/2007 1:48 AM
If you're familiar with HTML & JavaScript, and Lawson AGS/DME calls, it's a matter of copying the disptemplate.htm or salchgdisp.htm. Since you're saving your "Lump Sum Merit Amt" as "lump2", you can basically just change the copy of salchgdisp.htm and use it as a starting point. You'd replace lblPercentChanged and m_PercentChanged with lblLumpSumAmt and m_LumpSumAmt. Change m_PercentChanged = GetVariable("Percent_Changed") to m_LumpSumAmt= GetVariable("lump2"). Remove the references to NewSalary, CurrentSalary, OriginalSalary. It's tedious (you have to understand a little about JavaScript...), but you should certainly be able to do it fairly easily.
prithwee
Basic Member
Posts: 20
3/17/2007 1:37 AM
John,
Maybe you can help me with the same issue. I want to use recsum.htm file but I am not using reqapproval service. i am using my own service and that has my own service variable names. My variable names are COMPANY and REQNUM.
What is the easiest way here? I want to display exactly what recsum.htm displays.
Thanks
Shane Jones
Veteran Member
Posts: 460
3/23/2007 1:33 AM
I have an idea... If you want to use the same display exec and if you are uncomfortable editing the html file you could do a simple ags call in your process flow to add the variable and value to WF22...
Also another option would be to open the html file in wordpad and search for the variable name and change it to the dame you want to use and then save it as a diferent file...
Good luck - my suggestion is probably not as good as what John will come up with but both of these you can probably do rather easily. My choice would be to do a find/replace in the html file first.
Please
login
to post a reply.