DBA Data[Home] [Help]

PACKAGE: APPS.PAY_STANDARD_CHECK

Source


1 PACKAGE pay_standard_check AUTHID CURRENT_USER AS
2 /* $Header: pystdchk.pkh 115.1 2002/12/09 10:33:01 jbarker noship $ */
3 function relevant_total_chk(p_batch_id in number,p_meaning in varchar2) return boolean;
4 /*
5 --
6  -----------------------------------------------------------------------
7  -- NAME                                                              --
8  -- pay_standard_check.check_control                                  --
9  --                                                                   --
10  -- DESCRIPTION                                                       --
11  -- Carries out any totalling require if p_control type is recognised --
12  -- as a standard total. Depending upon the outcome of the checks an  --
13  -- appropriate status is returned                                    --
14  -- If p_control_type is not recognised as a standard control then
15  -- not action is taken in this routine. p_std_status indicates whether
16  -- or not p_control_type has been recognised as a standard control total
17  -----------------------------------------------------------------------
18 --
19 */
20 procedure check_control
21 (
22 p_batch_id              in      	number,
23 p_control_type          in      	varchar2,
24 p_control_total         in      	varchar2,
25 p_std_status            out  nocopy	varchar2,
26 p_std_message           out  nocopy	varchar2
27 );
28 end pay_standard_check;