Who's Online
1 registered (CT), 7 Guests and 3 Spiders online.
Key: Admin, Global Mod, Mod
Recent Posts
Concurrent Request - running slow
by CT
Today at 11:16 AM
Element to recover value in balance on leaving
by jkavia
Today at 11:04 AM
P11d's
by jkavia
Today at 10:49 AM
Assignment EIT not displaying in Self Service
by CT
Today at 06:45 AM
Vehicle Mileage Setup
by Chris Abraham
Yesterday at 12:24 PM
In which table is external learning data stored
by DMC
Yesterday at 08:45 AM
Oracle Payroll and Cash Management
by Gus
20/05/12 11:27 AM
Pension Auto Enrolment
by CT
18/05/12 09:46 AM
11.5.10 "Extended Support" extended til..... when?
by Vigneswar Battu
17/05/12 10:59 AM
Hacking element definitions
by CT
15/05/12 08:42 AM
Top Posters (30 Days)
CT 38
delboy 36
Vigneswar Battu 15
pat.woodall 9
bcooper 4
Gus 4
DMC 3
Mani 3
7Giri 3
Ryan 3
(Views)Popular Topics
Family Pack K issues thread 20153
CREATE_GRADE api returns:PLS-00306: wrong number o 15194
Still trying to locate... 13844
Creating hr jobs ORA-20001: HR_289477_JOB_GROUP_ID 11889
Viewing Output of another user 10307
HR_PF.K RUP4 10271
Review of my Release 12 laptop 9733
Enhanced Retro & Release 12 9397
Adding a taskflow button to a form 9129
Family Pack K 7906
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#3832 - 22/12/08 02:48 PM Bank sort code validation
cbrookes Offline
nothin' better to do

Registered: 14/03/05
Posts: 197
Loc: Detained at HM pleasure
Has anyone implemented Bank Sort code validation? I just want an estimate of the effort involved to implement please.

Top
#3833 - 23/12/08 06:27 AM Re: Bank sort code validation [Re: cbrookes]
delboy Offline
veteran

Registered: 15/03/05
Posts: 594
Loc: Somewhere in Berkshire
Hi Brooksy,

I don't think there is much to it (well, not from a funky point of view). You just need a CD from BACS of the bank sort codes to load to a table and I think there is a profile option to switch it on but I might be wrong.

Cheers,

Delboy

Top
#3834 - 23/12/08 09:22 AM Re: Bank sort code validation [Re: delboy]
CT Online   content
Guru
***

Registered: 11/03/05
Posts: 1185
Loc: Bath
CB

Profile option is 'HR:Enable Bank Branch Validation' - Yes/No

I seem to recall the data (and updates) was available by subscription from e.g. Reed Business Publishing for some extortionate fee.

I also seem to recall that the data can be held in the payroll table PAY_BANK_BRANCHES, however at the implementation of payroll for a well-known government organization concerned with defence, the data was actually held in the payables equivalent (AP_BANK_BRANCHES) and shared by payroll. Not 100% sure how that was achieved, whether it was standard or custom functionality.
_________________________
L&K
CT

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

Top
#3835 - 23/12/08 12:15 PM Re: Bank sort code validation [Re: CT]
cbrookes Offline
nothin' better to do

Registered: 14/03/05
Posts: 197
Loc: Detained at HM pleasure
So all you need to do is write a concurrent process which does a SQL*Ldr into temp tables and then another process which calls the appropriate API? As I assume you get the updates from BACS at intervals.
I'd rather just go with Delboys answer and just switch a Profile on!!

Top
#3837 - 23/12/08 01:39 PM Re: Bank sort code validation [Re: cbrookes]
CT Online   content
Guru
***

Registered: 11/03/05
Posts: 1185
Loc: Bath
CB

I rather get the impression you'd need to do both - it's one thing to say 'validate sort codes' it's another entirely to populate the table that contains the correct values. I tried looking for a standard concurrent process (on my standalone R12 instance) that might do that for you, but sadly no luck. Having said that, it should be fairly straightforward to knock up a sql*loader thing to do the uploading directly to the PAY_BANK_BRANCHES and/or AP_BANK_BRANCHES.

As for the data itself, I recall RBP did quarterly updates to the sort-code listing, not sure if BACS themselves do a similar thing or any more frequently than that?
_________________________
L&K
CT

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

Top
#3838 - 23/12/08 02:04 PM Re: Bank sort code validation [Re: CT]
cbrookes Offline
nothin' better to do

Registered: 14/03/05
Posts: 197
Loc: Detained at HM pleasure
I was joking when I said I would go with Delboys simple solution, his response was the sort of thing you expect from a "funkie".
I'll quote the client 5 days and that should be enough time to knock up a Concurrent Program or two.

Top
#3840 - 23/12/08 02:21 PM Re: Bank sort code validation [Re: cbrookes]
CT Online   content
Guru
***

Registered: 11/03/05
Posts: 1185
Loc: Bath
Ah, sense of humour, I vaguely remember having one of those!

Possibly the attached file (assuming the upload bit worked of course) will help... it's the help text from the online help on the 'setup personal pay method' screen. Interestingly it talks of using APIs to populate the tables, which I guess means they must exist now, although beggared if I could find 'em....

Edit: They do exist, the package doesn't end in _API though. Well there's consistent... (PAY_BANK_BRANCHES_PKG is yer man)


Attachments
pay_bank_branches_validation.txt (308 downloads)
Description: Online help for setting up bank branch validation




Edited by CT (23/12/08 02:34 PM)
_________________________
L&K
CT

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

Top
#3843 - 23/12/08 02:51 PM Re: Bank sort code validation [Re: cbrookes]
bcooper Offline

Guru
*****

Registered: 11/03/05
Posts: 1112
Loc: Earth, Europe, England, here
Originally Posted By: cbrookes
I was joking when I said I would go with Delboys simple solution, his response was the sort of thing you expect from a "funkie".
I'll quote the client 5 days and that should be enough time to knock up a Concurrent Program or two.


5 Days!
I'll do it for you in 3 smile
_________________________
HCM Aces is for sale! Please contact me if you are interested.
Also my random musings courtesy of Twitter

Top
#3847 - 23/12/08 04:20 PM Re: Bank sort code validation [Re: bcooper]
cbrookes Offline
nothin' better to do

Registered: 14/03/05
Posts: 197
Loc: Detained at HM pleasure
Didn't you do it at that place in Warwick?

Top
#3849 - 23/12/08 08:45 PM Re: Bank sort code validation [Re: cbrookes]
delboy Offline
veteran

Registered: 15/03/05
Posts: 594
Loc: Somewhere in Berkshire
5 days? Like I said, there's not much to it.

Don't forget the commit!!

Delboy

Top
Page 1 of 2 1 2 >



Moderator:  bcooper, CT 
Forum Stats
791 Members
48 Forums
1582 Topics
7651 Posts

Max Online: 67 @ 14/04/12 05:38 PM
Today's Birthdays
No Birthdays
Recent vacancies
Top Posters
CT 1185
bcooper 1112
delboy 594
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