DBA Data[Home] [Help]

APPS.FND_OAM_WS_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 90: fnd_file.put_line(fnd_file.output,'Deleted '|| rowcount ||' rows from OAM_PAT_WS_REQUEST ');

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

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

135: END IF;
136: END;
137:
138: END LOOP;
139: fnd_file.put_line(fnd_file.output,'Deleted '|| rowcount ||' rows from FND_OAM_WS_RESPONSE ');
140: RETURN rowcount;
141: END;
142:
143: /* Purge Function to delete all method Data */

Line 178: fnd_file.put_line(fnd_file.output,

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

Line 223: fnd_file.put_line(fnd_file.output,

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

Line 269: fnd_file.put_line(fnd_file.output,

265: END IF;
266: END;
267:
268: END LOOP;
269: fnd_file.put_line(fnd_file.output,
270: 'Deleted '|| rowcount ||' rows from OAM_PAT_WS_BODY_PIECE ');
271: RETURN rowcount;
272: END;
273: