DBA Data[Home] [Help]

PACKAGE: APPS.PAY_DK_BAL_UPLOAD

Source


1 PACKAGE PAY_DK_BAL_UPLOAD AS
2 /* $Header: pydkbalupl.pkh 120.1 2007/03/13 07:08:51 saurai noship $ */
3   function expiry_date
4   (
5      p_upload_date       date,
6      p_dimension_name    varchar2,
7      p_assignment_id     number,
8      p_original_entry_id number
9   ) return date ;
10 
11   function is_supported
12   (
13     p_dimension_name varchar2
14   ) return number ;
15 
16   function include_adjustment
17    (
18       p_balance_type_id    number,
19       p_dimension_name     varchar2,
20       p_original_entry_id  number,
21       p_upload_date        date,
22       p_batch_line_id      number,
23       p_test_batch_line_id number
24    ) return number ;
25 
26   -----------------------------------------------------------------------------
27   -- NAME
28   --  validate_batch_lines
29   -- PURPOSE
30   --  Applies DK specific validation to the batch.
31   -- ARGUMENTS
32   --  p_batch_id - the batch to be validate_batch_linesd.
33   -- USES
34   -- NOTES
35   --  This is used by pay_balance_upload.validate_batch_lines.
36   -----------------------------------------------------------------------------
37  --
38   PROCEDURE validate_batch_lines (p_batch_id NUMBER);
39  --
40 
41 
42 END PAY_DK_BAL_UPLOAD;