DBA Data[Home] [Help]

PACKAGE: APPS.BEN_PLAN_DESIGN_DELETE_API

Source


1 package ben_plan_design_delete_api as
2 /* $Header: bepdwdel.pkh 120.1 2006/04/11 17:08 ashrivas noship $ */
3 -- p_validate 0 means false
4 
5 -- ----------------------------------------------------------------------------
6 -- |--------------------------< <call_delete_apis> >--------------------------|
7 -- ----------------------------------------------------------------------------
8 -- {Start Of Comments}
9 --
10 -- Description:
11 --
12 --
13 -- Prerequisites:
14 -- In Parameters:
15 --   Name                           Reqd Type     Description
16 -- Post Success:
17 --   Name                           Type     Description
18 -- Post Failure:
19 -- Access Status:
20 --   Internal Development Use Only.
21 
22 procedure call_delete_apis
23 ( p_process_validate in Number default 0
24  ,p_copy_entity_txn_id in Number
25  ,p_delete_failed out nocopy varchar2
26 ) ;
27 
28 
29 -- this procedure will call delete apis on a limited set using the
30 -- p_pd_parent_entity_result_id  which is the id of the entity which was deleted
31 
32 -- ----------------------------------------------------------------------------
33 -- |--------------------------< <call_delete_apis_for_hierarchy> >--------------------------|
34 -- ----------------------------------------------------------------------------
35 -- {Start Of Comments}
36 --
37 -- Description:
38 -- Prerequisites:
39 -- In Parameters:
40 --   Name                           Reqd Type     Description
41 -- Post Success:
42 --   Name                           Type     Description
43 -- Post Failure:
44 -- Access Status:
45 --   Internal Development Use Only.
46 
47 procedure call_delete_apis_for_hierarchy
48 ( p_process_validate in Number default 0
49  ,p_copy_entity_txn_id in Number
50  ,p_parent_entity_result_id in varchar2
51  ,p_delete_failed out nocopy varchar2
52 ) ;
53 
54 
55 
56 end ben_plan_design_delete_api;