DBA Data[Home] [Help]

APPS.PO_REQIMP_S dependencies on FND_FILE

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

313: EXCEPTION
314: WHEN FND_API.g_exc_unexpected_error THEN
315: -- Unexpected error status returned from our API calls. Write to log.
316: FOR i IN 1..FND_MSG_PUB.count_msg LOOP
317: FND_FILE.put_line(FND_FILE.LOG, l_progress||': '||FND_MSG_PUB.get(i,'F'));
318: END LOOP;
319: WHEN OTHERS THEN
320: -- Any other exception should be written to log with generic error msg.
321: FND_MSG_PUB.build_exc_msg

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

321: FND_MSG_PUB.build_exc_msg
322: ( p_pkg_name => 'PO_REQIMP_S'
323: , p_procedure_name => 'default_trx_reason_codes-'||l_progress
324: );
325: FND_FILE.put_line(FND_FILE.log, FND_MESSAGE.get);
326: END default_trx_reason_codes;
327: --< Bug 3540365 End >
328:
329: