Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Performance Management
Lawson Business Intelligence/Reporting/Crystal
GLTRANS join to GLCHARTGTL - to obtain Account Description
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Alanna
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5294
People Online:
Visitors:
279
Members:
0
Total:
279
Online Now:
New Topics
Lawson Portal
Lawson ESS customization
6/23/2025 10:28 AM
I want to add new links and customize the ESS (sel
S3 Security
Securing forms and programs that use Company Group
6/17/2025 5:41 PM
Is there a way to write a rule, that looks up a co
S3 Customization/Development
Self-Serve Customization and Modification of home page
6/17/2025 3:40 PM
Hi, I want to add new links and customize the E
S3 Customization/Development
Data / List view on Lawson Portal
5/21/2025 2:37 AM
Client is on S3 V10. All delivered and custom form
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
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
1377
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
Performance Management
Lawson Business Intelligence/Reporting/Crystal
GLTRANS join to GLCHARTGTL - to obtain Account Description
Please
login
to post a reply.
9 Replies
1
Subscribed to this topic
22 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Alise
Basic Member
Posts: 8
11/18/2014 4:28 PM
General Ledger report designed and functioning, except for account description field. How to properly join GLCHARTDTL to GLTRANS to obtain Account Description?
Or is there a more appropriate way to obtain the Account Description?
Greg Moeller
Veteran Member
Posts: 1498
11/18/2014 4:38 PM
Split
I'm no GL expert by any stretch, but can't you just join GLCHARTDTL to GLCHART to get the description-- or is that a different description than what you are looking for?
Greg Moeller
Veteran Member
Posts: 1498
11/18/2014 4:45 PM
Split
Or how about using GLCHARTDTL.ACCOUNT_DESC
Alise
Basic Member
Posts: 8
11/18/2014 4:55 PM
Split
I used GLTRANS to write the report...now just want to add in the Account Description. When I do, I have duplicate records...so I'm not joining the tables together correctly. (the tables are GLTRANS and GLCHARTDTL).
Ragu Raghavan
Veteran Member
Posts: 477
11/18/2014 5:03 PM
Split
This is what I do:
first lookup GLSYSTEM based on gltrans.company to get Chart_name
then use chart_name, account and sub_account to lookup GLCHARTDTL
John Henley
Posts: 3355
11/18/2014 5:04 PM
Split
[quote]
Posted By
Alise
on 11/18/2014 11:28 AM
General Ledger report designed and functioning, except for account description field. How to properly join GLCHARTDTL to GLTRANS to obtain Account Description?
Or is there a more appropriate way to obtain the Account Description?
[/quote]
Alise, do you mean you want to join FROM GLTRANS TO GLCHARTDTL (i.e. to get the account description for a given transaction?)
If so (and I'm assuming you're using Crystal), you would LEFT OUTER JOIN from GLTRANS to GLMASTER then LEFT OUTER JOIN to GLCHARTDTL.
(going from GLTRANS directly to GLCHARTDTL requires extra step through either GLMASTER or GLSYSTEM to get the CHART-NAME field)...
Also be aware that the company from GLTRANS should be the "TO_COMPANY" not "COMPANY"
GLTRANS (GLT)
GLMASTER (GLM)
GLCHARTDTL (GDT)
FROM GLTRANS GLT
LEFT OUTER JOIN GLMASTER GLM
ON GLM.COMPANY = GLT.TO_COMPANY
AND GLM.ACCT_UNIT = GLT.ACCT_UNIT
AND GLM.ACCOUNT = GLT.ACCOUNT
AND GLM.SUB_ACCOUNT = GLT.SUB_ACCOUNT
LEFT OUTER JOIN GLCHARTDTL GDT
ON GDT.CHART_NAME = GLM.CHART_NAME
AND GDT.ACCOUNT = GLM.ACCOUNT
AND GDT.SUB_ACCOUNT = GLM.SUB_ACCOUNT
Randy
Veteran Member
Posts: 50
11/18/2014 5:05 PM
Split
Join the GLTRANS.COMPANY to GLSYSTEM.COMPANY to get the Chart Name.
Then Join
GLSYSTEM.CHART_NAME to GLCHARTDTL.CHART_NAME
GLTRANS.ACCOUNT to GLCHARTDTL.ACCOUNT
GLTRANS.SUB_ACCOUNT to GLCHARTDTL.SUB_ACCOUNT
to get GLCHARTDTL.ACCOUNT_DESC
John Henley
Posts: 3355
11/18/2014 5:09 PM
Split
Alise, assuming you are using Crystal directly with the tables vs. SQL, use the join through GLMASTER since that's easier to understand...vs using CHART_NAME from GLSYSTEM and ACCOUNT/SUB_ACCOUNT from GLTRANS to join to GLCHARTDTL.
Also, the reason you would get duplicates is if you are not using a left outer join...
Alise
Basic Member
Posts: 8
11/18/2014 5:17 PM
Split
Thank you - will try this now.
Alise
Basic Member
Posts: 8
11/18/2014 5:39 PM
Split
This solution worked John. Thank you!
Please
login
to post a reply.