DBA Data[Home] [Help]

PACKAGE: APPS.FND_BC4J_CLEANUP_PKG

Source


1 PACKAGE FND_BC4J_CLEANUP_PKG AUTHID CURRENT_USER AS
2 /* $Header: FNDBCCLS.pls 115.1 2002/08/29 10:05:13 nigoel ship $ */
3 
4 /*
5  * Deletes rows for user transaction state in FND_PS_TXN table.
6  * p_older_than_date - Rows that are older than this date will be
7  * deleted.
8  */
9 PROCEDURE Delete_Transaction_Rows(p_older_than_date IN DATE);
10 
11 /*
12  * Deletes rows for the control table FND_PCOLL_CONTROL table.
13  * p_older_than_date - Rows that are older than this date will be
14  * deleted.
15  */
16 PROCEDURE Delete_Control_Rows(p_older_than_date IN DATE);
17 
18 
19 end FND_BC4J_CLEANUP_PKG;