DBA Data[Home] [Help]

PACKAGE: APPS.BOM_TEST_SUBSCR_PKG

Source


1 package Bom_Test_Subscr_PKG as
2 /* $Header: BOMTSUBS.pls 120.6 2008/05/29 20:30:22 atjen ship $ */
3 /**
4   * This package provides function for testing BOM business events.
5   */
6 /***************************************************************************
7 --
8 --  Copyright (c) 1996 Oracle Corporation, Redwood Shores, CA, USA
9 --  All rights reserved.
10 --
11 --  FILENAME
12 --
13 --      BOMTSUBS.pls
14 --
15 --  DESCRIPTION
16 --
17 --      This package is used to test the BOM business events.
18 --
19 --  NOTES
20 --
21 --  HISTORY
22 --
23 -- 24-Oct-2005   Selva Radhakrishnan   Initial Creation
24 ***************************************************************************/
25 
26   /**
27     * This function is used to test the business events raised
28     * in BOM APIs and BOs.
29     */
30 
31 FUNCTION bom_test_subscription (p_subscription_guid IN RAW,
32                                  p_event IN OUT NOCOPY wf_event_t)
33 RETURN VARCHAR2;
34 
35   /**
36     * This function is used to test the business events raised
37     * in BOM APIs and BOs.
38     */
39 
40 PROCEDURE SET_BOM_EVENT_INFO
41 (
42     itemtype  in varchar2,
43     itemkey   in varchar2,
44     actid     in number,
45     funcmode  in varchar2,
46     result    in out NOCOPY varchar2
47 );
48 
49 
50 END Bom_Test_Subscr_PKG;