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:
BDell92
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5275
People Online:
Visitors:
453
Members:
0
Total:
453
Online Now:
New Topics
Lawson S3 Financials
Applying credits to open AP invoices
4/28/2025 1:26 PM
Hello, I am new to the Lawson system and after ru
Lawson S3 Financials
Lawson APIA
4/28/2025 1:22 PM
Has anybody recently installed Lawson's APIA m
Lawson S3 Procurement
Tolerance Settings
3/31/2025 2:01 PM
I've been trying to set a tolerance for some t
Dealing with Lawson / Infor
Printing Solutions other than MHC
3/27/2025 1:00 PM
What are others using for printing solutions besid
Lawson S3 Procurement
Green check marks in Lawson 9.0.1
3/20/2025 4:55 PM
Hi, How to remove green check mark on items when o
Lawson S3 HR/Payroll/Benefits
Pay Rate History to Show All Positions
2/26/2025 3:34 PM
Does anyone know how to modify payratehistory.htm
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
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.