DBA Data[Home] [Help]

PACKAGE: APPS.ASP_SERVICE_CONTENT_PROVIDER

Source


1 PACKAGE ASP_SERVICE_CONTENT_PROVIDER AUTHID CURRENT_USER as
2 /* $Header: aspasvcs.pls 120.0 2005/08/19 12:57 axavier noship $ */
3 ---------------------------------------------------------------------------
4 -- Package Name:   ASP_SERVICE_CONTENT_PROVIDER
5 ---------------------------------------------------------------------------
6 -- Description:
7 --      Provides content for the Service Alert.
8 --
9 -- Procedures:
10 --   (see below for specification)
11 --
12 -- History:
13 --   15-Aug-2005  axavier created.
14 ---------------------------------------------------------------------------
15 
16 /*-------------------------------------------------------------------------*
17  |                             PUBLIC CONSTANTS
18  *-------------------------------------------------------------------------*/
19 
20 /*-------------------------------------------------------------------------*
21  |                             PUBLIC DATATYPES
22  *-------------------------------------------------------------------------*/
23 
24 /*-------------------------------------------------------------------------*
25  |                             PUBLIC VARIABLES
26  *-------------------------------------------------------------------------*/
27 
28 /*-------------------------------------------------------------------------*
29  |                             PUBLIC ROUTINES
30  *-------------------------------------------------------------------------*/
31 
32 --------------------------------------------------------------------------------
33 --
34 --  Procedure: Create_Content
35 --   Provides content for the Service Alert.
36 --
37 --  Arguments IN/OUT:
38 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
39 --   itemkey   - A string generated from the application object's primary key.
40 --   actid     - The function activity(instance id).
41 --   funcmode  - function execution mode. This is set by the engine
42 --               as either 'RUN', 'CANCEL', 'TIMEOUT'
43 --   resultout - COMPLETE:SUCCESS or NULL
44 --                               activity has completed with the indicated
45 --                               result
46 --
47 --------------------------------------------------------------------------------
48 
49 PROCEDURE Create_Content(
50   itemtype  in VARCHAR2,
51   itemkey   in VARCHAR2,
52   actid     in NUMBER,
53   funcmode  in VARCHAR2,
54   resultout in out NOCOPY VARCHAR2);
55 
56 END ASP_SERVICE_CONTENT_PROVIDER;