Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Integration / Customization
S3 Customization/Development
Linking to a Lawson form from an HTML page
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Kezia West
Past 24 Hours:
0
Prev. 24 Hours:
1
Overall:
5246
People Online:
Visitors:
322
Members:
0
Total:
322
Online Now:
New Topics
Infor CloudSuite
How to build a Pre-Prod tenant
2/7/2025 1:28 AM
After we finished our implementation and ended our
Lawson S3 Procurement
Browser issue with RQC Shopping
1/28/2025 5:49 PM
Since the recent Chrome/Edge updates, our RQC shop
Lawson S3 Procurement
S3-Procurement New Company
1/22/2025 10:38 PM
My Accounting Department has created a new Company
S3 Customization/Development
JUSTIFIED RIGHT
1/15/2025 7:41 PM
Is there a way in Lawson COBOL to make a character
S3 Systems Administration
ADFS certificate - new cert
12/3/2024 9:38 PM
The certificates on the windows boxes expired and
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
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
1375
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
S3 Customization/Development
Linking to a Lawson form from an HTML page
Please
login
to post a reply.
8 Replies
0
Subscribed to this topic
17 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
pklupa
Basic Member
Posts: 5
12/12/2011 4:11 PM
Hi Everyone, I am building an HTML menu screen with links to several Employee Self Service screens. These links work OK. I am trying to add a link from the HTML screen directly to a Lawson form that I created. Does anyone know the format of the URL that I need to have in the link to cause the Lawson form to come up? Thanks!
Robert Spurr
Veteran Member
Posts: 130
12/12/2011 9:33 PM
Split
I'm not sure if this will be helpful but I've include some scripting were I call a custom form(s) function BUTTON_OnClick(id, row) { var sHK = ""; var vCompany = lawForm.getDataValue("RQH-COMPANY"); var vReqNumber = lawForm.getDataValue("RQH-REQ-NUMBER"); var vLength = vReqNumber.length; var vID = ""; var vForm = ""; var vWidth = 0; var vHeight = 0; if(id=="push7") { vForm = "EMERREQ "; vID ="XQ80.1_EMERREQ"; vWidth = 800; vHeight = 600; } else if (id=="push8") { vForm = "EMREVIEW "; vID ="XQ80.1_EMREVIEW"; vWidth = 800; vHeight = 525; }else if (id=="push9") { vForm = "SERVICE "; vID ="XQ80.1_SERVICE"; vWidth = 800; vHeight = 850; }else { vForm = "BUYERFINAL"; vID ="XQ80.1_BUYERFINAL"; vWidth = 850; vHeight = 725; } if (id != "push3" && id != "push4") { sHK = vCompany; if (7-vLength > 0) { for (var i=1; i<8-vLength; i++) { sHK = sHK + "0"; } } sHK = sHK + vReqNumber + vForm; var sURL = "/lawson/portal/?_TKN=XQ80.1&_ID=" + vID + "&_RSD-COMPANY="+ vCompany + "&_RSD-REQ-NUMBER=" + vReqNumber + "&_RSD_REQUEST_TYPE=" + vForm + "&_HK=" + sHK; window.open(sURL, "","toolbars=no,titlebar=no,resizable=yes,scrollbars=yes,menubar=no,width=" + vWidth + ",height=" + vHeight + ",modal=yes"); } return true; }
Karen Sheridan
Veteran Member
Posts: 142
12/13/2011 12:09 PM
Split
It should just be /lawson/xhrnet/
You might want to look at Manager.htm - it does this for several other Lawson ESS/MSS pages HTH, Karen
Greg Moeller
Veteran Member
Posts: 1498
12/13/2011 8:54 PM
Split
You could try something like:
http://PortalServer/lawso...PDL=LIVE&_TKN=HR11.1
Replacing LIVE with your product line and HR11.1 with your desired form. May need to log in again.
Greg Moeller
Veteran Member
Posts: 1498
12/13/2011 8:55 PM
Split
Let's try that again, shall we ?? something like [code]
http://PortalServer/lawso...PDL=LIVE&_TKN=HR11.1
[/code]
Greg Moeller
Veteran Member
Posts: 1498
12/13/2011 8:57 PM
Split
[code]PortalServer/lawson/portal/index.htm?_PDL=LIVE&_TKN=HR11.1 [/code] ?
Greg Moeller
Veteran Member
Posts: 1498
12/13/2011 8:58 PM
Split
Replace
&
with the ampersand symbol
pklupa
Basic Member
Posts: 5
12/21/2011 2:02 PM
Split
Thanks everyone for the input - I got tied up in an emergency here, so it will take me another day or two before I can try your solutions. I will let you know how I end up linking the Lawson forms. Thanks!!!
pklupa
Basic Member
Posts: 5
1/6/2012 6:40 PM
Split
Thanks again everyone for your help. I have this working now thanks to your input. The URL I have used is:
https://SERVERNAME/lawson...=WS01.1_NEW_ESS_PMK.
The ID=WS01.1_NEW_ESS_PMK is a link to a Design Studio modification of our custom WS01 screen. Thank you again everyone!!!
Please
login
to post a reply.