DBA Data[Home] [Help]

APPS.FND_SOA_UTIL dependencies on FND_FILE

Line 25: FND_FILE.put_line(FND_FILE.log,errbuf);

21: IF(v_strt_date is NULL) then
22: errbuf := 'Unexpected error converting character string to date:'
23: ||start_date;
24: retcode := '2';
25: FND_FILE.put_line(FND_FILE.log,errbuf);
26: RETURN;
27: END IF;
28: IF(v_end_date is NULL) then
29: errbuf := 'Unexpected error converting character string to date:'

Line 32: FND_FILE.put_line(FND_FILE.log,errbuf);

28: IF(v_end_date is NULL) then
29: errbuf := 'Unexpected error converting character string to date:'
30: ||end_date;
31: retcode := '2';
32: FND_FILE.put_line(FND_FILE.log,errbuf);
33: RETURN;
34: END IF;
35:
36: /* Purge Function to delete all requests Data */

Line 92: fnd_file.put_line(fnd_file.output,'Deleted '|| rowcount ||' rows from

88: END IF;
89: END;
90:
91: END LOOP;
92: fnd_file.put_line(fnd_file.output,'Deleted '|| rowcount ||' rows from
93: FND_SOA_REQUEST ');
94: RETURN rowcount;
95: END;
96:

Line 139: fnd_file.put_line(fnd_file.output,'Deleted '|| rowcount ||' rows from

135: END IF;
136: END;
137:
138: END LOOP;
139: fnd_file.put_line(fnd_file.output,'Deleted '|| rowcount ||' rows from
140: FND_SOA_RESPONSE ');
141: RETURN rowcount;
142: END;
143:

Line 179: fnd_file.put_line(fnd_file.output,

175: END IF;
176: END;
177:
178: END LOOP;
179: fnd_file.put_line(fnd_file.output,
180: 'Deleted '|| rowcount ||' rows from
181: FND_SOA_RESPONSE_METHOD ');
182: RETURN rowcount;
183: END;

Line 225: fnd_file.put_line(fnd_file.output,

221: END IF;
222: END;
223:
224: END LOOP;
225: fnd_file.put_line(fnd_file.output,
226: 'Deleted '|| rowcount ||' rows from FND_SOA_ATTACHMENT
227: ');
228: RETURN rowcount;
229: END;

Line 272: fnd_file.put_line(fnd_file.output,

268: END IF;
269: END;
270:
271: END LOOP;
272: fnd_file.put_line(fnd_file.output,
273: 'Deleted '|| rowcount ||' rows from FND_SOA_BODY_PIECE
274: ');
275: RETURN rowcount;
276: END;