DBA Data[Home] [Help]

APPS.ENG_DOCUMENT_UTIL dependencies on FND_FILE

Line 122: FND_FILE.put_line(FND_FILE.LOG, 'Unable to open error log file. Error => '||l_errbuff) ;

118: );
119:
120: IF (l_log_return_status <> FND_API.G_RET_STS_SUCCESS)
121: THEN
122: FND_FILE.put_line(FND_FILE.LOG, 'Unable to open error log file. Error => '||l_errbuff) ;
123: END IF;
124:
125: END IF; --IF c_get_utl_file_dir%FOUND THEN
126: -- Bug : 4099546

Line 138: FND_FILE.put_line(FND_FILE.LOG, 'Log file location --> '||l_log_output_dir||'/'||g_debug_filename ||' created with status '|| l_log_return_status);

134: WHEN OTHERS THEN
135:
136: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
137:
138: FND_FILE.put_line(FND_FILE.LOG, 'Log file location --> '||l_log_output_dir||'/'||g_debug_filename ||' created with status '|| l_log_return_status);
139: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Open_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);
140: g_debug_flag := FALSE;
141: END Open_Debug_Session ;
142:

Line 139: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Open_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);

135:
136: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
137:
138: FND_FILE.put_line(FND_FILE.LOG, 'Log file location --> '||l_log_output_dir||'/'||g_debug_filename ||' created with status '|| l_log_return_status);
139: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Open_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);
140: g_debug_flag := FALSE;
141: END Open_Debug_Session ;
142:
143:

Line 161: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Close_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);

157:
158: EXCEPTION
159: WHEN OTHERS THEN
160: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
161: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Close_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);
162: g_debug_flag := FALSE;
163:
164: END Close_Debug_Session;
165:

Line 177: FND_FILE.put_line(FND_FILE.LOG

173: -- So as workaround, I added special developer debug mode here
174: -- to write debug message forcedly
175: IF (TO_NUMBER(g_profile_debug_level) = 999)
176: THEN
177: FND_FILE.put_line(FND_FILE.LOG
178: , G_PKG_NAME
179: || '['||TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS')||'] '
180: || p_debug_message
181: );

Line 190: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Write_Debug LOGGING SQL ERROR => '||g_debug_errmesg);

186:
187: EXCEPTION
188: WHEN OTHERS THEN
189: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
190: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Write_Debug LOGGING SQL ERROR => '||g_debug_errmesg);
191: g_debug_flag := FALSE;
192: END Write_Debug;
193:
194:

Line 234: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Check_And_Open_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);

230:
231: EXCEPTION
232: WHEN OTHERS THEN
233: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
234: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Check_And_Open_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);
235: g_debug_flag := FALSE;
236: END Check_And_Open_Debug_Session;
237:
238: