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
Crystal Report - Help Adding Fields to Existing Query
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
HireIQ
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5264
People Online:
Visitors:
179
Members:
0
Total:
179
Online Now:
New Topics
Dealing with Lawson / Infor
Printing Solutions other than MHC
3/27/2025 1:00 PM
What are others using for printing solutions besid
Dealing with Lawson / Infor
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
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
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
Performance Management
Lawson Business Intelligence/Reporting/Crystal
Crystal Report - Help Adding Fields to Existing Query
Please
login
to post a reply.
1 Replies
1
Subscribed to this topic
22 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Chris-T
New Member
Posts: 1
11/28/2016 7:26 PM
Good afternoon,
Let me start by stating that while I'm a DB person at my local hospital, I have never worked with Lawson data before. I've been requested to create an employee history report and thanks to the talented folks here, I have very nearly what I need.
Would someone be able to assist me in adding two fields to this query - I'm looking to add the employee's prior supervisor and current supervisor (much like the current position and prior position).
I believe the data I'm looking for is in the PAEMPPOS table, but I'm not entirely certain how to add it to this existing query.
SELECT *
FROM (
SELECT PAH.COMPANY
,EMP.PROCESS_LEVEL
,PAH.EMPLOYEE
,PAH.EFFECT_DATE
,PAH.ACTION_CODE
,PAH.REASON_01
,PAH.REASON_02
,EMP.LAST_NAME
,EMP.FIRST_NAME
,EMP.MIDDLE_INIT
,PEM.SEX
,PEM.EEO_CLASS
,EMP.POSITION
,COALESCE((
SELECT A_VALUE
FROM (
SELECT COMPANY
,EMPLOYEE
,BEG_DATE
,A_VALUE
FROM PRODLAW.HRHISTORY HRH
WHERE HRH.FLD_NBR = 126
ORDER BY BEG_DATE DESC
) CUR_POS
WHERE CUR_POS.COMPANY = PAH.COMPANY
AND CUR_POS.EMPLOYEE = PAH.EMPLOYEE
AND CUR_POS.BEG_DATE <= PAH.EFFECT_DATE
AND rownum = 1
), ' ') AS CUR_POSITION
,COALESCE((
SELECT A_VALUE
FROM (
SELECT COMPANY
,EMPLOYEE
,BEG_DATE
,A_VALUE
FROM PRODLAW.HRHISTORY HRH
WHERE HRH.FLD_NBR = 126
ORDER BY BEG_DATE DESC
) PREV_POSITION
WHERE PREV_POSITION.COMPANY = PAH.COMPANY
AND PREV_POSITION.EMPLOYEE = PAH.EMPLOYEE
AND PREV_POSITION.BEG_DATE < PAH.EFFECT_DATE
AND rownum = 1
), ' ') AS PREV_POSITION
,COALESCE((
SELECT A_VALUE
FROM (
SELECT COMPANY
,EMPLOYEE
,BEG_DATE
,A_VALUE
FROM PRODLAW.HRHISTORY HRH
WHERE HRH.FLD_NBR = 20
ORDER BY BEG_DATE DESC
) CUR_STATUS
WHERE CUR_STATUS.COMPANY = PAH.COMPANY
AND CUR_STATUS.EMPLOYEE = PAH.EMPLOYEE
AND CUR_STATUS.BEG_DATE <= PAH.EFFECT_DATE
AND rownum = 1
), ' ') AS CUR_STATUS
,COALESCE((
SELECT A_VALUE
FROM (
SELECT COMPANY
,EMPLOYEE
,BEG_DATE
,A_VALUE
FROM PRODLAW.HRHISTORY HRH
WHERE HRH.FLD_NBR = 20
ORDER BY BEG_DATE DESC
) PREV_STATUS
WHERE PREV_STATUS.COMPANY = PAH.COMPANY
AND PREV_STATUS.EMPLOYEE = PAH.EMPLOYEE
AND PREV_STATUS.BEG_DATE < PAH.EFFECT_DATE
AND rownum = 1
), ' ') AS PREV_STATUS
FROM PRODLAW.PERSACTHST PAH
LEFT OUTER JOIN PRODLAW.EMPLOYEE EMP ON (EMP.COMPANY = PAH.COMPANY)
AND (EMP.EMPLOYEE = PAH.EMPLOYEE)
LEFT OUTER JOIN PRODLAW.PAEMPLOYEE PEM ON (PEM.COMPANY = PAH.COMPANY)
AND (PEM.EMPLOYEE = PAH.EMPLOYEE)
WHERE (PAH.COMPANY = 1000)
AND (PAH.EFFECT_DATE BETWEEN to_date('2000-01-01', 'yyyy-mm-dd')
AND to_date('2016-12-31', 'yyyy-mm-dd')
)
)
WHERE CUR_POSITION <> PREV_POSITION
OR CUR_STATUS <> PREV_STATUS;
Thanks in advance for helping out a poor soul :)
Jeff Shumate
Advanced Member
Posts: 31
11/28/2016 11:42 PM
Split
Our setup has Supervisor easily found in the EMPLOYEE table, but you could grab from PAEMPPOS if you have it set up, and your EEs can have multiple positions. I believe to get the prior supervisor, you will have to look at HRHISTORY, and HR10 will have to be set up to capture changes to the supervisor field.
Please
login
to post a reply.