DBA Data[Home] [Help]

PACKAGE: APPS.POR_HISTORY_FEED_PKG

Source


1 PACKAGE POR_History_Feed_Pkg AUTHID CURRENT_USER AS
2 /* $Header: PORHSFDS.pls 115.3 2002/11/18 22:47:03 dhli ship $ */
3 ---------------------------------------------------------------------------------------
4 -- Parameters are passed to the Main Program in order to specify the set of PO records
5 -- to retrieve.  All the parameters are mandatory and are user-entered. They are validated
6 --in the Concurrent Manager before being passed to the program.
7 ---------------------------------------------------------------------------------------
8 
9 PROCEDURE Main (
10    ERRBUF               OUT NOCOPY VARCHAR2,
11    RETCODE              OUT NOCOPY VARCHAR2,  --this is NOT a number!
12    i_card_brand          IN VARCHAR2,
13    i_card_issuer_id      IN NUMBER,
14    i_card_issuer_site_id IN NUMBER,
15    i_from_date_time      IN VARCHAR2,
16    i_to_date_time        IN VARCHAR2,
17    i_output_filename     IN VARCHAR2
18    );
19 
20 
21 END POR_History_Feed_Pkg;  --package