DBA Data[Home] [Help]

PACKAGE: APPS.FND_DIAG_CM

Source


1 package fnd_diag_cm as
2 /* $Header: AFCPDCMS.pls 120.2 2005/08/19 18:45:50 tkamiya noship $ */
3 
4 --
5 -- Procedure
6 --   DIAG_SQL_PROG
7 --
8 -- Purpose
9 --   Simple PL/SQL stored procedure concurrent program. Will sleep and exit.
10 --
11 -- Arguments:
12 --        IN:
13 --           SLEEPT  - number of seconds to sleep (default is 20)
14 --           PROGNM  - name of this program, written to logfile for tagging
15 --       OUT:
16 --           ERRBUF  - standard CP output
17 --           RETCODE - 0 if successful
18 --
19 procedure diag_sql_prog(ERRBUF OUT NOCOPY VARCHAR2,
20 		        RETCODE OUT NOCOPY NUMBER,
21 	    	        SLEEPT  IN NUMBER default 20,
22 		        PROGNM  IN VARCHAR2 default null);
23 
24 --
25 -- Procedure
26 --   DIAG_CRM
27 --
28 -- Purpose
29 --   Test Conflict Resolution Manager. Will submit multiple incompatible
30 --   requests for various conflict domains to determine if any incompatible
31 --   programs are being incorrectly released to run.
32 --
33 -- Arguments:
34 --        IN:
35 --           VOLREQ  - number of requests to submit (default is 100)
36 --           NUMDOM  - number of different domains to use (default is 10)
37 --       OUT:
38 --           ERRBUF  - standard CP output
39 --           RETCODE - 0 if successful, 1 if CRM has been found to have error
40 --
41 procedure diag_crm(ERRBUF OUT NOCOPY VARCHAR2,
42 		   RETCODE OUT NOCOPY NUMBER,
43 	    	   VOLREQ  IN NUMBER default 100,
44 		   NUMDOM  IN NUMBER default 10);
45 end;