1 PACKAGE PAY_VOID_UI_PKG AUTHID CURRENT_USER AS
2 /* $Header: pyvoidui.pkh 120.1.12020000.1 2013/03/22 08:09:16 nvankadh noship $ */
3 /*
4 ******************************************************************
5 * *
6 * Copyright (C) 1993 Oracle Corporation UK Ltd., *
7 * Chertsey, England. *
8 * *
9 * All rights reserved. *
10 * *
11 * This material has been provided pursuant to an agreement *
12 * containing restrictions on its use. The material is also *
13 * protected by copyright law. No part of this material may *
14 * be copied or distributed, transmitted or transcribed, in *
15 * any form or by any means, electronic, mechanical, magnetic, *
16 * manual, or otherwise, or disclosed to third parties without *
17 * the express written permission of Oracle Corporation UK Ltd, *
18 * Oracle Park, Bittams Lane, Guildford Road, Chertsey, Surrey, *
19 * England. *
20 * *
21 ******************************************************************
22
23 Name : PAY_VOID_UI_PKG
24 Description : Contains the procedures being called from the Void and
25 Reversal UI.
26 Used By : Void and Reversal Enhancement
27
28 ======================================================================
29
30 Change List
31 ===========
32
33 Version Date Author ER/CR No. Description of Change
34 -------+---------+----------+---------+-------------------------------
35 115.0 03/03/08 ckesanap 6820127 Created the file.
36 ----------------------------------------------------------------------
37 */
38
39 -- ----------------------------------------------------------------------------
40 -- |----------------------------< get_process_name >--------------------------|
41 -- ----------------------------------------------------------------------------
42 --
43 -- Description:
44 -- This function returns the process name in the individual flow which has
45 -- been executed
46 --
47 -- ----------------------------------------------------------------------------
48
49 function get_process_name(p_fnd_request_id in number)return varchar2;
50
51 -- ----------------------------------------------------------------------------
52 -- |-----------------------< retrieve_asg_status >-------------------|
53 -- ----------------------------------------------------------------------------
54 --
55 -- Description:
56 -- This function returns the status of an assignment picked for processing
57 -- Value Returned
58 -- 1 - Assignment is valid for processsing
59 -- 0 - Assignment not valid for processing
60 --
61 -- ----------------------------------------------------------------------------
62 function retrieve_asg_status ( p_process_flow_id in number,
63 p_asg_action_id in number ) return number;
64
65 --
66 END PAY_VOID_UI_PKG;