DBA Data[Home] [Help]

PACKAGE BODY: APPS.INV_PREPROCESS_SCAN

Source


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