DBA Data[Home] [Help]

APPS.OKI_ALERT_UTIL_PVT dependencies on FND_FILE

Line 72: fnd_file.put_line( which => fnd_file.log

68: wf_itemkey VARCHAR2(30);
69: role_name VARCHAR2(30);
70: role_display_name VARCHAR2(30);
71: BEGIN
72: fnd_file.put_line( which => fnd_file.log
73: , buff => 'Alert Subject :'||subject);
74: fnd_file.put_line( which => fnd_file.log
75: , buff => 'Alert Body :'||body);
76: fnd_file.put_line( which => fnd_file.log

Line 74: fnd_file.put_line( which => fnd_file.log

70: role_display_name VARCHAR2(30);
71: BEGIN
72: fnd_file.put_line( which => fnd_file.log
73: , buff => 'Alert Subject :'||subject);
74: fnd_file.put_line( which => fnd_file.log
75: , buff => 'Alert Body :'||body);
76: fnd_file.put_line( which => fnd_file.log
77: , buff => 'Email List :'||email_list);
78:

Line 76: fnd_file.put_line( which => fnd_file.log

72: fnd_file.put_line( which => fnd_file.log
73: , buff => 'Alert Subject :'||subject);
74: fnd_file.put_line( which => fnd_file.log
75: , buff => 'Alert Body :'||body);
76: fnd_file.put_line( which => fnd_file.log
77: , buff => 'Email List :'||email_list);
78:
79: return_status := FND_API.g_ret_sts_success;
80:

Line 155: fnd_file.put_line( which => fnd_file.output

151: PROCEDURE myprint(p_str IN VARCHAR2)
152: IS
153: BEGIN
154: -- UTL_FILE.PUT_LINE(g_output_stream,p_str);
155: fnd_file.put_line( which => fnd_file.output
156: , buff => p_str);
157:
158: END; -- myprint
159:

Line 335: fnd_file.put_line( which => fnd_file.output

331: IS
332: BEGIN
333: -- g_output_stream := UTL_FILE.FOPEN(g_utl_file_dest,
334: -- p_file_name,'W');
335: fnd_file.put_line( which => fnd_file.output
336: , buff => 'FILEOKI: '||p_file_name);
337:
338: RETURN TRUE;
339: EXCEPTION

Line 466: fnd_file.put_line( which => fnd_file.log

462: g_alert_publish_dir := fnd_profile.value('OKI_ALERT_PUBLISH_DIR');
463: g_utl_file_dest := fnd_profile.value('OKI_UTL_FILE_DEST');
464: g_oki_parent_url := fnd_profile.value('OKI_ALERT_URL');
465:
466: fnd_file.put_line( which => fnd_file.log
467: , buff => 'Alert Dist List :'||g_alert_dist_list);
468: fnd_file.put_line( which => fnd_file.log
469: , buff => 'Alert Publish Dir :'||g_alert_publish_dir);
470: fnd_file.put_line( which => fnd_file.log

Line 468: fnd_file.put_line( which => fnd_file.log

464: g_oki_parent_url := fnd_profile.value('OKI_ALERT_URL');
465:
466: fnd_file.put_line( which => fnd_file.log
467: , buff => 'Alert Dist List :'||g_alert_dist_list);
468: fnd_file.put_line( which => fnd_file.log
469: , buff => 'Alert Publish Dir :'||g_alert_publish_dir);
470: fnd_file.put_line( which => fnd_file.log
471: , buff => 'Utl File Dest :'||g_utl_file_dest);
472: fnd_file.put_line( which => fnd_file.log

Line 470: fnd_file.put_line( which => fnd_file.log

466: fnd_file.put_line( which => fnd_file.log
467: , buff => 'Alert Dist List :'||g_alert_dist_list);
468: fnd_file.put_line( which => fnd_file.log
469: , buff => 'Alert Publish Dir :'||g_alert_publish_dir);
470: fnd_file.put_line( which => fnd_file.log
471: , buff => 'Utl File Dest :'||g_utl_file_dest);
472: fnd_file.put_line( which => fnd_file.log
473: , buff => 'Alert URL :'||g_oki_parent_url);
474:

Line 472: fnd_file.put_line( which => fnd_file.log

468: fnd_file.put_line( which => fnd_file.log
469: , buff => 'Alert Publish Dir :'||g_alert_publish_dir);
470: fnd_file.put_line( which => fnd_file.log
471: , buff => 'Utl File Dest :'||g_utl_file_dest);
472: fnd_file.put_line( which => fnd_file.log
473: , buff => 'Alert URL :'||g_oki_parent_url);
474:
475: END; -- Package Body OKI_ALERT_UTIL_PVT