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
PO20 Error: "Value not in List: "
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Rich Cowie
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5255
People Online:
Visitors:
470
Members:
0
Total:
470
Online Now:
New Topics
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
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
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
User Experience
Lawson Design Studio
PO20 Error: "Value not in List: "
Please
login
to post a reply.
6 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
AG
Advanced Member
Posts: 29
6/18/2010 3:26 PM
We just applied patches into our DEV/UAT environment. We have a custom PO20 design studio form. On this form we have a button that triggers a process flow. After we applied the patches this button is not working! When the user clicks the button it now throws up an alert "Value not in list: ". Does anyone know what this means and/or how to fix this? We are on AS400/ISERIES V8.0.3.
David Williams
Veteran Member
Posts: 1127
6/18/2010 3:40 PM
Split
I got an offline email on this issue and from what I saw the customization was beyond what Design Studio was intended for. If I understand what happened is the XML source code was also modified (not DS standard) - but since I've done that in the past myself I don't think it was wrong, just harder to debug and correct. I think the program recompile messed up your modification (when the screen regeneration was done). Your modification added a custom "Z" function to the standard "A", "C", etc. functions and that's what you're using to trigger your flow. Maybe someone knows a way to put that back in.
AG
Advanced Member
Posts: 29
6/23/2010 4:51 PM
Split
Ok Lawson support is basically not going to help us here. They are turning us over to professional services. We have had this code in place for a long time now and it still works in our PROD environment. Has anyone else out there had this problem? I cannot believe we would be the only ones to see something like this? Lawson has issued patches for other releases and platforms to address this very error. Everything was working just fine right until we applied the latest set of patches. Any help would be greatly appreciated!
Steven Gray
Advanced Member
Posts: 21
6/24/2010 2:59 PM
Split
Have you tried adding a "Z" FunctionCode to the PO20.D source file and regenerating the screen with CRTSCRN8? This is where the function code values originate.
AG
Advanced Member
Posts: 29
6/24/2010 3:47 PM
Split
ok I did some digging into the custom code. I added alerts everywhere to isolate the code and determine the source of the error message. It is coming from inside the "OnBeforeTransaction" function. In there we have an AGS call to form PO22.1 which is passing a "LINEFCr1=E" this is whats causing the error message "value not in list: " to be thrown. Here is the actual AGS call: [code] /servlet/ags?_PDL=INTTEST&_TKN=PO22.1&_LFN=ALL&_RTN=DATA&_TDS=IGNORE&_OUT=XML&_EVT=CHG&FC=C&PCR-COMPANY=10&PCR-BUYER-CODE=LWS&PT-PCR-PO-NUMBER= 112423&PT-PCR-PO-RELEASE=&PT-PCR-PO-CODE=&LINE-FCr1=E&_EOT=TRUE [/code] This code was written by a consultant for us, prior to my joining the company. Thus I am not familiar with what he is trying to do here? Does anyone have any ideas on how can I fix this issue now?
Terry P
Veteran Member
Posts: 234
6/24/2010 4:13 PM
Split
He's doing an AGS call to PO22.1, but he's passing for the detail line FC an "E" when the only valid values are "X" (Select) and "R" (Release). I think if you just change the parameter on the AGS call to "&LINE-FCr1=R" it should work. Of course maybe you have a custom PO22.1 with a FC of "E" which is why the code is correct. I'd check PO22.1 and see what the valid line FC values are.
Steven Gray
Advanced Member
Posts: 21
6/24/2010 4:25 PM
Split
It's possible a custom line function code of "E" was added to the screen source code. Valid values for the 8 version should be X and R. Check in production and see if you have an "E" line function code on the screen.
Please
login
to post a reply.