DBA Data[Home] [Help]

APPS.ENG_CHANGE_LIFECYCLE_UTIL dependencies on FND_FILE

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

121: ,x_return_status => l_log_return_status
122: ,x_error_mesg => l_errbuff
123: );
124:
125: FND_FILE.put_line(FND_FILE.LOG, 'Log file location --> '||l_log_output_dir||'/'||g_debug_filename ||' created with status '|| l_log_return_status);
126:
127: IF (l_log_return_status <> FND_API.G_RET_STS_SUCCESS)
128: THEN
129: FND_FILE.put_line(FND_FILE.LOG, 'Unable to open error log file. Error => '||l_errbuff) ;

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

125: FND_FILE.put_line(FND_FILE.LOG, 'Log file location --> '||l_log_output_dir||'/'||g_debug_filename ||' created with status '|| l_log_return_status);
126:
127: IF (l_log_return_status <> FND_API.G_RET_STS_SUCCESS)
128: THEN
129: FND_FILE.put_line(FND_FILE.LOG, 'Unable to open error log file. Error => '||l_errbuff) ;
130: END IF;
131:
132: END IF; --IF c_get_utl_file_dir%FOUND THEN
133: -- Bug : 4099546

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

139:
140: EXCEPTION
141: WHEN OTHERS THEN
142: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
143: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Open_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);
144: g_debug_flag := FALSE;
145: END Open_Debug_Session ;
146:
147:

Line 179: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Error_Handler.Get_Debug is not Y, calling Open_Debug_Session ');

175: -- Concurrent Request.
176: ----------------------------------------------------------------------------------
177: IF (Error_Handler.Get_Debug <> 'Y') THEN
178:
179: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Error_Handler.Get_Debug is not Y, calling Open_Debug_Session ');
180: Open_Debug_Session(p_output_dir => p_output_dir, p_file_name => p_file_name) ;
181: END IF;
182:
183: END IF;

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

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

Line 202: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Error_Handler.Get_Debug is not Y, calling Close_Debug_Session ');

198: -- Close Error_Handler debug session, only if Debug session is already open.
199: -----------------------------------------------------------------------------
200: IF (Error_Handler.Get_Debug = 'Y') THEN
201:
202: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Error_Handler.Get_Debug is not Y, calling Close_Debug_Session ');
203: Error_Handler.Close_Debug_Session;
204:
205: END IF;
206:

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

208:
209: EXCEPTION
210: WHEN OTHERS THEN
211: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
212: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Close_Debug_Session LOGGING SQL ERROR => '||g_debug_errmesg);
213: g_debug_flag := FALSE;
214:
215: END Close_Debug_Session;
216:

Line 228: FND_FILE.put_line(FND_FILE.LOG

224: -- So as workaround, I added special developer debug mode here
225: -- to write debug message forcedly
226: IF (TO_NUMBER(g_profile_debug_level) = 999)
227: THEN
228: FND_FILE.put_line(FND_FILE.LOG
229: , G_PKG_NAME
230: || '['||TO_CHAR(SYSDATE,'DD-MON-YYYY HH24:MI:SS')||'] '
231: || p_debug_message
232: );

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

237:
238: EXCEPTION
239: WHEN OTHERS THEN
240: g_debug_errmesg := Substr(To_Char(SQLCODE)||'/'||SQLERRM,1,240);
241: FND_FILE.put_line(FND_FILE.LOG, G_PKG_NAME || ' Write_Debug LOGGING SQL ERROR => '||g_debug_errmesg);
242: g_debug_flag := FALSE;
243: END Write_Debug;
244:
245: