DBA Data[Home] [Help]

PACKAGE: APPS.PO_ISPCODELEVEL_PVT

Source


1 PACKAGE PO_ISPCODELEVEL_PVT AUTHID CURRENT_USER AS
2 /* $Header: PO_ISPCODELEVEL_PVT.pls 120.1 2010/03/11 07:16:48 adevadul noship $ */
3 
4 --Following constants value is being used to identity the value of code level
5 -- These constants can be used by calling product for comparison of code levels and
6 -- derived their own logic based on funtionality
7 
8 G_ISP_SUP_CODE_LEVEL_R12_BASE CONSTANT NUMBER  := 10;
9 G_ISP_SUP_CODE_LEVEL_R121_BASE CONSTANT NUMBER := 20;
10 G_ISP_SUP_CODE_LEVEL_CLM_BASE CONSTANT NUMBER  := 30;
11 
12 
13 --Function helps to obtain the current code level of isp supplier
14 FUNCTION get_curr_isp_supp_code_level
15 RETURN NUMBER;
16 
17 END PO_ISPCODELEVEL_PVT;