Viewing 11 posts - 1 through 12 (of 12 total)
JLS and Steve, thank you both very much for your help. I can finally leave the both of you alone now.
When ADP gave me the deduction code value of HSP7,...
July 27, 2015 at 10:31 am
J Livingston SQL (7/27/2015)
SELECT ED.EMPLID, ED.CHECK_DT, ED.AL_DEDCD, ED.AL_AMOUNT AS HSA_DEDUCTION, EM.AL_AMOUNT AS EMPLYR_HSA_CONTRIB
FROM PS_AL_CHK_DED AS ED
LEFT OUTER JOIN PS_AL_CHK_MEMO AS EM
ON ED.EMPLID...
July 27, 2015 at 9:47 am
sgmunson (7/27/2015)
SELECT ED.EMPLID, ED.CHECK_DT, ED.AL_DEDCD, ED.AL_AMOUNT AS HSA_DEDUCTION, EC.AL_AMOUNT AS EMPLYR_HSA_CONTRIB
FROM PS_AL_CHK_DED AS ED
LEFT OUTER JOIN PS_AL_CHK_MEMO AS EC
ON ED.EMPLID = EC.EMPLID
AND ED.CHECK_DT = EC.CHECK_DT
AND EC.MEMO_CD =...
July 27, 2015 at 9:38 am
Jeff Moden (7/26/2015)
bgolembiesky 4883 (7/26/2015)
July 27, 2015 at 8:34 am
Thanks for taking time to go through this Jeff. ADP assured me that the calculation was performing correctly but it's obviously not. I dumped both tables into excel for the...
July 26, 2015 at 11:56 am
--===== If the test table already exists, drop it
IF OBJECT_ID('TempDB..#PS_AL_CHK_DED','U') IS NOT NULL
DROP TABLE #PS_AL_CHK_DED
--===== Create...
July 25, 2015 at 8:59 pm
Jeff Moden (7/25/2015)
bgolembiesky 4883 (7/25/2015)
sgmunson (7/25/2015)
bgolembiesky 4883 (7/24/2015)
July 25, 2015 at 7:53 pm
sgmunson (7/25/2015)
bgolembiesky 4883 (7/24/2015)
July 25, 2015 at 7:49 pm
TomThomson (7/25/2015)
July 25, 2015 at 7:03 pm
sgmunson (7/25/2015)
bgolembiesky 4883 (7/24/2015)
July 25, 2015 at 6:57 pm
Unfortunately, it does not. That's what I tried initially. It seems like a simple request. All I want is the employee, check date and amount from ps_al_chk_ded where the dedcd...
July 24, 2015 at 8:24 pm
Viewing 11 posts - 1 through 12 (of 12 total)