DBA Data[Home] [Help]

PACKAGE BODY: APPS.GML_PO_FOR_PROCESS

Source


1 PACKAGE BODY GML_PO_FOR_PROCESS AS
2 /* $Header: GMLPOPRB.pls 120.1 2005/09/30 13:41:49 pbamb noship $ */
3 
4   /*##########################################################################
5   #
6   #  FUNCTION
7   #   check_po_for_proc
8   #
9   #  DESCRIPTION
10   #
11   #      This package contains a function which determines
12   #	 whether Common Receiving is installed in db or not
13   # 	 The 1st  version of the package function will
14   #      return FALSE indicating that Common Receiving is
15   #      not installed and the next version will return
16   #       TRUE indicating that Common Receiving is installed
17   #
18   # MODIFICATION HISTORY
19   # 08-AUG-2001  PBamb Created
20   #########################################################################*/
21 
22 FUNCTION check_po_for_proc RETURN BOOLEAN IS
23 
24 BEGIN
25 
26          RETURN (TRUE);
27 
28 EXCEPTION
29  WHEN OTHERS THEN
30    RETURN (FALSE);
31 
32 END check_po_for_proc ;
33 
34 END GML_PO_FOR_PROCESS;