DBA Data[Home] [Help]

PACKAGE: APPS.OE_RMA_WF

Source


1 package OE_RMA_WF AUTHID CURRENT_USER as
2 /* $Header: OEXWRMAS.pls 120.0.12010000.2 2010/02/12 11:55:01 nshah ship $	*/
3 
4 -- PROCEDURE XX_ACTIVITY_NAME
5 --
6 -- <describe the activity here>
7 --
8 -- IN
9 --   itemtype  - type of the current item
10 --   itemkey   - key of	the current item
11 --   actid     - process activity instance id
12 --   funcmode  - function execution mode ('RUN', 'CANCEL', 'TIMEOUT', ...)
13 -- OUT
14 --   result
15 --	 - COMPLETE[:<result>]
16 --	     activity has completed with the indicated result
17 --	 - WAITING
18 --	     activity is waiting for additional	transitions
19 --	 - DEFERED
20 --	     execution should be defered to background
21 --	 - NOTIFIED[:<notification_id>:<assigned_user>]
22 --	     activity has notified an external entity that this
23 --	     step must be performed.  A	call to	wf_engine.CompleteActivty
24 --	     will signal when this step	is complete.  Optional
25 --	     return of notification ID and assigned user.
26 --	 - ERROR[:<error_code>]
27 --	     function encountered an error.
28 
29 procedure Create_Outbound_Shipment(
30     itemtype  in varchar2,
31     itemkey   in varchar2,
32     actid     in number,
33     funcmode  in varchar2,
34     resultout in out nocopy varchar2 /* file.sql.39 change */
35 );
36 
37 procedure Is_Return_Line(
38     itemtype  in varchar2,
39     itemkey   in varchar2,
40     actid     in number,
41     funcmode  in varchar2,
42     resultout in out nocopy varchar2 /* file.sql.39 change */
43 );
44 
45 procedure Is_Line_Receivable(
46     itemtype  in varchar2,
47     itemkey   in varchar2,
48     actid     in number,
49     funcmode  in varchar2,
50     resultout in out nocopy varchar2 /* file.sql.39 change */
51 );
52 
53 procedure Wait_For_Receiving(
54     itemtype  in varchar2,
55     itemkey   in varchar2,
56     actid     in number,
57     funcmode  in varchar2,
58     resultout in out nocopy varchar2 /* file.sql.39 change */
59 );
60 
61 /* 6629220: Start */
62 PROCEDURE UPD_FLOW_STATUS_CODE_REJ(
63  itemtype 	IN 	VARCHAR2
64 ,itemkey 	IN 	VARCHAR2
65 ,actid 	IN 	NUMBER
66 ,funcmode 	IN 	VARCHAR2
67 ,resultout 	IN OUT NOCOPY /* file.sql.39 change */ 	VARCHAR2
68 );
69 
70 PROCEDURE UPD_FLOW_STATUS_CODE_MIX_REJ(
71  itemtype 	IN 	VARCHAR2
72 ,itemkey 	IN 	VARCHAR2
73 ,actid 	IN 	NUMBER
74 ,funcmode 	IN 	VARCHAR2
75 ,resultout 	IN OUT NOCOPY /* file.sql.39 change */ 	VARCHAR2
76 );
77 /* 6629220: End */
78 
79 end OE_RMA_WF;