DBA Data[Home] [Help]

PACKAGE: APPS.IBY_ECAPP_PKG

Source


1 package iby_ecapp_pkg AUTHID CURRENT_USER as
2 /*$Header: ibyecaps.pls 115.8 2002/11/18 22:04:37 jleybovi ship $*/
3 
4 /*
5 ** Function: ecappExists.
6 ** Purpose: Check if the specified ecappid exists or not.
7 */
8 function ecappExists(i_ecappid in iby_ecapp.ecappid%type)
9 return boolean;
10 
11 
12 /*
13 ** Name : iby_ecapp_pkg
14 ** Purpose : Provides interface to register an ecapp application.
15 **           Using ecapp id, information about the ecapp can be
16 **           retrieved.
17 */
18 /*
19 ** Procedure Name : createEcApp
20 ** Purpose : creates an entry in the ecapp table. Returns the id created
21 **           by the system.
22 **
23 ** Parameters:
24 **
25 **    In  : i_ecappname
26 **    Out : io_ecappid.
27 **
28 */
29 procedure createEcApp(i_ecappname iby_ecapp.name%type,
30 			i_app_short_name iby_ecapp.application_short_name%type,
31                       io_ecappid in out nocopy iby_ecapp.ecappid%type);
32 
33 
34 /*
35 ** Procedure Name : modEcApp
36 ** Purpose : modifies an entry in the ecapp table corresponding to id.
37 **
38 ** Parameters:
39 **
40 **    In  : i_ecappname, i_ecappid
41 **    Out : None
42 */
43 procedure modEcApp(i_ecappid iby_ecapp.ecappid%type,
44                    i_ecappname iby_ecapp.name%type,
45 		i_app_short_name iby_ecapp.application_short_name%type,
46 		   i_object_version iby_ecapp.object_version_number%type);
47 end iby_ecapp_pkg;