PTO balance at date of termination

 5 Replies
 0 Subscribed to this topic
 68 Subscribed to this forum
Sort:
Author
Messages
Deron
Advanced Member
Posts: 25
Advanced Member
    I need to find the pto balance as of an employee's termination date for 2009.

    Can someone give me some suggestions on how I do that?

    Thanks in advance.
    Karen Ploof
    Veteran Member
    Posts: 118
    Veteran Member
      I think a simple query for all transactions for the employee and plan up through termination date-- and a sum of the amounts (being careful to ensure that adds and minuses are accurately reflected in your data) would work. Might there be some complication that would make that calculation not work for your situation?
      Deron
      Advanced Member
      Posts: 25
      Advanced Member
        Yes, the complication would be the added element of my sluggish brain.

        But, just to be sure...sum up TA_HOURS (from TAEMPTRANS) thru the employee's TERM_DATE, correct?
        Karen Ploof
        Veteran Member
        Posts: 118
        Veteran Member
          Yep, that should do it. Just a couple of other thoughts. I cannot remember whether TAEMPTRANS has both an effective and log date. If it does, be sure to use the effective date to select records. Also, check the status of records just for kicks -- to be sure they were all processed. There's a slim chance that records were processed without having been posted to the balance. If that turns out to be true, you'll have to decide whether to incorporate them into the balance.
          mark.cook
          Veteran Member
          Posts: 444
          Veteran Member
            You are right on the money with the table, TAEMPTRANS has that data. I created a PTO balance report that each employee can run on a dashboard that does basically what you are asking.

            Sum the total of the transactions and you should get the answer you are looking for. You may have to exclude certain transaction types like PTO payout, also when the plan posts ours is set up to hit a holding status then the final post during PR processing. I had to exclude that in/out processing.

            Deron
            Advanced Member
            Posts: 25
            Advanced Member
              Thanks for the help folks.