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
List Box Selection
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:
73
Members:
0
Total:
73
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
List Box Selection
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
Chris12
Veteran Member
Posts: 150
4/15/2014 7:44 PM
I have developed a custom PA52.1 form which will let a user perform certain PA on themselves ...
I would like to put in a listbox for the reasoncode which will display the values from PA57.3 for that particular PA for the user to select from ...
I am not sure what is the best way via design studio .... Any help is appreciated.
I am stuck
Ragu Raghavan
Veteran Member
Posts: 477
4/15/2014 11:39 PM
Split
Here is a piece of JavaScript code that populates a custom listbox with the union codes from the PCODES table.
Maybe you can bulid something similar based on the data in PAACTREAS?
function Populate_UnionCode(vList)
{
// alert("Populate Emp Status");
var sPDL = portalWnd.oUserProfile.getAttribute("productline");
var s = portalWnd.DMEPath;
s += "?PROD=" + sPDL;
s += "&FILE=PCODES";
s += "&FIELD=CODE;DESCRIPTION";
s += "&INDEX=PCOSET1";
s += "&KEY=UN";
s += "&MAX=999";
s += "&OUT=XML";
// alert("s " + s);
var sReturn=portalWnd.httpRequest(s);
if (!sReturn || sReturn.status)
{
alert("status s " + sReturn.status);
return true;
}
var vObjXML = new portalWnd.DataStorage(sReturn);
var vRecords = vObjXML.document.getElementsByTagName("RECORD");
// alert("vrecords " + vRecords.length + " " + vRecords.text);
//_l132 is the listbox
// var InvList = document.getElementById("VALUES_l132");
var vValue = "VALUES_" + vList;
var InvList = document.getElementById(vValue);
for (var ix=0; ix < vRecords.length ; ix++)
{
var vCols = vRecords[ix].getElementsByTagName("COL");
// alert("vCols " + vCols[0].firstChild.data);
var vCode = vCols[0].firstChild.data;
var vDesc = vCols[1].firstChild.data;
var vShow = vCode + ": " + vDesc;
ListVal = document.createElement("span");
ListVal.setAttribute("tran",vCode);
ListVal.setAttribute("disp",vCode);
ListVal.setAttribute("text",vShow);
InvList.appendChild(ListVal);
}
return true;
}
Chris12
Veteran Member
Posts: 150
4/16/2014 12:43 PM
Split
Thanks .... I will give it a try
Chris12
Veteran Member
Posts: 150
4/16/2014 4:24 PM
Split
Doing a data refresh now ... I will hit it first thing tomorrow
Chris12
Veteran Member
Posts: 150
5/2/2014 7:39 PM
Split
Hi Ragu, I have been struggling with this one for a while now
Were you able to succesffuly populate a listbox with data from a table via Design Studio ????? Please let me know ...... I can forward you the code I am using if that would help
Ragu Raghavan
Veteran Member
Posts: 477
5/2/2014 9:14 PM
Split
Yes Chris12, the code extract is from a custom screen that works.
Chris12
Veteran Member
Posts: 150
5/6/2014 12:39 PM
Split
Thanks ... I stepped away from it for a day or two to clear my head
I will get back with it today
Please
login
to post a reply.