DBA Data[Home] [Help]

APPS.AML_PURGE_IMPORT_INTERFACE dependencies on FND_FILE

Line 27: fnd_file.put(1, substr(p_mesg,1,255));

23: PROCEDURE write_log(p_flag in number default 2,P_mesg in Varchar2)
24: IS
25: BEGIN
26: if nvl(g_debug_mode,'N') = 'Y' and p_flag = 2 then
27: fnd_file.put(1, substr(p_mesg,1,255));
28: fnd_file.new_line(1,1);
29: elsif p_flag = 1 then
30: fnd_file.put(1, substr(p_mesg,1,255));
31: fnd_file.new_line(1,1);

Line 28: fnd_file.new_line(1,1);

24: IS
25: BEGIN
26: if nvl(g_debug_mode,'N') = 'Y' and p_flag = 2 then
27: fnd_file.put(1, substr(p_mesg,1,255));
28: fnd_file.new_line(1,1);
29: elsif p_flag = 1 then
30: fnd_file.put(1, substr(p_mesg,1,255));
31: fnd_file.new_line(1,1);
32: end if;

Line 30: fnd_file.put(1, substr(p_mesg,1,255));

26: if nvl(g_debug_mode,'N') = 'Y' and p_flag = 2 then
27: fnd_file.put(1, substr(p_mesg,1,255));
28: fnd_file.new_line(1,1);
29: elsif p_flag = 1 then
30: fnd_file.put(1, substr(p_mesg,1,255));
31: fnd_file.new_line(1,1);
32: end if;
33: END write_log;
34:

Line 31: fnd_file.new_line(1,1);

27: fnd_file.put(1, substr(p_mesg,1,255));
28: fnd_file.new_line(1,1);
29: elsif p_flag = 1 then
30: fnd_file.put(1, substr(p_mesg,1,255));
31: fnd_file.new_line(1,1);
32: end if;
33: END write_log;
34:
35: PROCEDURE initialize_count IS