DBA Data[Home] [Help]

APPS.XDP_MESSAGE dependencies on FND_FILE

Line 60: fnd_file.put_line(fnd_file.log,'Successfully Resubmitted Msg Code: '||

56: , respond_comment => 'Retried processing message in batch '||
57: 'together with messages with code '||p_msg_to_retry
58: , responder => fnd_global.user_id);
59:
60: fnd_file.put_line(fnd_file.log,'Successfully Resubmitted Msg Code: '||
61: rec_notification_to_respond_to.msg_code||
62: ' Msg ID: '||rec_notification_to_respond_to.msg_id );
63:
64: l_num_of_messages_success := l_num_of_messages_success + 1;

Line 67: fnd_file.put_line(fnd_file.log,'Resubmit failed '||

63:
64: l_num_of_messages_success := l_num_of_messages_success + 1;
65: EXCEPTION
66: WHEN OTHERS THEN
67: fnd_file.put_line(fnd_file.log,'Resubmit failed '||
68: ' Error: '||sqlcode||
69: ' Msg Code: '|| rec_notification_to_respond_to.msg_code||
70: ' Msg ID: '||rec_notification_to_respond_to.msg_id );
71: l_num_of_messages_fail := l_num_of_messages_fail + 1;

Line 74: fnd_file.put_line(fnd_file.log,'-----------------------------------------------');

70: ' Msg ID: '||rec_notification_to_respond_to.msg_id );
71: l_num_of_messages_fail := l_num_of_messages_fail + 1;
72: END;
73: END LOOP;
74: fnd_file.put_line(fnd_file.log,'-----------------------------------------------');
75: fnd_file.put_line(fnd_file.log,l_num_of_messages_success||' messages successfully resubmitted');
76: fnd_file.put_line(fnd_file.log,l_num_of_messages_fail||' messages not resubmitted');
77: retcode := 0;
78: errbuf := 'Success';

Line 75: fnd_file.put_line(fnd_file.log,l_num_of_messages_success||' messages successfully resubmitted');

71: l_num_of_messages_fail := l_num_of_messages_fail + 1;
72: END;
73: END LOOP;
74: fnd_file.put_line(fnd_file.log,'-----------------------------------------------');
75: fnd_file.put_line(fnd_file.log,l_num_of_messages_success||' messages successfully resubmitted');
76: fnd_file.put_line(fnd_file.log,l_num_of_messages_fail||' messages not resubmitted');
77: retcode := 0;
78: errbuf := 'Success';
79: EXCEPTION

Line 76: fnd_file.put_line(fnd_file.log,l_num_of_messages_fail||' messages not resubmitted');

72: END;
73: END LOOP;
74: fnd_file.put_line(fnd_file.log,'-----------------------------------------------');
75: fnd_file.put_line(fnd_file.log,l_num_of_messages_success||' messages successfully resubmitted');
76: fnd_file.put_line(fnd_file.log,l_num_of_messages_fail||' messages not resubmitted');
77: retcode := 0;
78: errbuf := 'Success';
79: EXCEPTION
80: WHEN OTHERS THEN