Who's Online
1 registered (CT), 9 Guests and 5 Spiders online.
Key: Admin, Global Mod, Mod
Recent Posts
P11d's
by CT
07:06 AM
Oracle eBsuiness HRMS Trusted Recon Query Help
by CT
02:24 PM
Concurrent Request - running slow
by CT
12:48 PM
Pension Auto Enrolment
by delboy
12:13 PM
Oracle eBsuiness HRMS Trusted Reconcilaition Help
by Mani
07:35 AM
Element to recover value in balance on leaving
by jkavia
22/05/12 11:04 AM
Assignment EIT not displaying in Self Service
by CT
22/05/12 06:45 AM
Vehicle Mileage Setup
by Chris Abraham
21/05/12 12:24 PM
In which table is external learning data stored
by DMC
21/05/12 08:45 AM
Oracle Payroll and Cash Management
by Gus
20/05/12 11:27 AM
Top Posters (30 Days)
CT 39
delboy 38
Vigneswar Battu 15
pat.woodall 10
Mani 6
Gus 4
bcooper 4
7Giri 3
DMC 3
Ryan 3
(Views)Popular Topics
Family Pack K issues thread 20174
CREATE_GRADE api returns:PLS-00306: wrong number o 15201
Still trying to locate... 13857
Creating hr jobs ORA-20001: HR_289477_JOB_GROUP_ID 11911
Viewing Output of another user 10334
HR_PF.K RUP4 10303
Review of my Release 12 laptop 9754
Enhanced Retro & Release 12 9405
Adding a taskflow button to a form 9141
Family Pack K 7911
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#4392 - 21/04/09 11:29 AM Retro on User Table Value Updates
kp_rapolu Offline
claiming squatters rights

Registered: 15/11/07
Posts: 213
Loc: U.K
Hi,

Retropay(Enhanced) is unable to pickup the changes on the UDT values.

Any idea on that.Is there any configuration missing?

thanks
KP/..
_________________________
Krishna Prasad Rapolu
Oracle HRMS Consultant

Top
#4393 - 21/04/09 12:30 PM Re: Retro on User Table Value Updates [Re: kp_rapolu]
delboy Offline

veteran

Registered: 15/03/05
Posts: 597
Loc: Somewhere in Berkshire
Hi KP,

This has always been a problem. I take it you are simply making a backdated change to a value in a UDT. Retropay relies on triggers that are set by changes to, in the main, the person assignment or element entries. As nothing has changed against the person retropay doesn't know who to re-calculate. With Retropay by Element you could always get round the problem by manually creating an assignment set. Not sure how this would work in Enhanced Retropay.

Delboy

Top
#4394 - 21/04/09 01:07 PM Re: Retro on User Table Value Updates [Re: delboy]
kp_rapolu Offline
claiming squatters rights

Registered: 15/11/07
Posts: 213
Loc: U.K
Hmm..........Ya I am wondering how to get this done.I have to raise SR.
_________________________
Krishna Prasad Rapolu
Oracle HRMS Consultant

Top
#4395 - 21/04/09 04:56 PM Re: Retro on User Table Value Updates [Re: kp_rapolu]
bcooper Offline

Guru
*****

Registered: 11/03/05
Posts: 1112
Loc: Earth, Europe, England, here
I'm sure i've done some work on custom retro triggers for items that are not supported out of the box - i'd have to check through my code archive to be sure.

Will get back to you on this one.
_________________________
HCM Aces is for sale! Please contact me if you are interested.
Also my random musings courtesy of Twitter

Top
#5541 - 24/06/10 04:22 AM Re: Retro on User Table Value Updates [Re: bcooper]
MarinaH Offline
nothin' better to do

Registered: 21/08/05
Posts: 110
Loc: Away with the fairies
Hi Baz,

Did you happy to come across any custom retro code? I'm on the hunt for some ideas on adding code to the pay_group_event_pkg..

Thanks

Marina

