DBA Data[Home] [Help]

PACKAGE: APPS.WIP_EXPLODE_PHANTOM_RTGS

Source


1 PACKAGE WIP_EXPLODE_PHANTOM_RTGS AUTHID CURRENT_USER AS
2 /* $Header: wiphrtgs.pls 115.8 2002/12/12 14:46:17 rmahidha ship $ */
3 
4 /*=====================================================================+
5  | PROCEDURE
6  |   EXPLODE_RESOURCES
7  |
8  | PURPOSE
9  |   Explode resources for phantom routings
10  |
11  | ARGUMENTS
12  |   IN
13  |     p_phantom_item_id    Phantom item whose routing we'll explode
14  |     p_op_seq_num  	    OP Seq of phantom item in WRO, also the parent
15  | 			    operation
16  |			    the exploded resources attached to
17  |
18  |
19  +=====================================================================*/
20   procedure explode_resources(
21     p_wip_entity_id     in number,
22     p_sched_id          in number,
23     p_org_id            in number,
24     p_entity_type	in number,
25     p_phantom_item_id   in number,
26     p_op_seq_num 	in number,
27     p_rtg_rev_date      in date);
28 
29 /*=====================================================================+
30  | PROCEDURE
31  |   CHARGE_FLOW_RESOURCE_OVHD
32  |
33  | PURPOSE
34  |   Explode resources for phantom routings for WOC
35  |
36  | NOTES
37  |
38  +=====================================================================*/
39   function charge_flow_resource_ovhd(
40     p_org_id            in number,
41     p_phantom_item_id   in number,
42     p_op_seq_num        in number,
43     p_comp_txn_id	in number,
44     p_txn_temp_id	in number,
45     p_line_id		in number,
46     p_rtg_rev_date	in varchar2) return number;
47 
48 
49 END WIP_EXPLODE_PHANTOM_RTGS;