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
Creating a message alert on AP20.1
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Mauchk
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5244
People Online:
Visitors:
167
Members:
0
Total:
167
Online Now:
New Topics
Lawson Add-Ins for Microsoft Office
Uploads
11/20/2025 3:32 AM
The Next button has stopped functioning on the upl
S3 Systems Administration
Lawson Security Admin (LSA) - Securing Print Manager to self only
10/24/2025 6:27 PM
Looking for someone who would be willing to share
Lawson Add-Ins for Microsoft Office
Lawson Add-in
9/30/2025 6:51 PM
I am looking for a Lawson Add-ins query to add new
Lawson S3 Procurement
Anyone getting PO 0000 not found for company error in PO23?
9/30/2025 2:45 AM
Anyone getting PO 0000 not found for company error
Lawson Add-Ins for Microsoft Office
PO20 - Cancel PO via Add-in
9/25/2025 8:03 PM
Is it possible to cancel PO's using add-ins? I
S3 Systems Administration
S3 Payroll - PayStubs
9/18/2025 6:58 PM
Looking for a reliable solution to streamline the
S3 Systems Administration
Quick Access report
8/25/2025 7:17 PM
Looking for a good way to see who has access Lawso
S3 Customization/Development
LP01 hiding a PTO plan from the list
8/13/2025 4:44 PM
Hi all. is there a way to hide a specific PTO&n
Lawson Business Intelligence/Reporting/Crystal
GLTrans - PO Line/MAInvdtl
8/6/2025 6:13 PM
Hello, we have an existing tabular model for fina
IPA/ProcessFlow
Retrieving GUID from InforOS
7/25/2025 2:22 AM
Hello everyone, I was wondering if there is a way
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1377
Roger French
1315
mark.cook
1244
Chesca
1042
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
Creating a message alert on AP20.1
Please
login
to post a reply.
11 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Eddie Smith
Advanced Member
Posts: 39
11/18/2011 1:49 PM
Would like to be able to create a message alert to the AP clerk whenever a vendor is selected or entered into AP20.1 in which the vendor user field 1 value on AP10.1 is equal to "Y". In help would be appreciated. Thanks.
David Williams
Veteran Member
Posts: 1127
11/18/2011 3:41 PM
Split
Eddie - this is simply an OnBlur for the text field for Vendor number. When the OnBlur occurs you would run a DME in order to look up the User Field on the APVENMAST table and if the value equals 1 you can do an alert to the user with the information you want to give to them.
Do you know how to do a DME?
Eddie Smith
Advanced Member
Posts: 39
11/18/2011 4:15 PM
Split
David-we are somewhat familar with DMEs, just enough to be dangerous. I have the following script, but obviously it's incomplete or entriely wrong. What am I missing?
function TEXT_OnBlur(_f24)
{
var sVen = lawForm.getFormValue ("text7")
//alert (sVen)
s = "http://" + window.location.host + "/servlet/Router/Data/erp?"
s += "PROD=LPRD901&FILE=APVENMAST&INDEX=VENSET1"
s += "&KEY=" APVENMAST.VENDOR-GROUP + sVen
s += "&FIELD=APVENMAST.VEN-USER-NAME-01"
s += "&OUT=CSV&DELIM=~&NOHEADER
var objhttp = new ActiveXObject("Msxml2.XMLHTTP")
objhttp.Open("GET", s, false)
objhttp.Send("UserInfo")
sReturn = objhttp.responseTEXT
alert (sReturn)
}
David Williams
Veteran Member
Posts: 1127
11/18/2011 5:08 PM
Split
Here's a DME call to get vendor class
**/
var vProd = portalWnd.oUserProfile.getAttribute("productline");
var vDmeString ="?PROD=" + vProd + "&FILE=APVENMAST&FIELD=VEN-CLASS;&INDEX=VENSET1&KEY=1=" + lawForm.getFormValue("text2") + "&XCOLS=TRUE&XKEYS=TRUE&XRELS=TRUE&XCOUNT=TRUE&XIDA=TRUE&OUT=XML"
var vDMEInfo = portalWnd.httpRequest(portalWnd.DMEPath + vDmeString)
var vObjDMEXML = new top.DataStorage(vDMEInfo);
var vRecords = vObjDMEXML.document.getElementsByTagName("RECORD");
var numRec=vRecords.length;
var vCols = vRecords[0].getElementsByTagName("COL");
var vClass = vCols[0].firstChild.data;
**/
David Williams
Veteran Member
Posts: 1127
11/18/2011 5:13 PM
Split
I don't think you can set your onblur function to run by specific object (field). I think you will have to get the id of the textbox and perform the rest of the function based upon whether or not you're in the field you want to be.
function TEXT_OnBlur(id, row)
{
if (id != "text7") return true
-- key the rest of your function
}
Eddie Smith
Advanced Member
Posts: 39
11/18/2011 6:08 PM
Split
Thanks David. I've never used the OnBlur function before and was getting some strange results with my code. Yours alleviated the strange results but how do I display the vendor class?
David Williams
Veteran Member
Posts: 1127
11/18/2011 6:26 PM
Split
Well, you don't want to display the vendor class - that was just a sample - but you would alert the variable used to capture the data you want.
alert ("The vendor class value is " + vClass)
Eddie Smith
Advanced Member
Posts: 39
11/18/2011 7:44 PM
Split
Understand the Vendor class was just an example and I added an alert like yours but nothing was displayed on the form. I must be missing something?
David Williams
Veteran Member
Posts: 1127
11/19/2011 12:56 AM
Split
What value do you get when you alert numRec?
Eddie Smith
Advanced Member
Posts: 39
11/21/2011 12:11 PM
Split
No message. I added our vendor group "ULNA" to the dme, could that have something to do with it? Below is the JAVA script I'm using.
function TEXT_OnBlur(id, row)
{
if (id !="text7")
return true
var vProd = portalWnd.oUserProfile.getAttribute("productline");
var vDmeString ="?PROD=" + vProd + "&FILE=APVENMAST&FIELD=VEN-CLASS;&INDEX=VENSET1&KEY=1=" + ULNA + lawForm.getFormValue("text7") + "&XCOLS=TRUE&XKEYS=TRUE&XRELS=TRUE&XCOUNT=TRUE&XIDA=TRUE&OUT=XML"
var vDMEInfo = portalWnd.httpRequest(portalWnd.DMEPath + vDmeString)
var vObjDMEXML = new top.DataStorage(vDMEInfo);
var vRecords = vObjDMEXML.document.getElementsByTagName("RECORD");
var numRec=vRecords.length;
var vCols = vRecords[0].getElementsByTagName("COL");
var vClass = vCols[0].firstChild.data;
alert(numRec)
}
David Williams
Veteran Member
Posts: 1127
11/21/2011 12:42 PM
Split
Check all of the index key values - like company. My sample hard coded 1 so if yours is different...
Eddie Smith
Advanced Member
Posts: 39
11/21/2011 1:13 PM
Split
David, dummy me... of course it's so obvious now that you pointed it out. Working perfectly now. Thanks for your help.
Please
login
to post a reply.