DBA Data[Home] [Help]

PACKAGE: APPS.FND_CONC_CLONE

Source


1 package fnd_conc_clone AUTHID CURRENT_USER as
2 /* $Header: AFCPCLNS.pls 115.1 2003/05/22 02:13:57 vvengala ship $ */
3 
4 /*
5  * Procedure: target_clean
6  *
7  * ***************************************************************************
8  * NOTE: If you are not sure what you are doing do not run this procedure.
9  *       This API is for Rapid Install team use only.
10  * ***************************************************************************
11  *
12  * Purpose: To clean up target database for cloning purpose.
13  *   It is callers responsibility to do the commit after calling target_clean
14  *   target_clean does not handle any exceptions.
15  *
16  * Arguments: none
17  *
18  */
19 procedure target_clean;
20 
21 /*
22  * Procedure: setup_clean
23  *
24  * ***************************************************************************
25  * NOTE: If you are not sure what you are doing do not run this procedure.
26  *       This API is for Cloning instance and will be used by  cloning.
27  * ***************************************************************************
28  *
29  * Purpose: To clean up target database in a cloning case.
30  *   It is callers responsibility to do the commit after calling
31  *   setup_clean.  setup_clean does not handle any exceptions.
32  *
33  * Arguments: none
34  *
35  */
36 procedure setup_clean;
37 
38 end;