DBA Data[Home] [Help]

PACKAGE: APPS.AZW_UTIL

Source


1 package AZW_UTIL AUTHID CURRENT_USER as
2 /* $Header: AZWUTILS.pls 115.1 99/07/16 19:31:17 porting  $: */
3 
4 -- UpdateDocUrl
5 --   Called by AIWStart
6 --   Update the urls in the specific implementation workflow to reflect
7 -- site specific information.
8 --   Used by the new UI.
9 --
10 procedure UpdateDocUrl(
11   p_itemtype in varchar2,
12   p_workflow in varchar2);
13 
14 -- IsProductInstalled
15 --   Called by workflow engine in branching functions activities.
16 --   Check whether the product associated with the workflow is installed
17 -- or not.
18 --
19 procedure IsProductInstalled(
20   itemtype    in  varchar2,
21   itemkey     in  varchar2,
22   actid       in  number,
23   funcmode    in  varchar2,
24   result      out varchar2 );
25 
26 -- CheckProduct
27 --   Called by IsProcessRunnable
28 --   Check whether a product is installed
29 --
30 function CheckProduct(
31   prod_name in varchar2)
32   return varchar2;
33 
34 PRAGMA RESTRICT_REFERENCES(CheckProduct, WNDS, WNPS);
35 
36 -- Callback
37 --   Called by notification form to do context checking
38 --
39 procedure Callback(
40   itemtype    in  varchar2,
41   itemkey     in  varchar2,
42   actid       in  number,
43   command     in  varchar2,
44   result      in out varchar2 );
45 
46 -- PreviousStep
47 --   Called by notification form
48 --   Go back to the previous notification.
49 --
50 procedure PreviousStep(
51   itemtype    in  varchar2,
52   itemkey     in  varchar2,
53   result      out varchar2);
54 
55 end AZW_UTIL;
56