DBA Data[Home] [Help]

APPS.EDW_LOG dependencies on FND_FILE

Line 36: FND_FILE.PUT_NAMES(p_log_file,p_out_file,p_directory);

32: g_debug := true;
33: ELSE
34: g_debug := false;
35: END IF;
36: FND_FILE.PUT_NAMES(p_log_file,p_out_file,p_directory);
37: g_version_GT_1159:=is_oracle_apps_GT_1159;
38: END put_names;
39:
40:

Line 86: FND_FILE.PUT_LINE(FND_FILE.LOG,substr(p_text, l_start, 250));

82: if l_end >= l_len then
83: l_end:=l_len;
84: last_reached:=true;
85: end if;
86: FND_FILE.PUT_LINE(FND_FILE.LOG,substr(p_text, l_start, 250));
87: l_start:=l_start+250;
88: if last_reached then
89: exit;
90: end if;

Line 98: -- Desc: For now, just a wrapper on top of fnd_file

94: End;
95:
96: -- ------------------------------------------------------------------
97: -- Name: put_line
98: -- Desc: For now, just a wrapper on top of fnd_file
99: -- -----------------------------------------------------------------
100: PROCEDURE put_line(
101: p_text VARCHAR2
102: ) IS