DBA Data[Home] [Help]

PACKAGE: APPS.IGS_PR_UPLOAD_EXT_RESULTS

Source


1 PACKAGE IGS_PR_UPLOAD_EXT_RESULTS AUTHID CURRENT_USER AS
2  /* $Header: IGSPR38S.pls 115.2 2002/12/22 20:47:14 dlarsen noship $ */
3 
4 /****************************************************************************************************************
5   ||  Created By : nmankodi
6   ||  Created On : 07-NOV-2002
7   ||  Purpose : This Job validates and uploads and then purges the Interface data for External Stats and Degree
8 Completion
9   ||  This process can be called from the concurrent manager .
10   ||  Known limitations, enhancements or remarks :
11   ||  Change History :
12   ||  Who             When            What
13   ||  dlarsen         12/10/2002      Added Procedure upload_external_completion for
14   ||                                  SPA and SUSA Completion
15   ||  (reverse chronological order - newest change first)
16 ****************************************************************************************************************/
17 PROCEDURE  upload_external_stats (
18      errbuf                OUT NOCOPY     VARCHAR2,  -- Standard Error Buffer Variable
19      retcode               OUT NOCOPY     NUMBER,    -- Standard Concurrent Return code
20      p_batch_id            IN     NUMBER    -- The batch id which needs to be uploaded
21 );
22 
23 
24 PROCEDURE  upload_external_completion (
25      errbuf                OUT NOCOPY     VARCHAR2,
26      retcode               OUT NOCOPY     NUMBER,
27      p_batch_id            IN             NUMBER,
28      p_unit_set_method     IN             VARCHAR2
29 );
30 
31 END IGS_PR_UPLOAD_EXT_RESULTS;
32