Top
#5542 - 24/06/10 09:01 AM Re: Retro on User Table Value Updates [Re: MarinaH]
Sudhir Offline
hanger-on

Registered: 02/02/09
Posts: 53
Loc: UK
Hi Marina,

Hope this info helps you.

Have a quick look into the Event group ( total compensation --> Basic --> Event group), in the list of tables available for the retro event group, PAY_USER_COLUMN_INSTANCES_F is available,which is the user defined table. I guess by including this in your retro event group, the retro should pickup the changes. i have not tested, please check and confirm.

Cheers
Sudhir

Top
#5562 - 30/06/10 08:03 AM Re: Retro on User Table Value Updates [Re: Sudhir]
MarinaH Offline
nothin' better to do

Registered: 21/08/05
Posts: 110
Loc: Away with the fairies
Hi Sudhir,

We have found that when pay_user_column_instances_f and ff_globals is in the event group and there is no code in the pay_group_event_pkg, any chance to a global value or udt causes all employees being returned in the retro report.

Support have told us that we need to add some custom code to the package, and I'm struggling to find any examples of what has been done before. I need to make sure I'm on the right track!

Take care

Marina

Top
#5563 - 30/06/10 08:53 AM Re: Retro on User Table Value Updates [Re: MarinaH]
CT Online   content
Guru
***

Registered: 11/03/05
Posts: 1189
Loc: Bath
Wotcher Lubble

I think we do something of that nature here, but not with UDTs. We have a process which populates/updates PAY_RETRO_ASSIGNMENTS with relevant recalc dates based on changes to things like Grade rate.

With anything like this, the trick is to be able to establish a list of assignments that make use of the entity that has had a change of some kind. In the case of stuff to do with grades, that's fairly straightforward - the grade_id is on the assignment of course.

For UDTs, however, the water becomes a whole lot muddier. For one thing, it's highly likely that you will have many different UDT structures defined which rely on completely different items of information to determine the end result cell value. The issue is further complicated by the number of rows/columns that might be defined. If that wasn't complicated enough for you, you have to add in the fact that ultimately, the reference row/column values that are used to seek a particular cell value might themselves be derived in some way - at the end of the day, UDTs are accessed by formulas (via the get_table_value function of course) of which there may be many, and themselves all different. In short, your custom code would have to pre-empt what cell value the formula would have returned from the relevant UDT, in the case of each assignment

There, have I cheered you up now? cry

_________________________
L&K
CT

Remember: A dog is for life, not just for Christmas... unless you're in Korea

Top
#5566 - 30/06/10 12:23 PM Re: Retro on User Table Value Updates [Re: CT]
delboy Offline

veteran

Registered: 15/03/05
Posts: 597
Loc: Somewhere in Berkshire
Phew!!! That was a mouthful.

Top
#5569 - 30/06/10 04:04 PM Re: Retro on User Table Value Updates [Re: delboy]
PeterP Offline
hacker
*****

Registered: 08/03/07
Posts: 94
Loc: Manchester, UK
Hello CT,

Slightly off topic, but in relation to the Retro against Grade Points issue you mentioned (I realise you already have a working solution), an alternative approach is to use Grade Ladders, through Total Compensation Setup Wizard. This results in the creation of Pay Proposals and associated element entries whenever an employee's grade point is changed, or the associated grade point values are changed. Hence, you basic pay formula is MUCH simpler, and the standard retro events and proration functionality also operates.

Doesn't help with changes to UDT's though.

Regards,

Peter.

Top
Page 1 of 2 1 2 >



Moderator:  CT, delboy 
Forum Stats
792 Members
48 Forums
1584 Topics
7664 Posts

Max Online: 67 @ 14/04/12 05:38 PM
Today's Birthdays
No Birthdays
Recent vacancies
Top Posters
CT 1189
bcooper 1112
delboy 597
Geoff Dixon 369
SBi 356
vkumar 223
kp_rapolu 213
cbrookes 197
Gavin Harris 163
Gus 146
May
Su M Tu W Th F Sa
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31