DBA Data[Home] [Help]

PACKAGE BODY: APPS.PO_GA_COMMON_GRP

Source


1 PACKAGE BODY PO_GA_COMMON_GRP AS
2 /* $Header: POXGACMB.pls 115.0 2002/11/25 23:11:12 dreddy noship $ */
3 
4 /*==============================================================================
5 
6 	FUNCTION:      is_global_agreement
7 
8 	DESCRIPTION:   Returns TRUE if the po_header_id is a Global Agreement.
9                    FALSE otherwise.
10 
11 ==============================================================================*/
12 FUNCTION is_global
13 (
14 	p_po_header_id	  	PO_HEADERS_ALL.po_header_id%TYPE
15 )
16 RETURN BOOLEAN
17 IS
18 
19 BEGIN
20 
21     return PO_GA_PVT.is_global_agreement (p_po_header_id);
22 
23 EXCEPTION
24 
25     WHEN OTHERS THEN
26 	return (FALSE);
27 
28 END is_global;
29 
30 END PO_GA_COMMON_GRP;