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:
Hitman
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5208
People Online:
Visitors:
342
Members:
0
Total:
342
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 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
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
S3 Customization/Development
Read and Write CSV file COBOL
10/9/2024 2:53 PM
Does anyone have a quik example of a program that
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
1372
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
Basic Member
Posts: 4
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: 3353
1/19/2007 9:47 PM
+ "&API-COMPANY=000" --did you mean to leave out the company?
ssgujar
Basic Member
Posts: 4
1/19/2007 9:52 PM
Sorry about that, Company value is passed as 001 instead.
John Henley
Posts: 3353
1/23/2007 6:30 PM
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
Basic Member
Posts: 4
1/23/2007 7:33 PM
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: 3353
1/23/2007 7:57 PM
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
Basic Member
Posts: 4
1/23/2007 8:00 PM
My fault when I copied and pasted code to accomodate in one function.
var o is var objhttp.
John Henley
Posts: 3353
1/23/2007 9:12 PM
I think you need batch number on the row as well...
Please
login
to post a reply.