DBA Data[Home] [Help]

PACKAGE: APPS.HR_NZ_BANK_ACCT_VALIDATION

Source


1 PACKAGE hr_nz_bank_acct_validation AS
2 /* $Header: penzavbk.pkh 120.0.12010000.1 2008/07/28 05:03:52 appldev ship $ */
3 /*
4  ******************************************************************
5  *                                                                *
6  *  Copyright (C) 1999 Oracle Corporation Australia Ltd.,         *
7  *                     Brisbane, Australia.                       *
8  *                                                                *
9  *  All rights reserved.                                          *
10  *                                                                *
11  *  This material has been provided pursuant to an agreement      *
12  *  containing restrictions on its use.  The material is also     *
13  *  protected by copyright law.  No part of this material may     *
14  *  be copied or distributed, transmitted or transcribed, in      *
15  *  any form or by any means, electronic, mechanical, magnetic,   *
16  *  manual, or otherwise, or disclosed to third parties without   *
17  *  the express written permission of Oracle Corporation          *
18  *  Australia Ltd,.                                               *
19  *                                                                *
20  ****************************************************************** */
21 /*
22  Name        : hr_nz_bank_acct_validation  (HEADER)
23 
24  Description : This package declares a function  to validate
25                NZ bank accounts.
26 
27  Change List
28  -----------
29 
30  Version Date      Author     ER/CR No. Description of Change
31  -------+---------+----------+---------+--------------------------
32  110.0   14-May-99 pmcdonal             Created
33 
34  ================================================================= */
35 
36   FUNCTION validate_acct (
37 			p_bank_branch_number	IN VARCHAR2,
38 			p_account_number	IN VARCHAR2,
39 			p_account_suffix	IN VARCHAR2
40 		  	)
41   RETURN VARCHAR2;
42   PRAGMA RESTRICT_REFERENCES(validate_acct, WNDS);
43 
44   END hr_nz_bank_acct_validation;