DBA Data[Home] [Help]

PACKAGE: APPS.MSC_RULE

Source


1 PACKAGE msc_rule AS
2 -- $Header: MSCRULES.pls 120.1 2005/06/20 23:53:33 appldev ship $
3 
4 --
5 -- Inbound_Rule (PUBLIC)
6 --   Standard MSC Subscription rule function
7 -- IN:
8 --   p_subscription_guid - GUID of Subscription to be processed
9 --   p_event             - Event to be processes
10 -- NOTE:
11 --
12 --   VS - lets discuss not sure why we need this?
13 -- Standard msc rule function
14 function inbound_rule
15 	(
16 	p_subscription_guid	in	raw,
17 	p_event			in out nocopy	wf_event_t
18 	)
19 	return varchar2;
20 
21 end msc_rule;