DBA Data[Home] [Help]

PACKAGE: APPS.PO_APPROVAL_LIST_HISTORY_SV

Source


1 PACKAGE PO_APPROVAL_LIST_HISTORY_SV AUTHID CURRENT_USER AS
2 /* $Header: POXWAHIS.pls 115.2 2002/11/26 21:59:07 kagarwal ship $*/
3 
4 procedure Forward_Action_History(itemtype           in varchar2,
5                                 itemkey             in varchar2,
6                                 x_approval_path_id  in number,
7 				x_req_header_id     in number,
8 				x_forward_to_id     in number default null);
9 
10 procedure Update_Action_History(itemtype        in varchar2,
11                                 itemkey         in varchar2,
12 				x_action	in varchar2,
13 				x_req_header_id in number,
14 				x_last_approver in boolean,
15 				x_note          in varchar2);
16 
17 /* Bug# 2684757: kagarwal
18 ** Desc: Added new procedure to insert null action in
19 ** po_action_history for the Requisition if it does not exists.
20 */
21 procedure Reserve_Action_History(x_approval_path_id in number,
22                                  x_req_header_id    in number,
23                                  x_approver_id      in number);
24 
25 END PO_APPROVAL_LIST_HISTORY_SV;