DBA Data[Home] [Help]

PACKAGE: APPS.JTA_SYNC_TASK_MAP_PKG

Source


1 PACKAGE JTA_SYNC_TASK_MAP_PKG AUTHID CURRENT_USER AS
2 /* $Header: jtavstms.pls 115.13 2002/04/30 10:30:21 pkm ship    $ */
3 /*=======================================================================+
4  |  Copyright (c) 2002 Oracle Corporation Redwood Shores, California, USA|
5  |                            All rights reserved.                       |
6  +=======================================================================+
7  | FILENAME                                                              |
8  |   jtavstms.pls                                                        |
9  |                                                                       |
10  | DESCRIPTION                                                           |
11  |   - This package is used to insert/update/delete sync task            |
12  |                      mapping record.                                  |
13  |                                                                       |
14  | NOTES                                                                 |
15  |                                                                       |
16  | Date          Developer        Change                                 |
17  | ------        ---------------  -------------------------------------- |
18  | 18-Jan-2002   gjashnan         Created.                               |
19  | 22-Jan-2002   cjang            Refactoring                            |
20  +======================================================================*/
21 
22     ---------------------------------------------------------------------
23     -- Start of comments
24     --  API name    : Insert_Row
25     --  Type        : Public
26     --  Function    : Insert the To Do or Appointment Data into mapping
27     --                   table.
28     --  Pre-reqs    : None.
29     --
30     --  Notes:
31     --
32     -- End of comments
33     ---------------------------------------------------------------------
34     PROCEDURE Insert_Row (
35       p_task_sync_id        IN NUMBER,
36       p_task_id             IN NUMBER,
37       p_resource_id         IN NUMBER
38       );
39 
40 
41     ---------------------------------------------------------------------
42     -- Start of comments
43     --  API name    : Update_Row
44     --  Type        : Public
45     --  Function    : Update a record with task_sync_id
46     --  Pre-reqs    : None.
47     --
48     --  Notes:
49     --
50     -- End of comments
51     ---------------------------------------------------------------------
52     PROCEDURE Update_Row (
53       p_task_sync_id        IN NUMBER,
54       p_task_id             IN NUMBER,
55       p_resource_id         IN NUMBER
56       );
57 
58     ---------------------------------------------------------------------
59     -- Start of comments
60     --  API name    : Delete_Row
61     --  Type        : Public
62     --  Function    : Delete a record with task_sync_id
63     --
64     --  Notes:
65     --
66     -- End of comments
67     ---------------------------------------------------------------------
68     PROCEDURE Delete_Row (
69       p_task_sync_id        IN NUMBER
70     );
71 
72 END JTA_SYNC_TASK_MAP_PKG;