DBA Data[Home] [Help]

APPS.PSP_ENC_LIQ_TRAN dependencies on PSP_MESSAGE_S

Line 107: / *psp_message_s.print_error(p_mode => FND_FILE.LOG,

103: retcode := FND_API.G_RET_STS_SUCCESS;
104:
105: -- Added code for error message handler by Bijoy , 27-Jul-1999
106:
107: / *psp_message_s.print_error(p_mode => FND_FILE.LOG,
108: p_print_header => FND_API.G_TRUE);* /
109: if p_action_type IN ('L', 'T') then
110: PSP_MESSAGE_S.Print_success;
111: end if;

Line 110: PSP_MESSAGE_S.Print_success;

106:
107: / *psp_message_s.print_error(p_mode => FND_FILE.LOG,
108: p_print_header => FND_API.G_TRUE);* /
109: if p_action_type IN ('L', 'T') then
110: PSP_MESSAGE_S.Print_success;
111: end if;
112: return;
113: END IF;
114:

Line 344: psp_message_s.print_error(p_mode => FND_FILE.LOG,

340: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' g_liq_has_failed_transactions: TRUE');
341: retcode := fnd_api.g_ret_sts_error;
342: fnd_message.set_name('PSP','PSP_ENC_LIQ_TRANS_FAILED');
343: fnd_msg_pub.add;
344: psp_message_s.print_error(p_mode => FND_FILE.LOG,
345: p_print_header => FND_API.G_TRUE);
346: ELSE
347: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' g_liq_has_failed_transactions: FALSE');
348: retcode := FND_API.G_RET_STS_SUCCESS;

Line 355: / *psp_message_s.print_error(p_mode => FND_FILE.LOG,

351:
352: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Leaving ENC_LIQ_TRANS');
353: -- Added code for error message handler by Bijoy , 27-Jul-1999
354:
355: / *psp_message_s.print_error(p_mode => FND_FILE.LOG,
356: p_print_header => FND_API.G_TRUE);* /
357: if p_action_type ='L' then
358: PSP_MESSAGE_S.Print_success;
359: end if;

Line 358: PSP_MESSAGE_S.Print_success;

354:
355: / *psp_message_s.print_error(p_mode => FND_FILE.LOG,
356: p_print_header => FND_API.G_TRUE);* /
357: if p_action_type ='L' then
358: PSP_MESSAGE_S.Print_success;
359: end if;
360: EXCEPTION
361: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
362: / * Bug 20393936: commented call to batch_end proc and introduced ROLLBACK * /

Line 380: psp_message_s.print_error(p_mode => FND_FILE.LOG,

376: retcode := 2;
377: -- Added code for error message handler by Bijoy , 27-Jul-1999
378:
379: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Leaving ENC_LIQ_TRANS');
380: psp_message_s.print_error(p_mode => FND_FILE.LOG,
381: p_print_header => FND_API.G_TRUE);
382: return;
383: WHEN OTHERS THEN
384: / * Bug 20393936: commented call to batch_end proc and introduced ROLLBACK * /

Line 402: psp_message_s.print_error(p_mode => FND_FILE.LOG,

398: retcode := 2;
399: -- Added code for error message handler by Bijoy , 27-Jul-1999
400:
401: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Leaving ENC_LIQ_TRANS');
402: psp_message_s.print_error(p_mode => FND_FILE.LOG,
403: p_print_header => FND_API.G_TRUE);
404: return;
405: END enc_liq_trans;
406: End of comment for create and update multi thread enh. *****/

Line 517: psp_message_s.print_error(p_mode => FND_FILE.LOG, p_print_header => FND_API.G_TRUE);

513: IF (g_liq_has_failed_transactions) THEN
514: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' g_liq_has_failed_transactions: TRUE');
515: fnd_message.set_name('PSP','PSP_ENC_LIQ_TRANS_FAILED');
516: fnd_msg_pub.add;
517: psp_message_s.print_error(p_mode => FND_FILE.LOG, p_print_header => FND_API.G_TRUE);
518: p_return_status := fnd_api.g_ret_sts_error;
519: ELSE
520: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' g_liq_has_failed_transactions: FALSE');
521: p_return_status := FND_API.G_RET_STS_SUCCESS;

Line 536: psp_message_s.print_error(p_mode => FND_FILE.LOG, p_print_header => FND_API.G_TRUE);

532: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
533: g_error_api_path := 'ENC_LIQ_TRANS:'||g_error_api_path;
534: fnd_msg_pub.add_exc_msg('PSP_ENC_LIQ_TRAN','ENC_LIQ_TRANS');
535: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Leaving ENC_LIQ_TRANS');
536: psp_message_s.print_error(p_mode => FND_FILE.LOG, p_print_header => FND_API.G_TRUE);
537: p_return_status := fnd_api.g_ret_sts_unexp_error;
538: WHEN OTHERS THEN
539: g_error_api_path := 'ENC_LIQ_TRANS:'||g_error_api_path;
540: fnd_msg_pub.add_exc_msg('PSP_ENC_LIQ_TRAN','ENC_LIQ_TRANS');

Line 542: psp_message_s.print_error(p_mode => FND_FILE.LOG, p_print_header => FND_API.G_TRUE);

538: WHEN OTHERS THEN
539: g_error_api_path := 'ENC_LIQ_TRANS:'||g_error_api_path;
540: fnd_msg_pub.add_exc_msg('PSP_ENC_LIQ_TRAN','ENC_LIQ_TRANS');
541: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Leaving ENC_LIQ_TRANS');
542: psp_message_s.print_error(p_mode => FND_FILE.LOG, p_print_header => FND_API.G_TRUE);
543: p_return_status := fnd_api.g_ret_sts_unexp_error;
544: END enc_liq_trans;
545: -- End of changes for Create and update multi thread enh.
546: -- #######################################################################

Line 6991: psp_message_s.print_error (p_mode => FND_FILE.LOG,

6987: IF p_action_type = 'Q' THEN
6988: fnd_message.set_name('PSP','PSP_ENC_NUM_ASG');
6989: fnd_message.set_token('NUM_ASG',no_of_asg);
6990: fnd_msg_pub.add;
6991: psp_message_s.print_error (p_mode => FND_FILE.LOG,
6992: p_print_header => FND_API.G_FALSE);
6993: END IF;
6994:
6995: p_return_status := FND_API.G_RET_STS_SUCCESS;

Line 7255: psp_message_s.print_error(p_mode => FND_FILE.LOG,

7251: exception
7252: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
7253: fnd_msg_pub.add_exc_msg('PSP_ENC_LIQ_TRAN','LIQUIDATE_EMP_TERM');
7254: fnd_msg_pub.add;
7255: psp_message_s.print_error(p_mode => FND_FILE.LOG,
7256: p_print_header => FND_API.G_TRUE);
7257: ROLLBACK;
7258: retcode := 2;
7259:

Line 7263: psp_message_s.print_error(p_mode => FND_FILE.LOG,

7259:
7260: when others then
7261: fnd_msg_pub.add_exc_msg('PSP_ENC_LIQ_TRAN','LIQUIDATE_EMP_TERM');
7262: fnd_msg_pub.add;
7263: psp_message_s.print_error(p_mode => FND_FILE.LOG,
7264: p_print_header => FND_API.G_TRUE);
7265: ROLLBACK;
7266: errbuf := sqlerrm;
7267: retcode := 2;