DBA Data[Home] [Help]

APPS.INV_LOG_UTIL dependencies on FND_FILE

Line 64: FND_FILE.put_line(FND_FILE.LOG, ' ******** New Session:'||l_session||'****'||l_errmsg||' **********');

60: select to_char(sysdate, 'DD-MON-YY:HH.MI.SS'),userenv('SESSIONID') into l_errmsg,l_session from dual;
61: g_dbg_lvl := fnd_profile.value('INV_DEBUG_LEVEL') ;
62:
63: if ( g_cp_flag > 0 ) then
64: FND_FILE.put_line(FND_FILE.LOG, ' ******** New Session:'||l_session||'****'||l_errmsg||' **********');
65: end if;
66:
67: -- Separate the filename from the directory
68: l_strlen := length(l_dbgpath);

Line 124: FND_FILE.put_line(FND_FILE.LOG, l_timestamp || p_module ||': '|| l_message);

120: );
121:
122: --If called from a concurrent program add msg to FND log
123: if ( g_cp_flag > 0 ) then
124: FND_FILE.put_line(FND_FILE.LOG, l_timestamp || p_module ||': '|| l_message);
125: if (g_file_init) then
126: utl_file.put_line(g_fd, l_timestamp || p_module ||': '|| l_message);
127: utl_file.fflush(g_fd);
128: end if;