DBA Data[Home] [Help]

PACKAGE: APPS.FND_MO_PRODUCT_INIT_PKG

Source


1 package fnd_mo_product_init_pkg AUTHID CURRENT_USER as
2 /* $Header: AFMOPINS.pls 115.4 2003/09/26 15:11:01 kmaheswa noship $ */
3 
4 
5 --
6 -- register_application (PUBLIC)
7 --   Called by product teams to register their application as
8 --   access enabled
9 -- Input
10 --   p_appl_short_name: application short name
11 --   p_owner: Seed data or Custom data
12 procedure register_application(p_appl_short_name  	in varchar2,
13                                p_owner                  in varchar2);
14 --
15 -- remove_application (PUBLIC)
16 --   Called by product teams to delete their application registration
17 --   as access enabled
18 -- Input
19 --   p_appl_short_name : application short name
20 procedure remove_application(p_appl_short_name       in varchar2);
21 
22 --
23 -- register_application (PUBLIC) - Overloaded
24 --   Called by product teams to register their application as
25 --   access enabled
26 -- Input
27 --   p_appl_short_name: application short name
28 --   p_owner: Seed data or Custom data
29 procedure register_application(p_appl_short_name  	in varchar2,
30                                p_owner                  in varchar2,
31                                p_status                 in varchar2);
32 
33 --
34 -- register_application (PUBLIC) - Overloaded
35 --   Called by product teams to register their application as
36 --   access enabled
37 -- Input
38 --   p_appl_short_name: application short name
39 --   p_owner: Seed data or Custom data
40 --   p_last_update_date: last updated date for the row
41 procedure register_application(p_appl_short_name  	in varchar2,
42                                p_owner                  in varchar2,
43                                p_status                 in varchar2,
44 			       p_last_update_date       in varchar2,
45                                p_custom_mode            in varchar2);
46 
47 end fnd_mo_product_init_pkg;