Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Integration / Customization
S3 Customization/Development
LP balances - taeemaster
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
Zac Shields
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5210
People Online:
Visitors:
582
Members:
0
Total:
582
Online Now:
New Topics
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
Lawson S3 HR/Payroll/Benefits
Error
11/6/2024 9:54 PM
When I try to enroll a retiree in 72.1 health plan
Infor ERP (Syteline)
Syteline: New Data Maintenance Wizard (Error) Need help
11/1/2024 4:24 PM
Hi, I need help with an error on syteline while us
Dealing with Lawson / Infor
Implementing Lawson v10 with Cerner Surginet, Case Cart Picking, and Quick Adds for the OR
10/29/2024 4:20 PM
Hi Everyone, I am wondering if there is any org
Lawson S3 HR/Payroll/Benefits
Canada Tax Calculation (Federal and Provincial) Issue
10/23/2024 5:00 AM
Initially, we had problem with CPP2 calculation is
Lawson S3 HR/Payroll/Benefits
CA Section 125 401k Plan
10/22/2024 10:13 PM
Does anyone have any recommendations on how to fac
S3 Systems Administration
Running AC120 deleted records from ACMASTER table
10/22/2024 3:40 PM
We recently ran the AC120 as normal and somehow it
Lawson S3 Procurement
RQ13 Approval Info
10/17/2024 2:12 PM
When a Requisition is approved on RQ13, what table
S3 Customization/Development
Read and Write CSV file COBOL
10/9/2024 2:53 PM
Does anyone have a quik example of a program that
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
1372
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
Integration / Customization
S3 Customization/Development
LP balances - taeemaster
Please
login
to post a reply.
6 Replies
0
Subscribed to this topic
17 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
Chesca
Veteran Member
Posts: 490
8/9/2013 3:22 PM
I am writing a custom program to apply caps to the available balance after payroll close. The program is updating the balances but I jus realized TAEMPTRANS might have to be updated as well. How can I find out what other tables might have to be updated if updating balances in taeemaster?
Employee Mastr
TAEEMASTER
Required
TTR-COMPANY -> TEM-COMPANY
TTR-EMPLOYEE -> TEM-EMPLOYEE
TTR-PLAN -> TEM-PLAN
TTR-EMPLOYEE-GROUP -> TEM-EMPLOYEE-GROUP
TTR-POSITION -> TEM-POSITION
jaherb
Veteran Member
Posts: 164
8/9/2013 5:15 PM
you could do it programmatically, however I would probably generate manual adjustment transactions (LP70) to process and let the system take care of what else it need to do. This would give you better auditability of the transactions.
On another note, why isn't your LP plans applying the caps? That would be the best way to go.
Chesca
Veteran Member
Posts: 490
8/9/2013 5:32 PM
Thank you for your response.
We are actually using a library routine LPCUSTOMPD to calculate accruals based on 70% hours worked and cycle based as well. It's complex. I believe we couldn’t use the LP Plans applying the caps because the timing of when the cap is applied by the system. Because of the user exit, I think it was applying the cap prior to looking at the accrual and the usage in the user exit. We had tested it and found it did not work correctly.
APS-D
Posts: 3
8/12/2013 1:37 AM
Jaherb is correct. You may want to use LP70 to generate your adjustment transaction.
Or you can write a batch program to update TAEMPTRANS. Let your LPCUSTOMPD compute accruals per your cycle based calc. Then batch program will kick in somewhere before LP140 and write an off-setting transaction (difference between running total for the plan and the limit). Be sure to use the correct trans type, status etc. If you want the overage to go to a seperate bucket, you may have to write a corresponding (in) transaction for that plan as well.
LP140 will then kick in, update the TAEEMASTER and keep the balance (LP31) in sync with your TAEMPTRANS (LP64.3).
As an example, lets say SICK plan has a 400 hour limit
Employee ABC for the pay-period ending has the following numbers -
Let's say - the beginning balance from 7/31 = 398 hours
8/12 hours used = -2 - running total 396 (from standard time processing)
8/15 hours accrued = 4.8 - running total 400.8 (this is standard time procesing with LPCUSTOMPD I assume)
8/15 hours lost = -0.8 - running total 400 (this transaction will be written by your new batch program)
LP140 will update master balances and your LP31 will reflect the correct balances to go with your transactions.
Chesca
Veteran Member
Posts: 490
8/13/2013 11:57 AM
Thank you both for your input, it's greatly appeciated. Actually LPCUSTOMPD is called by LP140 to calculate accruals and the balances at this point are zero until LP197 is run to close transactions. So the new batch program would have to kick in after and to update the balances (TAEEMASTER, TAEMPTRANS, TATRANSUM). So the beginning balance = 400.8. I will apply the caps and the new balance should be 400. The hours lost = 0.8 should go to a separate bucket, where should hours lost be stored?
APS-D
Posts: 3
8/13/2013 7:43 PM
You can create a plan called OVERAGE and enroll all active employees in it. And, let hours lost go to the overage bucket. The overage plan in LP64.3 will reflect trasactions for hours lost from each plan that go over the limit.
Chesca
Veteran Member
Posts: 490
8/15/2013 10:51 AM
Ok, will do. Thank you again
Please
login
to post a reply.