DBA Data[Home] [Help]

APPS.PO_REQIMP_S dependencies on FND_FILE

Line 280: FND_FILE.put_line(FND_FILE.LOG, l_progress||': '||FND_MSG_PUB.get(i,'F'));

276: EXCEPTION
277: WHEN FND_API.g_exc_unexpected_error THEN
278: -- Unexpected error status returned from our API calls. Write to log.
279: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
280: FND_FILE.put_line(FND_FILE.LOG, l_progress||': '||FND_MSG_PUB.get(i,'F'));
281: END LOOP;
282: WHEN OTHERS THEN
283: -- Any other exception should be written to log with generic error msg.
284: FND_MSG_PUB.build_exc_msg

Line 288: FND_FILE.put_line(FND_FILE.log, FND_MESSAGE.get);

284: FND_MSG_PUB.build_exc_msg
285: ( p_pkg_name => 'PO_REQIMP_S'
286: , p_procedure_name => 'default_trx_reason_codes-'||l_progress
287: );
288: FND_FILE.put_line(FND_FILE.log, FND_MESSAGE.get);
289: END default_trx_reason_codes;
290: --< Bug 3540365 End >
291:
292: