DBA Data[Home] [Help]

PACKAGE: APPS.PA_AR_TRX_PURGE

Source


1 PACKAGE pa_ar_trx_purge AUTHID CURRENT_USER AS
2 -- $Header: PAXARPGS.pls 115.1 2002/07/22 04:30:29 mumohan ship $
3 
4   FUNCTION transaction_flex_context RETURN VARCHAR2;
5   -- This function returns the context value for the transaction flex for PA
6   -- If PA is not setup, it will return NULL.
7   -- It should not be called if PA is not installed. If it is called it will
8   -- return an error message.
9 
10   FUNCTION purgeable(p_customer_trx_id IN NUMBER) RETURN BOOLEAN;
11   -- If this function returns TRUE, the purge should be allowed.
12   -- False if the purge should not be allowed.
13 
14   FUNCTION client_purgeable(p_customer_trx_id IN NUMBER) RETURN BOOLEAN;
15   -- The client can write this function to return TRUE (allow purge) or FALSE
16   -- (prevent purge). The function template supplied with the Product returns
17   -- FALSE.
18 
19 END pa_ar_trx_purge;