Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Human Capital Management
Lawson S3 HR/Payroll/Benefits
I need an example of home-made javascript DMEObj for Self-service centers
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Lauren Beeker
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5222
People Online:
Visitors:
69
Members:
0
Total:
69
Online Now:
New Topics
Lawson Portal
Need to limit available values in Manager Self-Service based on Action
4/16/2026 1:47 PM
Hello, Our managers have the ability in M
Lawson Portal
Lawson HR170 Jobs Index
3/30/2026 7:35 PM
Hi All, I am new in my role. The organization h
IPA/ProcessFlow
IPA Question - Filtering Employees by XRef Cost Center Across Person and HR Modules
3/2/2026 4:29 PM
Hello Everyone, I am building an IPA process in
Lawson S3 Financials
Lawson S3 to SAP S/4 Hana Migration
2/12/2026 8:54 PM
Can anyone recommend a consulting company who has
Lawson Add-Ins for Microsoft Office
Missing Multi-Stream Upload Option
7/12/2023 11:09 PM
Our IS department has made the server configuratio
Lawson S3 HR/Payroll/Benefits
Secure 2.0
12/8/2025 9:06 PM
Has anyone using S3 V10 for Benefits been able to
Lawson Add-Ins for Microsoft Office
More.... ic81.2
12/5/2025 10:51 PM
We build our PAR's with MS Addins using IC81 and o
Lawson Add-Ins for Microsoft Office
Deleting an Orphan Time Record with MS Add-ins
12/13/2025 7:26 PM
I have discovered an Orphan Time Record when dumpi
Lawson Landmark
Configuration Console - UserField
7/24/2019 6:05 PM
I have a userfield called "ContactCenter"&nb
Lawson Add-Ins for Microsoft Office
Uploads
11/20/2025 3:32 AM
The Next button has stopped functioning on the upl
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
Chris Martin
825
Forums
Filtered Topics
Unanswered
Unresolved
Active Topics
Most Liked
Most Replies
Search Forums
Advanced Search
Prev
Next
Forums
Human Capital Management
Lawson S3 HR/Payroll/Benefits
I need an example of home-made javascript DMEObj for Self-service centers
Please
login
to post a reply.
4 Replies
0
Subscribed to this topic
69 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Mike Schlenk
Veteran Member
Posts: 71
2/22/2008 3:33 PM
In an attempt to supplement self-service centers, I'm looking to create my own htm files that authenticate, create a DME call and display data.
I'm trying to learn from recsum.htm and paytyear.htm and I'm having problems. The issue is when I make a call that returns multiple records, then I want to display each field in a table.
Can someone please help? I'm so close, I know I'm just not understanding something about the DMEObject and how to use Arrays to store the records.
Any help would be appreciated.
ridjayc
New Member
Posts: 0
2/22/2008 4:40 PM
Split
Here is an example. The XXREQNOTES is a custom view. It lets us view note data in a simple way. There some special javascript call to get the notes but I didn't want to spend several days figuring it out so I did this view and used DME on it.
Oh one other little gotcha, if memory serves me, is that if you do change execs for process flow viewing they for some reason need to have the "...recsum.." in the file name.
On a related topic if you would like to do views and have it availbe in Lawson there is a document on Lawson on how to do it in Oracle. We are on SQL server here but the process is very simular. If your DBAs are very difficult to work with then I would skip the views and just try to work around it. Also view creation can require you to bounce Lawson.
--JayR
//Functions-------------------------------------------------------------------------------------------
/************************************************************
Function: LoadCatcher
Purpose: Driver function called by frameset onLoad event driver
************************************************************/
function LoadCatcher()
{
GetMessages()
clearTimeout(LoadTimer);
}
/************************************************************
Function: GetMessages
Purpose: Get Account Information
************************************************************/
function GetMessages()
{
//alert("GOT HERE")
var logancall = new DMEObject(prodline, "XXREQNOTES")
logancall.out = "JAVASCRIPT"
logancall.field ="note-name;modified-user;create-user;object1;object2;object-type"
logancall.select = "company=" + m_Company + "&req-number=" + m_ReqNumber + "&line-nbr=" + m_LineNbr
logancall.func = "displayNotes()"
DME(logancall, "PRODLINE")
PRODLINEwin = self.PRODLINE
}
/************************************************************
Function: displayNotes
Purpose: Display the Requisition summary info via HTML
************************************************************/
function displayNotes()
{
//alert("START display")
var str = '' + ''
+ ''
var TableBorder = HtmlTableBorder
var TableBgColor = HtmlTableBgColor
var ThBgColor = HtmlThBgColor
str = '
'
+ '
'
+ '
' + 'Note Name' + '
'
+ '
' + 'Note Type' + '
'
+ '
' + 'Created By' + '
'
+ '
' + 'Modified By' + '
'
+ '
' + 'Comments' + '
'
+ '
'
// This next section of code is to group notes that are alike together.
var type_array = new Array();
var i = 0
var max_spin = 0
PRODLINEwin.record.sort(note_sort)
type_array[i] = '[' + strNoteType(PRODLINEwin.record[i].object_type) + ']'
while(i + 1 < PRODLINEwin.NbrRecs && max_spin < 100)
{
max_spin++
type_array[i] = '[' + strNoteType(PRODLINEwin.record[i].object_type) + ']'
type_array[i+1] = '[' + strNoteType(PRODLINEwin.record[i+1].object_type) + ']'
var c1 = PRODLINEwin.record[i].note_name + PRODLINEwin.record[i].create_user + PRODLINEwin.record[i].modified_user + PRODLINEwin.record[i].object1 + PRODLINEwin.record[i].object2
var c2 = PRODLINEwin.record[i+1].note_name + PRODLINEwin.record[i+1].create_user + PRODLINEwin.record[i+1].modified_user + PRODLINEwin.record[i+1].object1 + PRODLINEwin.record[i+1].object2
if(c1 == c2) //Basically if truee then notes are the same and will be grouped
{
type_array[i] += '
' + type_array[i+1]
PRODLINEwin.record.splice(i+1,1)
PRODLINEwin.NbrRecs--
type_array.splice(i+1,1)
continue
}
i++
}
for(var i=0;i< PRODLINEwin.NbrRecs;i++)
{
//logancall.field ="note-name;modified_user;object1;object2;object-type"
var note_name = PRODLINEwin.record[i].note_name
var note_type = type_array[i]
var created_by = strCleanUser(PRODLINEwin.record[i].create_user)
var modified_by = strCleanUser(PRODLINEwin.record[i].modified_user)
var comment = PRODLINEwin.record[i].object1 + PRODLINEwin.record[i].object2
comment = comment.replace(/EOL/g,'
')
str += '
'
+ '
' + PRODLINEwin.record[i].note_name + '
'
+ '
' + note_type + '
'
+ '
' + created_by + '
'
+ '
' + modified_by + '
'
+ '
' + comment + '
'
+ '
'
}
str += '
'
+ '