DBA Data[Home] [Help]

PACKAGE: APPS.WIP_FLOW_CHARGE_UTILITIES

Source


1 Package WIP_Flow_Charge_Utilities AUTHID CURRENT_USER as
2  /* $Header: wipworos.pls 115.7 2002/12/01 12:58:14 simishra ship $ */
3 
4 /**********************************************************************
5                         Private Procedures
6 
7 	This package has three procedures - one for charging the
8 	resources (both Item and Lot based), another for charging
9 	only the Item based Overheads and the last one for charging
10 	only the lot based resources :
11 	1. function Charge_Resources(
12 			   p_txn_temp_id in number,
13                            p_comp_txn_id in number) return number;
14 	2. function Charge_Item_Overheads(p_comp_txn_id in number);
15 	3. function Charge_Lot_Overheads(p_comp_txn_id in number);
16 ***********************************************************************/
17 
18 /* *********************************************************************
19 			Public Procedures
20 ***********************************************************************/
21 function Charge_Resource_Overhead (p_header_id in number,
22 				   p_rtg_rev_date in varchar2) return number;
23 
24 function Validate_Resource_Overhead(p_group_id in number,
25 				    p_err_mesg out NOCOPY varchar) return number;
26 
27 end WIP_Flow_Charge_Utilities;