DBA Data[Home] [Help]

APPS.ENG_WORKFLOW_UTIL dependencies on V$PARAMETER

Line 38: FROM V$PARAMETER

34: l_error_mesg VARCHAR2(2000) ;
35:
36: CURSOR c_get_utl_file_dir IS
37: SELECT VALUE
38: FROM V$PARAMETER
39: WHERE NAME = 'utl_file_dir';
40:
41: l_found NUMBER;
42:

Line 130: FROM v$parameter

126: END IF;
127:
128: select value
129: INTO l_utl_file_dir
130: FROM v$parameter
131: WHERE name = 'utl_file_dir';
132:
133: l_found := INSTR(l_utl_file_dir, g_output_dir);
134:

Line 143: -- ' value in v$parameter for name = utl_file_dir ';

139:
140: -- 'Debug Session could not be started because the ' ||
141: -- ' output directory name is invalid. ' ||
142: -- ' Output directory must be one of the directory ' ||
143: -- ' value in v$parameter for name = utl_file_dir ';
144:
145: -- FND_MSG_PUB.Add_Exc_Msg
146: -- ( G_PKG_NAME ,
147: -- 'Open_Debug_Session' ,