DBA Data[Home] [Help]

APPS.FND_DIAG_CM dependencies on FND_FILE

Line 25: fnd_file.put_line(fnd_file.log, PROGNM || ' test program:');

21: SLEEPT IN NUMBER DEFAULT 20,
22: PROGNM IN VARCHAR2 DEFAULT null)
23: is
24: begin
25: fnd_file.put_line(fnd_file.log, PROGNM || ' test program:');
26: fnd_file.put_line(fnd_file.log, 'Sleep for ' || SLEEPT || ' seconds.');
27: DBMS_LOCK.SLEEP(SLEEPT);
28: fnd_file.put_line(fnd_file.log, 'Awake and exiting.');
29: retcode := 0;

Line 26: fnd_file.put_line(fnd_file.log, 'Sleep for ' || SLEEPT || ' seconds.');

22: PROGNM IN VARCHAR2 DEFAULT null)
23: is
24: begin
25: fnd_file.put_line(fnd_file.log, PROGNM || ' test program:');
26: fnd_file.put_line(fnd_file.log, 'Sleep for ' || SLEEPT || ' seconds.');
27: DBMS_LOCK.SLEEP(SLEEPT);
28: fnd_file.put_line(fnd_file.log, 'Awake and exiting.');
29: retcode := 0;
30: exception

Line 28: fnd_file.put_line(fnd_file.log, 'Awake and exiting.');

24: begin
25: fnd_file.put_line(fnd_file.log, PROGNM || ' test program:');
26: fnd_file.put_line(fnd_file.log, 'Sleep for ' || SLEEPT || ' seconds.');
27: DBMS_LOCK.SLEEP(SLEEPT);
28: fnd_file.put_line(fnd_file.log, 'Awake and exiting.');
29: retcode := 0;
30: exception
31: when others then
32: retcode := 2;

Line 97: fnd_file.put_line(fnd_file.log, VOLREQ || ' requests.');

93: if(rdata is null) then
94: rdata := 'YOHO';
95:
96: /* Submit Random requests */
97: fnd_file.put_line(fnd_file.log, VOLREQ || ' requests.');
98: fnd_file.put_line(fnd_file.log, NUMDOM || ' domains.');
99:
100: DBMS_RANDOM.INITIALIZE(rqid);
101:

Line 98: fnd_file.put_line(fnd_file.log, NUMDOM || ' domains.');

94: rdata := 'YOHO';
95:
96: /* Submit Random requests */
97: fnd_file.put_line(fnd_file.log, VOLREQ || ' requests.');
98: fnd_file.put_line(fnd_file.log, NUMDOM || ' domains.');
99:
100: DBMS_RANDOM.INITIALIZE(rqid);
101:
102: base := base - (NUMDOM / 2);

Line 134: fnd_file.put_line(fnd_file.log, 'Error in request submission');

130: argument1 => to_char(tdom),
131: argument2 => 'C');
132: end if;
133: if (spid = 0) then
134: fnd_file.put_line(fnd_file.log, 'Error in request submission');
135: end if;
136: END LOOP;
137:
138: /* Wait for them to complete */

Line 165: fnd_file.put_line(fnd_file.output,

161: from fnd_concurrent_programs p,fnd_application a
162: where a.application_id = p.application_id and p.concurrent_program_name = 'FNDCRMTC' and a.application_short_name='FND';
163:
164: FOR con_rec in con_cursor(rqid, apid, bpid, cpid) LOOP
165: fnd_file.put_line(fnd_file.output,
166: 'Collision between ' || con_rec.rqa || ' and ' || con_rec.rqb);
167: tot := tot+1;
168: END LOOP;
169:

Line 177: fnd_file.put_line(fnd_file.output, errbuf);

173: else
174: retcode := 1;
175: end if;
176:
177: fnd_file.put_line(fnd_file.output, errbuf);
178: end if;
179: end diag_crm;
180:
181: end fnd_diag_cm;