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
PO29 Need Process Level
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Flor
Past 24 Hours:
1
Prev. 24 Hours:
0
Overall:
5276
People Online:
Visitors:
419
Members:
0
Total:
419
Online Now:
New Topics
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
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
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
1374
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
PO29 Need Process Level
Please
login
to post a reply.
3 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Kate Liamero
Veteran Member
Posts: 70
9/20/2012 7:18 PM
PO Header Process level very important to us because it determines from which bank account the po invoices will be paid. This is a fairly new process for us. Thanks god we have such a crack AP team and they noticed the account coding on the invoice didn't gel with the process level. This invoice would have been cut from the wromng client account.
When procurement uses the PO29 to copy a purchase order the process level field from puchorder is not on the po 29 so they don't even think to look at the new po and change it.
We need the process level from the "Fom" PO to display and an input field to update the new po on the PO29 just like all the other fields. I'm clueless how to get the fields on the form.
Thanks Kate
Robert Spurr
Veteran Member
Posts: 130
9/24/2012 5:51 PM
Split
Process Level does not appear to even be a hidden value on the form, so creating an additional field most likely will not work. One option is to update the PO after the add or during the release. Depends on what works for you. You could do a DME call back the original PO to get the process level and then an AGS to update the new PO. This sounds like it should work but I have not tested this specific scenario.
Kate Liamero
Veteran Member
Posts: 70
9/24/2012 7:57 PM
Split
looks like our PO29 is behaving erratically. it should put the correct process level on the copied PO based on the ship location as long as you have the process level defined in the IC02 which we do. Sometimes it changes the process level to the correct one and sometimes it leaves the old process level. We've changed courses. What we would like to do is have a message popup in PO20 when a user tries to release a po where the PO header ship to is different from the PO Header Process Level. Not a hard stop just a popup box saying Hey these are different are you sure this is what you want. I don't know how to do this one either. We already have the followint script on the PO20
to check that if the accounting units fall between a range then an asset template is required but I believe this one is a hard stop. I just want an alert box not a stop.
function FORM_OnBeforeTransaction(fc)
{
if (fc != "A" && fc != "C")
return true;
var Error="N";
for (i=0; i <= 5; i++)
{
var Account=lawForm.getFormValue("text20",i);
if (Account < 16000 || Account > 16999)
{
return true;
}
if (Account >= 16000 || Account <= 16999)
{
var Template=lawForm.getFormValue("text27",i);
if (Template == "")
{
/* lawForm.setActiveTab("TF0-1"); */
lawForm.positionInFieldById("text27",i);
lawForm.setMessage("Asset Template is Required for Account");
alert("Asset Template is Required for Account");
var Error="Y";
return false;
}
if (Error == "N")
return true;
}
if (Error == "N")
return true;
}
if (Error == "N")
return true;
}
Robert Spurr
Veteran Member
Posts: 130
9/25/2012 7:47 PM
Split
OK, if I'm following...you just want to notify the buyer when a process level is (Wrong or missing) but you want the PO to still release? Correct? Do you use PO100, PO23 or PO29 to release a PO because if this is going to be a design studio script you will need to account for those forms also? What I would do is check/validate and if it isn't correct automatically change the value behind the scenes. One issue is that an older PO that had this issue might cause you so grief when attempting to re-release. If you still just want the alert you could try something like what is below. This example is triggered by a button click but could also be trigger by an action.
p.show(175,205,300,50,document.body) - This is the positioning of the message so the numbers will be different for you.
Play around with it and let me know.
function BUTTON_OnClick(id, row)
{
//Create pop ups
var p=window.createPopup();
var pbody=p.document.body;
pbody.style.backgroundColor="lightgreen";
pbody.style.border="solid black 3px";
if (id == "push1")
{
pbody.innerHTML="This is the published list selling price of the item if there is one.";
p.show(175,205,300,50,document.body);
}
if (id == "push2")
{
pbody.innerHTML="This is the selling price of the item through the distributor.";
p.show(175,230,300,50,document.body);
}
if (id == "push3")
{
pbody.innerHTML="This is the contractual cost of the item if it is different when buying the item through a distributor.";
p.show(175,253,300,70,document.body);
}
if (id == "push4")
{
pbody.innerHTML="This is the contractual cost of the item from the original manufacturer.";
p.show(510,90,300,50,document.body);
}
return true;
}
Please
login
to post a reply.