DBA Data[Home] [Help]

PACKAGE: APPS.INV_PREPROCESS_SCAN

Source


1 PACKAGE INV_PREPROCESS_SCAN AUTHID CURRENT_USER AS
2 /* $Header: INVSCANS.pls 120.1 2005/06/17 15:12:31 appldev  $ */
3 
4 
5 -- x_return_status, should be S if a success. In this case, it will default
6 -- the x_processed_value as the result of the scan. If this is set to null
7 -- or E, then the scan is assumed to be p_scanned_value
8 -- x_processed_value returns the value that should be used for the scanned
9 -- value
10 -- p_current_page_name is the page name in which the scan was performed
11 -- p_scanned_value is the actual scanned value that has to be pre-processed.
12 PROCEDURE process_scan(x_return_status     OUT nocopy VARCHAR2,
13 		       x_processed_value   OUT nocopy VARCHAR2,
14 		       p_current_page_name IN  VARCHAR2,
15 		       p_scanned_value     IN  VARCHAR2);
16 
17 END INV_PREPROCESS_SCAN;