DBA Data[Home] [Help]

PACKAGE: APPS.AMS_ACTIVATE_EVENTSCHED_PVT

Source


1 PACKAGE AMS_Activate_EventSched_PVT AUTHID CURRENT_USER AS
2 /* $Header: amsvevcs.pls 115.3 2004/03/02 14:38:30 anchaudh ship $ */
3 
4 --========================================================================
5 -- PROCEDURE
6 --    Activate_Schedule
7 --
8 -- PURPOSE
9 --    This api is created to be used by concurrent program to activate
10 --    schedules. It will internally call the Activate schedules api to
11 --    activate the schedule.
12 
13 --
14 -- HISTORY
15 --  09-Jan-2002    gmadana    Created.
16 --
17 --========================================================================
18 PROCEDURE Activate_Schedule
19                (errbuf            OUT NOCOPY    VARCHAR2,
20                 retcode           OUT NOCOPY    VARCHAR2) ;
21 
22 --========================================================================
23 -- PROCEDURE
24 --    Activate_Schedule
25 --
26 -- PURPOSE
27 --    This api is created to activate available schedules.
28 --
29 -- Note
30 --    This procedure will be called by concurrent program to activate the
31 --    schedule.
32 --
33 -- HISTORY
34 --  09-Jan-2002    gmadana    Created.
35 --
36 --========================================================================
37 PROCEDURE Activate_Schedule
38                (
39                p_api_version             IN     NUMBER,
40                p_init_msg_list           IN     VARCHAR2 := FND_API.G_False,
41                p_commit                  IN     VARCHAR2 := FND_API.G_False,
42 
43                x_return_status           OUT NOCOPY    VARCHAR2,
44                x_msg_count               OUT NOCOPY    NUMBER  ,
45                x_msg_data                OUT NOCOPY    VARCHAR2) ;
46 
47 
48 END AMS_Activate_EventSched_PVT ;