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
AGS call via HTML
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
John Bonin
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5270
People Online:
Visitors:
373
Members:
0
Total:
373
Online Now:
New Topics
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
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
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
AGS call via HTML
Please
login
to post a reply.
7 Replies
0
Subscribed to this topic
17 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
ssgujar
New Member
Posts: 0
1/19/2007 9:36 PM
Hi,
I'm working on a custom HTML page which extracts Invoices to be released for a Vendor Class based on user's login info. I get as far as DME query displaying all the unreleased Invoices. Upon selecting the desired Invoice, the following AGS call gets created but doesn't post.
function AGSCall(vAuthCode, vVendor, vInvoice)
{
var o = new ActiveXObject("Microsoft.XMLHTTP");
var s = "http://Servername:port/servlet/Router/Transaction/Erp?_PDL=PDLname"
+ "&_TKN=AP26.1&_LFN=ALL&_EVT=CHG&_RTN=DATA&_TDS=IGNORE&_OUT=XML&FC=C"
+ "&API-COMPANY=000"
+ "&PT-API-AUTH-CODE=" + vAuthCode
+ "&LINE-FCr1=R"
+ "&API-AUTH-CODEr1=" + vAuthCode
+ "&API-VENDORr1=" + vVendor
+ "&API-INVOICEr1="+ vInvoice
+ "&_EOT=TRUE"
objhttp.Open("POST", s, false);
objhttp.Send();
objhttp.responseTEXT();
DMECall(); // This call repopulates the page
}
responseText retrieves "Invoice not found" message. But if I check thru Portal, this Invoice does exist and am able to release it within the portal window logged in as the same user.
If I invoke the DMECall subroutine listed below, this works fine.
function DMECall()
{
var o = new ActiveXObject("Microsoft.XMLHTTP");
var o = document.getElementById('lstVenClass'); //Select box
vSelected = o.options[o.selectedIndex].text;
var s = "http://Servername:port/servlet/Router/Transaction/Erp?_PDL=PDLname&FILE=APINVOICE&FIELD=VENDOR;DESCRIPTION;INVOICE;BASE- ACT-AMT;APVENMAST.VENDOR-VNAME;AUTH-CODE;&SELECT=REC-STATUS^%3D0%26OUT-BAL-FLAG^%3D%26COMPANY^%3D000%26AUTH-CODE^%3D" +vSelected + "&OUT=XML"
objhttp.Open("GET", s, false);
objhttp.Send();
Recs = objhttp.responsexml.getElementsByTagName('RECORD');
removeRowFromTable();
addRowToTable(Recs);
}
Appreciate any help on this and thanks in advance.
John Henley
Posts: 3351
1/19/2007 9:47 PM
Split
+ "&API-COMPANY=000" --did you mean to leave out the company?
ssgujar
New Member
Posts: 0
1/19/2007 9:52 PM
Split
Sorry about that, Company value is passed as 001 instead.
John Henley
Posts: 3351
1/23/2007 6:30 PM
Split
Sameer,
In order for AGS to position on the correct invoice, you need to populate the following fields in your AGS call:
AP26F1-API-AUTH-CODE
AP26F1-API-VOUCHER-NBR
AP26F1-API-VENDOR
AP26F1-API-INVOICE
AP26F1-API-SUFFIX
AP26F1-API-CANCEL-SEQ
You should be able to add them to your DME/"Erp" call and then just pass them thru to the AGS call.
ssgujar
New Member
Posts: 0
1/23/2007 7:33 PM
Split
Hi John,
I tried your suggestion but didn't work. CANCEL-SEQ and SUFFIX values are 0 for all invoices. Also we are not using VOUCHER-NBR and is set to blank.
When I create a portal page from Design studio and execute the AGS call from function AGSCall mentioned above, this works!!!!
If I create this same AGS call from API Builder, it errors out with "Invoice does not exist".
So call that works out of Portal page fails from my javascript function and API Builder.
Appreciate any help.
John Henley
Posts: 3351
1/23/2007 7:57 PM
Split
A shot in the dark:
var o = new ActiveXObject("Microsoft.XMLHTTP");
.
.
.
objhttp.Open("POST", s, false);
...shouldn't the 'var o' be 'var objhttp' ?
ssgujar
New Member
Posts: 0
1/23/2007 8:00 PM
Split
My fault when I copied and pasted code to accomodate in one function.
var o is var objhttp.
John Henley
Posts: 3351
1/23/2007 9:12 PM
Split
I think you need batch number on the row as well...
Please
login
to post a reply.