DBA Data[Home] [Help]

APPS.PSP_SUM_ADJ dependencies on PSP_MESSAGE_S

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

85: --retcode := 2;
86: --return;
87: END IF;
88:
89: psp_message_s.print_error(p_mode => FND_FILE.LOG,
90: p_print_header => FND_API.G_FALSE);
91:
92: fnd_msg_pub.initialize;
93:

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

212: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
213: END IF;
214:
215: if fnd_msg_pub.Count_Msg > 0 then
216: psp_message_s.print_error(p_mode => FND_FILE.LOG,
217: p_print_header => FND_API.G_FALSE);
218: else
219: PSP_MESSAGE_S.Print_success;
220: end if;

Line 219: PSP_MESSAGE_S.Print_success;

215: if fnd_msg_pub.Count_Msg > 0 then
216: psp_message_s.print_error(p_mode => FND_FILE.LOG,
217: p_print_header => FND_API.G_FALSE);
218: else
219: PSP_MESSAGE_S.Print_success;
220: end if;
221:
222: retcode := FND_API.G_RET_STS_SUCCESS;
223: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) ||' End of Adj S&T');

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

226: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
227: -- Bug 1776606 : Introduced Rollback ,
228: rollback;
229:
230: psp_message_s.print_error(p_mode => FND_FILE.LOG,
231: p_print_header => FND_API.G_TRUE);
232: retcode := 2;
233: WHEN OTHERS THEN
234: --Bug 1776606 : Introduced Rollback

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

232: retcode := 2;
233: WHEN OTHERS THEN
234: --Bug 1776606 : Introduced Rollback
235: rollback;
236: psp_message_s.print_error(p_mode => FND_FILE.LOG,
237: p_print_header => FND_API.G_TRUE);
238: retcode := 2;
239: END;
240: