DBA Data[Home] [Help]

PACKAGE: APPS.PO_FV_INTEGRATION_PVT

Source


1 PACKAGE PO_FV_INTEGRATION_PVT AUTHID CURRENT_USER AS
2 /* $Header: POXVFVIS.pls 115.0 2004/08/14 00:34:14 axian noship $ */
3 
4 -- Vendor site registration exists and is Active
5 -- Other possible values include: 'D'(Deleted), 'E'(Expired), 'N'(Unknown)
6 -- and 'U'(Unregistered)
7 G_SITE_REG_ACTIVE CONSTANT VARCHAR2(1) := 'A';
8 -- Vendor site registration does not exist, which means the vendor
9 -- is exempt from CCR
10 G_SITE_NOT_CCR_SITE CONSTANT NUMBER := 2;
11 
12 FUNCTION val_vendor_site_ccr_regis(
13   p_vendor_id       	IN NUMBER,
14   p_vendor_site_id  	IN NUMBER
15 )RETURN BOOLEAN;
16 END PO_FV_INTEGRATION_PVT;