DBA Data[Home] [Help]

PACKAGE: APPS.OKL_PROPERTY_TAX_STATEMENT_PVT

Source


1 PACKAGE okl_property_tax_statement_pvt AUTHID CURRENT_USER AS
2 /* $Header: OKLRPTSS.pls 120.1 2005/10/30 03:16:58 appldev noship $ */
3   -- Procedure for Property Tax Report Generation
4   -------------------------------------------------------------------------------
5   -- PROCEDURE do_report
6   -------------------------------------------------------------------------------
7   -- Start of comments
8   --
9   -- Procedure Name  : do_report
10   -- Description     : This procedure generates the report for estimated property tax
11   --                 :
12   -- Business Rules  :
13   -- Parameters      : p_errbuf, p_retcode, p_cont_num_from, p_cont_num_to, p_asset_name_from, p_asset_name_to
14   -- Version         : 1.0
15   -- History         : 20-OCT-2004 GIRAO created
16   -- End of comments
17   PROCEDURE do_report(p_errbuf            OUT  NOCOPY VARCHAR2,
18                       p_retcode           OUT  NOCOPY NUMBER,
19                       p_cont_num_from     IN   VARCHAR2,
20                       p_cont_num_to       IN   VARCHAR2,
21                       p_asset_name_from   IN   VARCHAR2,
22                       p_asset_name_to     IN   VARCHAR2);
23 
24   -- Function for length formatting
25   -------------------------------------------------------------------------------
26   -- FUNCTION get_proper_length
27   -------------------------------------------------------------------------------
28   -- Start of comments
29   --
30   -- Function Name   : get_proper_length
31   -- Description     : This function formats the columns in the report
32   --                 :
33   -- Business Rules  :
34   -- Parameters      : p_input_data, p_input_length, p_input_type
35   -- Version         : 1.0
36   -- History         : 20-OCT-2004 GIRAO created
37   -- End of comments
38 
39   FUNCTION get_proper_length(p_input_data         IN   VARCHAR2,
40                              p_input_length       IN   NUMBER,
41                              p_input_type         IN   VARCHAR2) RETURN VARCHAR2;
42 END okl_property_tax_statement_pvt;