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
Making Froms/Field Display Only on the fly
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Hitman
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5208
People Online:
Visitors:
384
Members:
0
Total:
384
Online Now:
New Topics
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
S3 Customization/Development
Read and Write CSV file COBOL
10/9/2024 2:53 PM
Does anyone have a quik example of a program that
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
Making Froms/Field Display Only on the fly
Please
login
to post a reply.
8 Replies
0
Subscribed to this topic
12 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Saurabh
Veteran Member
Posts: 94
6/9/2010 9:46 AM
Hi All
I have a custom design studio form with a status field.
Based on the status field value i would like to set the whole form to be "display only" or just certain key fields to be "Display Only".
e.g if the Status is "Rejected" the user cannot make any changes in the fields, but if the Status is "Level1 Check" he is only allowed to make changes to certain non-key fields.
Any other tips on how that can be achieved?
One thought i had was to capture the Change event and then check for Status. If status "Rejected" then give a message and return false aborting the change.
Thanks
Saurabh
David Williams
Veteran Member
Posts: 1127
6/9/2010 10:31 AM
Saurabh - I would go with your 2nd solution. Use the OnBeforeTransaction function to check the status field (and Change event) and Return False if the user is trying to update fields you don't want them to update.
Saurabh
Veteran Member
Posts: 94
6/9/2010 11:50 AM
David
I can see that working when i want to restrict certain fields.
However when the status is "Rejected" i do not want the user to be able to change any field in that record.
I have around 25 or so fields and would have to write codes to trap changes to each one of them.
Was looking for a way to be able to put the whole form/tabregion as Display Only. Do you think that can be done?
Thanks
Saurabh
David Williams
Veteran Member
Posts: 1127
6/9/2010 12:07 PM
You don't have to put edit checks on every field iif you don't want to allow any updates from occuring. You simply check the status and if it's "Rejected" you alert("Sorry, no updates allowed on rejected records") and Return False.
Saurabh
Veteran Member
Posts: 94
6/9/2010 12:40 PM
Yep got it. I keep thinking in terms of trapping changes as I am moving through field etc.
To summarise -
I have trapped the Change Action and then
if the status = "reject" then give an error
if any other status then check the key fields and if they have been changed then give an error
One last thing - the way i am comparing the old field values to new field values is by capturing the Old Field (define as a Global variable) value when user presses I,P or N and then comparing it with the new field value.
Both in section -- FORM_OnBeforeTransaction
is that the right way or is there another quicker way of comparing old and new (being changed to) field values
Thanks
Saurabh
David Williams
Veteran Member
Posts: 1127
6/9/2010 1:04 PM
The only other way I can think of is to do a DME call before updating records and then comparing them to the values in the fields. Either way would work but by using a DME you don't have to store the values - you just check them when needed.
Saurabh
Veteran Member
Posts: 94
6/9/2010 2:23 PM
Hmm I have never used a DME in my script before.
Will give it a go and see how i get along.
Thanks for the help
Saurabh
Saurabh
Veteran Member
Posts: 94
6/9/2010 2:45 PM
David
Once i give the error message, is there a way to force the "Inquire" Action so that the old record values are refreshed back or would be it easier just to have a message in the Alert which says "Click on Inquire after pressing OK"
thanks
Saurabh
David Williams
Veteran Member
Posts: 1127
6/9/2010 7:12 PM
lawformDoFunction("I")
Please
login
to post a reply.