DBA Data[Home] [Help]

PACKAGE: APPS.ENG_ECO_COST

Source


1 PACKAGE Eng_Eco_Cost AUTHID CURRENT_USER AS
2 /* $Header: ENGCOSTS.pls 120.2 2006/03/27 06:55:54 sdarbha noship $ */
3 
4 	-- Global variable to store the esitmated cost so that the
5 	-- report can read it.
6 	g_estimated_cost	NUMBER;
7 
8         PROCEDURE Eco_Cost_Calculate ( p_change_notice IN varchar2,
9                                        p_org_id        IN number,
10                                        p_plan_name     IN varchar2,
11                                        p_start_date    IN DATE,
12                                        p_end_date      IN DATE,
13                                        p_query_id      IN number);
14 
15 	FUNCTION get_estimated_cost RETURN NUMBER;
16 
17 END Eng_Eco_Cost;