Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Infor / Lawson Platforms
S3 Systems Administration
Screen Required Fields
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Brady
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5274
People Online:
Visitors:
386
Members:
0
Total:
386
Online Now:
New Topics
Lawson S3 Financials
Applying credits to open AP invoices
4/28/2025 1:26 PM
Hello, I am new to the Lawson system and after ru
Lawson S3 Financials
Lawson APIA
4/28/2025 1:22 PM
Has anybody recently installed Lawson's APIA m
Lawson S3 Procurement
Tolerance Settings
3/31/2025 2:01 PM
I've been trying to set a tolerance for some t
Dealing with Lawson / Infor
Printing Solutions other than MHC
3/27/2025 1:00 PM
What are others using for printing solutions besid
Lawson S3 Procurement
Green check marks in Lawson 9.0.1
3/20/2025 4:55 PM
Hi, How to remove green check mark on items when o
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
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
Infor / Lawson Platforms
S3 Systems Administration
Screen Required Fields
Please
login
to post a reply.
1 Replies
0
Subscribed to this topic
27 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Layne
Basic Member
Posts: 24
2/27/2012 5:56 PM
Does anyone know where in the database I can run a query that would tell me which fields on a given Lawson Screen are required and which fields are not.
Myles Y
New Member
Posts: 1
5/8/2014 8:39 PM
Split
Hi Layne, I just did 2 hours of research because on this because my client wanted to know the same thing.
Here's what i found:
In the DEV9, PROD9 tables if you run this query you should see that there are no NULL able fields in the database.
[code] select OBJECT_NAME(object_id) AS TABLENAME, name AS COLUMNNAME , * from sys.columns with (nolock) where is_nullable = 1 [/code]
There are no fields in the database that allow nulls and there are no defaults in that database either.
[code] select object_Name(constid) as ConstratintName , object_name(id) As ConstraintParent, * from sysconstraints WITH (nolock) where objectproperty(constid,'IsDefault')=1 or objectproperty(constid,'IsDefaultCnst')=1 or objectproperty(constid,'CnstIsColumn')=1 or objectproperty(id,'TableHasDefaultCnst')=1 [/code]
In the GEN database there are two sets of tables that show a REQUIRED field.
GEN.dbo.FILEREL
(File Relationships) has a field named [REQUIRED] but that does not designate a required field on the table during insertion. It designates that a value being inserted is REQUIRED in the related table (Referential Integrity) unless there are Spaces being inserted in to the field by the UI.
GEN.dbo.FILEIND
(FileIndexes) has a field named ISPRIMARY. This indicates that this is the primary (CLUSTERED) index of the table. Clustered indexes may not ever contain null values so these values will always be inserted to the table. Join that FILEIND table to FILEINDFLD to get all of the fields that participate in the INDEX. You will see the required fields for the table.
Having said all of this. I can not determine what is setting the default values because it is not obviously seen in the GEN database or the Environment Data Databases.
At this point it is my assumption that the Application Layer handles the defaults and required fields.
We are using AGS calls. I tested PA31 and found that submitting no SSN still created a row in the APPLICANT table.
The reason I was looking for this infomration is that, I have created a Enterprise Data Dictionary. We use this to dynamically generate XML response SQL after mapping to the corresponding LAWSON fields. I exported all the field values (PRODUCTLINE, FILENAME, PREFIX, SYSTEMCODE, ORDINAL, TABLEFIELDNAME, ELEMENTNAME, LENGTH, DESCSIZE, SCRFLDNAME, DOCFLDNAME, DOCKEY, DOCTXT, VALUELIST) for all PROGRAMS, PRODUCTLINE.
We are using this Data Dictionary to map between other third party systems.
Lawson Fields are less than 25% of the data sources being mapped.
I hope that Helps.
Myles Yamada
Please
login
to post a reply.