Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
User Experience
Lawson Design Studio
AGS to WFWK.1
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Alanna
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5294
People Online:
Visitors:
384
Members:
0
Total:
384
Online Now:
New Topics
Lawson Portal
Lawson ESS customization
6/23/2025 10:28 AM
I want to add new links and customize the ESS (sel
S3 Security
Securing forms and programs that use Company Group
6/17/2025 5:41 PM
Is there a way to write a rule, that looks up a co
S3 Customization/Development
Self-Serve Customization and Modification of home page
6/17/2025 3:40 PM
Hi, I want to add new links and customize the E
S3 Customization/Development
Data / List view on Lawson Portal
5/21/2025 2:37 AM
Client is on S3 V10. All delivered and custom form
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
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
1377
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
User Experience
Lawson Design Studio
AGS to WFWK.1
Please
login
to post a reply.
10 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Shane Jones
Veteran Member
Posts: 460
4/2/2007 1:03 AM
Sample AGS for WFWK.1
Anyone have the format for an AGS call to WFWK.1 to trigger a flow? I am thinking I might be able to create a simple html page with a button that will kick off a flow when the button is clicked?
All I am going to do is create a page with a button that runs the AGS call to start the flow. It does not need to be associated with an employee or anything it just needs to start the flow - "payflow_v01"
Anyone know how to format the AGS?
Deleted User
New Member
Posts: 0
10/4/2007 2:06 PM
Split
Here is a snippet of perl code that shows the format:
my $agsparam = join "",'_TKN=', $token1, '&_PDL=', $pl, '&_EVT=', $agsevt,
'&FC=', $fctk1, '&SERVICE=', $service, '&WORK-TITLE=', $worktitle,
'&PRODUCT-LINE=',$apppl,'&_OUT=XML';
Shane Jones
Veteran Member
Posts: 460
10/5/2007 12:12 PM
Split
So....
Does anyone know how to string all of this together into an AGS?
John Henley
Posts: 3355
10/5/2007 4:17 PM
Split
Do you mean from Javascript in Design Studio?
Shane Jones
Veteran Member
Posts: 460
10/7/2007 6:38 PM
Split
Actually,
I would like to just create a simple HTML page with a button that would run the AGS when clicked??? Then I could include the simple html page on the lawson server and give the two associates a bookmark in t he bookmark manager that would open the html page....
Shane
Sreenivasa Komma
Basic Member
Posts: 19
10/8/2007 6:41 PM
Split
AGS Call to WKWK.1:
_PDL=&_TKN=WFWK.1&_EVT=ADD&_RTN=DATA&_LFN=ALL&_TDS=IGNORE&FC=Add&SERVICE=&WORK-TITLE=&PRODUCT-LINE=&_DELIM=%09&_OUT=TEXT&_EOT=TRUE
John Henley
Posts: 3355
10/8/2007 9:39 PM
Split
Actually that syntax is for calling from ProcessFlow. You would need to adapt the code a little (in particular the variable names) to be able to call it from a Web page. Would your .html page be running from within Lawson Portal / Design Studio, or outside of it? Reason I ask is that you can take some shortcuts if it's being run from Portal.
Deleted User
New Member
Posts: 0
4/24/2013 5:41 PM
Split
Does any one can provide to run from outside of Lawson
Robert Spurr
Veteran Member
Posts: 130
4/25/2013 2:23 PM
Split
Here is a sample trigger call made using WFWK:
var s = portalWnd.AGSPath + "?_PDL=" + strPDL +
"&_TKN=WFWK.1&_EVT=ADD&_RTN=DATA&_LFN=ALL&_TDS=IGNORE" +
"&FC=ADD&SERVICE=PO30E.1_R&WORK-TITLE=Tech Email Heat" +
"&CRITERION-1=" + pCompany +
"&VARIABLE-NAMEr0=COMPANY" +
"&VARIABLE-VALUEr0=" + pCompany +
"&VARIABLE-NAMEr1=PO" +
"&VARIABLE-VALUEr1=" + pPoNbr +
"&VARIABLE-NAMEr2=POCODE" +
"&VARIABLE-VALUEr2=" + pPoCode +
"&VARIABLE-NAMEr3=POREL" +
"&VARIABLE-VALUEr3=" + pPoRel +
"&VARIABLE-NAMEr4=RECEIVER" +
"&VARIABLE-VALUEr4=" + pReceiver +
"&_DELIM=%09&_OUT=XML&_EOT=TRUE";
portalWnd.httpRequest(s);
Shane Jones
Veteran Member
Posts: 460
5/24/2013 2:51 AM
Split
Anyone know if WFWK still works in V10?
John Henley
Posts: 3355
5/24/2013 2:55 PM
Split
No, you need to convert it to use the IPA / Landmark transaction servlet.
Please
login
to post a reply.