DBA Data[Home] [Help]

PACKAGE: APPS.QLTSMENB

Source


1 PACKAGE QLTSMENB AUTHID CURRENT_USER as
2 /* $Header: qltsmenb.pls 115.2 2002/11/27 19:30:21 jezheng ship $ */
3 
4 -- 8/2/95 - CREATED
5 -- Kevin Wiggen
6 
7 --  This package does the join to other tables for qa results
8 --  It needs the char_id and value from results, and it will perform the lookup
9 --  It is not necessary to check if there is a lookup first, but its suggested
10 
11   FUNCTION LOOKUP(x_char_id IN NUMBER,
12 	          x_value   IN VARCHAR2)
13      RETURN VARCHAR2;
14 
15 
16 
17 END QLTSMENB;
18