DBA Data[Home] [Help]

PACKAGE: APPS.IEC_REPORTS_PVT

Source


1 PACKAGE IEC_REPORTS_PVT AUTHID CURRENT_USER AS
2 /* $Header: IECREPS.pls 115.11 2003/08/22 20:42:32 hhuang ship $ */
3 
4 
5 /* Procedure to reset the record counts for all campaign schedules */
6 
7 PROCEDURE Reset_AllRecordCounts
8    ( p_source_id   IN            NUMBER
9    , x_return_code IN OUT NOCOPY VARCHAR2);
10 
11 /* Procedure to reset the record counts for the specified campaign schedule */
12 
13 PROCEDURE Reset_CampaignRecordCounts
14    ( p_schedule_id IN            NUMBER
15    , p_source_id   IN            NUMBER
16    , x_return_code IN OUT NOCOPY VARCHAR2);
17 
18 /* Procedure to reset the record counts for the specified list */
19 
20 PROCEDURE Reset_ListRecordCounts
21    ( p_schedule_id IN            NUMBER
22    , p_list_id     IN            NUMBER
23    , p_source_id   IN            NUMBER
24    , x_return_code IN OUT NOCOPY VARCHAR2);
25 
26 END IEC_REPORTS_PVT;