Who's Online
0 registered (), 3 Guests and 5 Spiders online.
Key: Admin, Global Mod, Mod
Recent Posts
Update EIT in SSHR
by Sahir
03:45 PM
End of Year Legislation Patch for 11i
by delboy
01:35 PM
Interfacing iRec and external sites
by DanC
11:42 PM
Capturing, Storing, & Paying Banked Overtime
by Paul
08:51 PM
Time and Labour & Oracle Projects
by Paul
07:34 PM
Search Engine Optimizers
by delboy
01:30 PM
Abseces in oracle hrms, super user: how to do I:
by JayTee
07:26 AM
Function for getting retropay-maintained balances
by CT
08/02/12 12:21 PM
Grade End Date
by Chris
03/02/12 10:46 AM
OLM Mandatory Enrolments
by bcooper
01/02/12 12:23 PM
Top Posters (30 Days)
CT 26
delboy 25
bcooper 15
Sahir 5
Gus 5
tovia123 4
Tim Bailey 3
christm 3
SBi 3
Simon_Mc 3
(Views)Popular Topics
Family Pack K issues thread 18216
CREATE_GRADE api returns:PLS-00306: wrong number o 13757
Still trying to locate... 12193
Creating hr jobs ORA-20001: HR_289477_JOB_GROUP_ID 10646
Viewing Output of another user 9131
HR_PF.K RUP4 8841
Review of my Release 12 laptop 8494
Adding a taskflow button to a form 7855
Enhanced Retro & Release 12 7679
Family Pack K 7116
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#4392 - 21/04/09 10: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 11:30 AM Re: Retro on User Table Value Updates [Re: kp_rapolu]
delboy Offline

veteran

Registered: 15/03/05
Posts: 500
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 12: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 03:56 PM Re: Retro on User Table Value Updates [Re: kp_rapolu]
bcooper Offline

Guru
*****

Registered: 11/03/05
Posts: 1095
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 03: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 08: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 07: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 07:53 AM Re: Retro on User Table Value Updates [Re: MarinaH]
CT Online   content
Guru
***

Registered: 11/03/05
Posts: 1080
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 11:23 AM Re: Retro on User Table Value Updates [Re: CT]
delboy Offline

veteran

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

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

Registered: 08/03/07
Posts: 92
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
756 Members
48 Forums
1517 Topics
7286 Posts

Max Online: 63 @ 24/11/10 07:21 AM
Today's Birthdays
No Birthdays
Recent vacancies
Tea boy available 4 basic chores & some! services
by Simon_Mc
19/01/12 03:59 PM
Top Posters
bcooper 1095
CT 1080
delboy 500
Geoff Dixon 369
SBi 344
vkumar 223
kp_rapolu 213
cbrookes 197
Gavin Harris 160
Gus 132
February
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