DBA Data[Home] [Help]

PACKAGE: APPS.JTA_SYNC_TASK_UTL

Source


1 PACKAGE jta_sync_task_utl AUTHID CURRENT_USER AS
2 /* $Header: jtavstns.pls 120.2 2006/02/10 02:47:25 sbarat ship $ */
3 /*=======================================================================+
4 |  Copyright (c) 1995 Oracle Corporation Redwood Shores, California, USA |
5 |                            All rights reserved.                        |
6 +========================================================================+
7 | FILENAME
8 |  jtavstns.pls
9 |
10 | DESCRIPTION
11 |  This package spec defines the utility commonly used for sync.
12 |
13 | NOTES
14 |
15 | UPDATE NOTES
16 | Date          Developer                Change
17 |------------   ---------------     -------------------------------------
18 | 28-May-2002   Chanik Jang         Created.
19 | 10-Feb-2006   Swapan Barat        Added NOCOPY hint for OUT parameter.. Bug# 5029957
20 |                                   (Using dual check-in option to check-in file so that the
21 |                                   code can be propagated in both ver 11 and 12 line, since
22 |                                   NOCOPY is a mandatory mandate for all pl/sql packages.)
23 *=======================================================================*/
24 
25     FUNCTION is_this_first_task(p_task_id IN NUMBER)
26     RETURN BOOLEAN;
27 
28     FUNCTION get_new_first_taskid(p_calendar_start_date IN DATE,
29                                   p_recurrence_rule_id  IN NUMBER)
30     RETURN NUMBER;
31 
32     FUNCTION exist_syncid(p_task_id  IN         NUMBER,
33                           x_sync_id  OUT NOCOPY NUMBER)
34     RETURN BOOLEAN;
35 
36     PROCEDURE update_mapping(p_task_id IN NUMBER);
37 
38 END jta_sync_task_utl;