DBA Data[Home] [Help]

PACKAGE BODY: APPS.PAY_USER_CHECK

Source


1 package body pay_user_check as
2 /* $Header: pyusrchk.pkb 115.0 99/07/17 06:46:01 porting ship $ */
3 --
4 /*
5  Copyright (c) Oracle Corporation 1993,1994,1995.  All rights reserved
6 
7 /*
8 
9  Name         : pay_user_check
10  Description  : Process for allowing the user to carry out any
11                 additional checks on the uploaded element entries.
12  Author       : S.Toor
13  Date Created : 27-Apr-95
14  $Version$
15 
16  Change List
17  -----------
18  Date        Name            Vers     Bug No   Description
19  +-----------+---------------+--------+--------+-----------------------+
20   27-Apr-1995 S.Toor          1.0               First Created.
21   10-Jul-1997 mfender         110.1             Corrected error check
22                                                 condition
23  +-----------+---------------+--------+--------+-----------------------+
24 */
25 --
26  -----------------------------------------------------------------------
27  -- NAME                                                              --
28  -- pay_user_check.validate_header                                        --
29  --                                                                   --
30  -- DESCRIPTION                                                       --
31  -- Given a batch id it will carry out any additional user defined    --
32  -- checks on the batch header.  Depending upon the outcome of the    --
33  -- checks an appropriate status and if necessary a message will be   --
34  -- returned for the batch header.                                    --
35  -----------------------------------------------------------------------
36 --
37 procedure validate_header
38 (
39 p_batch_id	in	number,
40 p_status	in out	varchar2,
41 p_message	out	varchar2
42 ) is
43 --
44 begin
45   null;
46 end validate_header;
47 --
48  -----------------------------------------------------------------------
49  -- NAME                                                              --
50  -- pay_user_check.check_control                                          --
51  --                                                                   --
52  -- DESCRIPTION                                                       --
53  -- Given a batch id it will carry out any user defined control checks--
54  -- on the batch. Depending upon the outcome of the checks an         --
55  -- appropriate status and if necessary a message will be returned for--
56  -- each type of control check carried out on the batch.              --
57  -----------------------------------------------------------------------
58 --
59 procedure check_control
60 (
61 p_batch_id		in	number,
62 p_control_type		in	varchar2,
63 p_control_total		in	varchar2,
64 p_status		in out	varchar2,
65 p_message		out	varchar2
66 ) is
67 --
68 begin
69   null;
70 end check_control;
71 --
72  -----------------------------------------------------------------------
73  -- NAME                                                              --
74  -- pay_user_check.validate_line                                          --
75  --                                                                   --
76  -- DESCRIPTION                                                       --
77  -- Given a batch line id it will carry out any additional            --
78  -- user defined checks for each line associated with the batch.      --
79  -- Depending upon the outcome of the checks an appropriate status    --
80  -- and if necessary a message will be returned for each batch line.  --
81  -----------------------------------------------------------------------
82 --
83 procedure validate_line
84 (
85 p_batch_line_id	in	number,
86 p_status	in out	varchar2,
87 p_message	out	varchar2
88 ) is
89 --
90 begin
91   null;
92 end validate_line;
93 --
94 end pay_user_check;