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:
Bob
Past 24 Hours:
3
Prev. 24 Hours:
1
Overall:
5217
People Online:
Visitors:
290
Members:
0
Total:
290
Online Now:
New Topics
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
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
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
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: 476
4/15/2014 11:39 PM
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
Thanks .... I will give it a try
Chris12
Veteran Member
Posts: 150
4/16/2014 4:24 PM
Doing a data refresh now ... I will hit it first thing tomorrow
Chris12
Veteran Member
Posts: 150
5/2/2014 7:39 PM
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: 476
5/2/2014 9:14 PM
Yes Chris12, the code extract is from a custom screen that works.
Chris12
Veteran Member
Posts: 150
5/6/2014 12:39 PM
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.