WWV-10202 or WWV-11230

We upgraded from webdb 2.3 to new portal. After upgradation, I try to run the report which is based on parameter called as Region.
There is a lov created and attached to this parmeter also. At the run time, when I come to region paramter it does show all the list of values . But if I select default (ie selecting '%' sign) it gives me following error :
Unable to perform query (WWV-10202)
ORA-01722: invalid number (WWV-11230)
On the other hand if I select value from the LOV's its working fine. Why its not accepting for default ie all..? any ideas
null

Ronald,
You may want to try searching the Oracle9iAS Portal Applications forum.
This forum is specifically for questions related to the Portal Development Kit.
Sue

Similar Messages

  • Error WWV-10202

    We upgraded from webdb 2.3 to new portal. After upgradation, I try to run the report which is based on parameter called as Region.
    There is a lov created and attached to this parmeter also. At the run time, when I come to region paramter it does show all the list of values . But if I select default (ie Selecting '%' sign) it gives me following error :
    Unable to perform query (WWV-10202)
    ORA-01722: invalid number (WWV-11230)
    On the other hand if I select value from the LOV's its working fine. Why its not accepting for default ie all ..? any ideas

    if you write your sql which is where condition this ;
    where field_name like :parameter_name
    the problem was solved.
    if you select % for select all of record the parameter value is set %.
    Best regards
    Dennis

  • WWV-06900 and WWV-01801 Portal errors on 9i

    Anyone having grief with these errors: 'Unable to show menus in level 1 (WWV-06900)' and 'Took exception (WWV-01801)' while accessing some of the application components in Portal should beware of changing the 'SYS' password on the database after installation. I had to reenable the O7_DICTIONARY_ACCESSIBILITY=TRUE flag in the initSID.ora and also recompile all the invalid objects in the 'PORTAL30' schema to get things going again for a client. Seems to be a bug that should supposedly be fixed by RDBMS v9.

    Hello everybody. Excuse me,please.
    I found this errors too. Then I logined to oracle database follow this steps
    sqlplus portal30/portal30@oracle
    SQL>select object_name , object_type ,status
    from user_objects
    where status = 'INVALID';
    OBJECT_NAME OBJECT_TYPE STATUS
    WWSBR_CORNER_CTX_INDX INDEX INVALID
    WWSBR_DOC_CTX_INDX INDEX INVALID
    WWSBR_PERSP_CTX_INDX INDEX INVALID
    WWSBR_THING_CTX_INDX INDEX INVALID
    WWSBR_TOPIC_CTX_INDX INDEX INVALID
    WWSBR_URL_CTX_INDX INDEX INVALID
    WWUTL_API_APPTRANSPORT PACKAGE BODY INVALID
    WWUTL_EXPORTIMPORT_TOOLS PACKAGE BODY INVALID
    WWV_UTLBUILD PACKAGE BODY INVALID
    9 rows selected.
    I use Oracle Internet Application Server 1.0.2.1 (portal 3.0.9) for Windows 2000 and Oracle9i Database for Windows 2000.
    Before days ago I could create portal applications and it's fine but today it had errors "Error: Unable to show menus in
    level 1 (WWV-06900)" and " Took exception (WWV-01801)" . First I thinked somes stored packages in database not fine ,
    then I queried 'object_name' and had results above. Next I upgrade portal 3.0.9 --> 3.0.9.8.2 because I hope
    somes packages in portal 3.0.9.8.2 script will replaced to invalid packages but it's not. After I upgrade to portal
    3.0.9.8.2 I still found errors "Error: Unable to show menus in
    level 1 (WWV-06900)" and " Took exception (WWV-01801)" . Please help me.
    Chugraphong Chaiyawong
    Computer Center ,Khon Kaen University,Thailand.
    Tel.+66.43.348601 ext 126

  • Pass parameter from report to report generates error

    I am new to Portal. Please help me with this one.
    I created two reports using report wizard. Report A lists termination infor group by leaving reasons. Report A takes two parameters: p_termination_date_from, p_termination_date_to.
    When Report A is returned, user is supposed to be able to click on termination reason and go to report B, which has more detail of who is terminated under that reason. Report B takes three parameters:
    p_Leaving_reason,
    p_termination_date_from,
    p_termination_date_to.
    All these three are passed from Report A.
    I use link to pass p_leaving_reason, but not able to use link to pass termination dates. So I use "a href= ..." to pass termination dates in Report A. The report is created without error. But when I run it, it gives me the following error:
    Error: Unable to perform query (WWV-10202)
    ORA-01858: a non-numeric character was found where a numeric was expected (WWV-11230)
    Here is my Report A Statement:
    ===========================================
    select a.LEAVING_REASON, a.meaning, count(distinct(a.EMPLOYEE_NUMBER)) people
    from tableA a
    WHERE
    a.ACTUAL_TERMINATION_DATE >= ''||:P_TERMINATION_DATE_FROM||''
    AND
    a.ACTUAL_TERMINATION_DATE <= '<a
    href="report_b?p_arg_names=P_TERMINATION_DATE_TO&p_arg_values='||:P_TERMINATION_DATE_TO||'">'||:P_TERMINATION_DATE_TO||'</a>'
    GROUP BY a.LEAVING_REASON, a.MEANING;
    And Report B select statement:
    ================================
    Select * from tableB b
    where b.termination_date>=:p_termination_date_from
    and
    b.termination_date<=:p_termination_date_to;
    I appreciate your help.

    Update:
    Now I put a to_char in front of a.actual_termination_date, it does not give me that error any more. But it doesn't return any row.
    Looks like it ignores the value I put in the parameter form. Please help. thank you.
    Here is the updated statement for report A:
    ==============================================
    select a.LEAVING_REASON, a.meaning, count(distinct(a.EMPLOYEE_NUMBER)) people
    from tableA a
    WHERE
    to_char(a.ACTUAL_TERMINATION_DATE, 'dd-mon-yyyy') >= ''||:P_TERMINATION_DATE_FROM||''
    AND
    to_char(a.ACTUAL_TERMINATION_DATE, 'dd-mon-yyyy') <= '<a
    href="report_b?p_arg_names=P_TERMINATION_DATE_TO&p_arg_values='||:P_TERMINATION_DATE_TO||'">'||:P_TERMINATION_DATE_TO||'</a>'
    GROUP BY a.LEAVING_REASON, a.MEANING;

  • Error in multi-select LOV in Portal Report parameter

    Hi,
    I have a Report from SQL Query that currently has a combo-box parameter that's linked to an LOV. Now the client requires for this parameter to be a multiple select instead of a combo box.
    I changed the LOV display to multiple select in Customization Form Display Options, and I changed the where clause of the query to this:
    AND CASE WHEN (SUBSTR (pav.name, INSTR (pav.name, '.')-1, 1) BETWEEN '0' AND '9')
    OR (UPPER (SUBSTR (pav.name, 1, INSTR (pav.name, '.'))) IN ('TBD.', 'PLCV.', 'EPLCV.'))
    THEN SUBSTR (pav.name, INSTR (pav.name, '.') + 1)
    ELSE pav.name
    END IN (NVL (:p_vacancy_name, pav.name))
    It works when I select only one value in the LOV, but gets the following errors when I select more than one:
    *** If Output Format selected is HTML:
    Failed to parse query
    Error: ORA-00933: SQL command not properly ended (WWV-11230)
    Critical Error in wwerr_api_error.get_errors! SQL Error Message: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWV-)
    Error: Unable to execute query (WWV-10201)
    No row returned.
    *** If Output Format selected is Excel:
    ID;ORACLE;N;E P;PGeneral P;P#,##0 P;P#,##0.00 ; ; Global Formatting ; F;C1;FG0R;SM1 ; ; Title Row ;     
    Error:     Unable to perform query (WWV-10202)
         ORA-01001: invalid cursor (WWV-11230)
    Can anyone help me fix these errors?
    Thanks,
    Lorena

    Follow Up:
    After some discussions with Steven I tried to move some stuff around. Eventually I found out that if the ViewObjects on which these two table-blocks are based are built on different Entity Objects, then the application works as desired.
    So the conclusion seems to be: it is not a good idea to have - probably in the same UIModel - multiple Iterators based on ViewObjects that are based on the same EntityObject.
    Note: this is only a work-around: I still do not know exactly what goes wrong and why! It can be in JHeadstart runtime (not so likely), in ADB Binding Layer (very likely) and potentially in ADF BC (quite unlikely).
    best regards,
    Lucas

  • Portal repository differences

    Hi,
    Why would the list of portlets that appear under 'navigator:providers:db_provider:list_of_portlets' differ from the list of portlets that appear under the 'add portlets to region:db_provider:list_of_portlets'? The first list of portlets is correct, however the list that appears in the second case has one portlet with a different name and one portlet that does not appear. The rest of the portlets are fine. I have refreshed the provider several times and I am working with one user only.
    Please help!! Thanks

    Hi,
    When I click the view details link on the Portlet Repository Refresh Status, I get the following error:
    Unable to perform query (WWV-10202)
    ORA-01722: invalid number (WWV-11230)
    no rows returned.
    However, the refresh status and refresh result are complete and suceeded respectively.
    What does this mean?
    Sajit

  • PL/SQL portlet not showing up in portlet respository for existing provider

    I hope you can spare a minute to help. I've created a new PL/SQL portlet and added it to an existing provider package. I've refreshed the portlet repository and refreshed the provider, but the new portlet still doesn't show up. The other portlets in the provider show up fine. Could web cache be the culprit? I'm using Portal R2 9.0.2.6 and PDK July 2003.
    Thank you,
    Kendra

    Thanks!
    I did what you suggested, and the page came back:
    Portlet Repository Refresh Status
    View information about the most recent Portlet Repository refresh, such as who initiated the process, when it was started, and whether it is complete or still in progress. If the refresh is complete, this page also shows when the process finished and whether it was successful. Click View Details to view a more detailed log of the refresh process.
    Started By: PORTAL
    Started On: April 08, 2002 19:13:38
    Completed On: April 08, 2002 19:13:57
    Refresh Status: Complete
    Refresh Result: Succeeded
    View Details
    Note that since I had just done a refresh, I would have expected the date to be today's, assuming that the date refers to when the refresh was done, but instead it's April 8th. Strange?
    When I clicked on the View Details link, it brought up a page:
    Monitor Log Detail Report
    Advanced
    Error: Unable to perform query (WWV-10202)
    ORA-01722: invalid number (WWV-11230)
    No row returned.
    Not too helpful an error message, huh?
    Clicking on the Advanced/Basic links produced identical results (the same exact error message).
    The Add Portlets to Region still does not show the portlet I wish to add.
    Any additional help much appreciated...
    Thanks
    Bryan

  • Portlet not showing up in 'Add Portlets to Region' page

    This relates to Portal 9.0.2 (the new version that shipped with iAS 9.0.2).
    I created a provider based on a Report, specifying the SQL query to be used, and thus created a portlet which produces a report from the query. It works and I have added it to a region in a page. So far, so good.
    Then I created a second provider with a very nearly identical SQL query, set virtually everything to be the same as the attributes for the first portlet. I wish to add it to another region in the same page. However, when I try to do the edit for the page, to add the second portlet, it doesn't show up in the list of portlets in the 'Add Portlets to Region' page, so I can't add it.
    Both portlets show up in the Providers list. They both say 'Report from SQL Query' under Type, and both say that their owner is EXAMPLE_APP. However, when I navigate to that owner in the 'Add Portlets to Region' page, only the first portlet shows up. The other one doesn't.
    Any ideas as to why this might occur? What do I look for? I've tried to look for any differences between the two portlets, and haven't seen anything obvious.
    Help!
    Responses much appreciated!
    Regards
    Bryan

    Thanks!
    I did what you suggested, and the page came back:
    Portlet Repository Refresh Status
    View information about the most recent Portlet Repository refresh, such as who initiated the process, when it was started, and whether it is complete or still in progress. If the refresh is complete, this page also shows when the process finished and whether it was successful. Click View Details to view a more detailed log of the refresh process.
    Started By: PORTAL
    Started On: April 08, 2002 19:13:38
    Completed On: April 08, 2002 19:13:57
    Refresh Status: Complete
    Refresh Result: Succeeded
    View Details
    Note that since I had just done a refresh, I would have expected the date to be today's, assuming that the date refers to when the refresh was done, but instead it's April 8th. Strange?
    When I clicked on the View Details link, it brought up a page:
    Monitor Log Detail Report
    Advanced
    Error: Unable to perform query (WWV-10202)
    ORA-01722: invalid number (WWV-11230)
    No row returned.
    Not too helpful an error message, huh?
    Clicking on the Advanced/Basic links produced identical results (the same exact error message).
    The Add Portlets to Region still does not show the portlet I wish to add.
    Any additional help much appreciated...
    Thanks
    Bryan

  • Can't see interactive report page pagination icon

    Version 3.2.0.00.27
    When my interactive report first appears, it displays "1-15" in the pagination region. It does not show an icon to let me display the next 15 rows.
    However, if I modify the report (as a user), and save that version (as "temp") so that I now have the "Working Report" and "temp" tabs, the pagination now includes the next page icon (i.e. 1-15 ->)
    What do I need to do to have the next-page icon appear in my default report?
    Thanks,
    -Ken

    Hi Sharmila,
    About privilege it4s ok, I have full control, all the permissions.
    When I do "Refresh Portlet Repository" it gives me this ....
    Portlet Repository Refresh Status
    Started By: RENATO
    Started On: August 27, 2002 09:38:17
    Completed On: August 27, 2002 09:38:36
    Refresh Status: Complete
    Refresh Result: Succeeded
    View Details:
    Error: Unable to perform query (WWV-10202)
    ORA-01722: invalid number (WWV-11230)
    No row returned.
    Could be this error the problem ?
    If yes, do you have any ideia about how to deal with it ?
    Thanks !
    Best Regards,
    Renato

  • How to Execute a Remote Procedure in Portal using Database Link

    Hi,
    I followed the instructions to create a Portal form for a remote procedure. But I am encountering the following error. Can someone advise what may be the cause?
    Failed to execute - Missing string(create_package_body) language(us) domain (wwv) sub_domain (wwv_builder) (WWV-04300)
    ORA-04020: deadlock detected while trying to lock object PUBLIC.PORTLET_SCHEMA (WWV-11230)
    Failed to parse as PORTAL - (WWV-08300)
    PURPOSE
    How to execute a remote procedure in Portal using Database Link.
    DESCRIPTION
    This procedure assumes that you have two databases, one of which is remote, and Portal is configured in the other.
    Remote Database A:
    ==================
    1) Create a procedure as follows: Create or Replace PROCEDURE SCOTT.ADD_TWO_VALUES ( v_one IN NUMBER, v_two IN NUMBER, v_result OUT NUMBER) as begin v_result :=v_one+v_two; end; 2) Grant execute privileges to PUBLIC on the procedure.
    Database B (where Portal is configured): ========================================
    1) Create a public database link and choose to connect as a specific user (say SYSTEM). By default, in an Oracle 8i database, the "global_names" parameter in initSID.ora (or init.ora) file is set to "true". This Global Naming parameter enforces that a dblink has the same name as the database it connects to. Therefore, if the remote global database (A) name is "ora8.acme.com" then the database link should also be named as "ora8.acme.com".
    2) Create a synonym for the procedure in Database A. Make sure you fully qualify the procedure name in the remote database (like SCOTT.ADD_TWO_VALUES).
    3) Create a dynamic page to execute the procedure. The ORACLE tags in the dynamic page will look similar to the following: <ORACLE> DECLARE v_total NUMBER; BEGIN ADD_TWO_VALUES(:v_one,:v_two, v_total); htp.p('The total is => '); htp.p('<input type="TEXT" VALUE='||v_total||'>'); htp.para; htp.anchor('http://<machine.domain:port#>/pls/portal30/SCOTT.DYN_ADD_TWO_VALUES.show_parms', 'Re-Execute Procedure'); END; </ORACLE>
    4) Portal does not have an option to create a form based on a synonym. Therefore, if you want to create a form instead of a dynamic page, create a wrapper procedure and then create a form based on this procedure. For example: Create or Replace PROCEDURE PORTAL30.ADD_TWO_VALUES_PR ( v_one IN NUMBER, v_two IN NUMBER, v_total OUT NUMBER) as begin add_two_values(v_one, v_two, v_total); end;
    5) Grant execute privileges to PUBLIC on the procedure.

    hello...
    any input will welcomed... Thanks..

  • ORA-04020 Deadlock when trying to create form based on stored proceure

    Hi,
    I'm trying to create a form based on a stored procedure, and I'm getting " Failed to execute - Missing string(create_package_body) language(us) domain (wwv) sub_domain (wwv_builder) (WWV-04300)
    ORA-04020: deadlock detected while trying to lock object PUBLIC.WARRENP (WWV-11230)
    Failed to parse as PORTAL - (WWV-08300) " when I try to generate the form. I have created a new database provider (warrenp), and I've given it the same privs as the PORTAL_DEMO provider.
    GRANT EXECUTE ON PORTAL.WWCTX_API TO WARRENP;
    GRANT EXECUTE ON WWPRO_API_PARAMETERS TO WARRENP;
    GRANT EXECUTE ON WWPRO_API_INVALIDATION TO WARRENP;
    GRANT SELECT ON WWV_USER_CORNERS TO WARRENP;
    GRANT EXECUTE ON WWPOB_PAGE_UTIL TO WARRENP;
    I create a stored procedure
    CREATE OR REPLACE PROCEDURE sp_test (foo IN number) AS
    BEGIN
    NULL;
    END;
    GRANT EXECUTE ON sp_test TO PUBLIC;
    Then I try to create a form based on this procedure and it fails with the above error. I can create this procedure in the PORTAL_DEMO schema without problems. I can also create a form in the WARRENP provider based on PORTAL_DEMO.GIVE_RAISE and that works also.
    I'm on Portal 10G (9.0.4) on Linux, infrastructure database is 9.0.1.5.0.
    Can anyone tell me what I've missed in my setup?
    Thanks

    I've been informed that this is caused by database bug 2651669.

  • Error running chart - (WWV-11230)

    I'm attempting to create a chart that displays the number of users per organization based upon data in the portal30.wwsec_person$ table. There are no errors reported while creating the chart, however, when attempting to run it, the following is returned.
    ORA-00942: table or view does not exist (WWV-11230)
    Failed to parse as PORTAL30_PUBLIC - select null, CompanyName, count(*) from person group by CompanyName (WWV-08300)
    It appears the package or procedure is attempting to run as PORTAL30_PUBLIC and there may be some priviledges missing. As this is my first chart, I will accept any assistance possible which includes directing me to any documentation I may have overlooked. Thanks.
    null

    One more thing, here's the table structure.
    TABLENAME is 22 characters long.
    Reports from the table work fine.
    Name Null? Type
    ID NOT NULL NUMBER
    USERNAME NOT NULL VARCHAR2(30)
    TITLE NOT NULL VARCHAR2(30)
    FIRST_NAME NOT NULL VARCHAR2(60)
    LAST_NAME NOT NULL VARCHAR2(60)
    PASSWORD NOT NULL VARCHAR2(200)
    PASSWORD_HINT NOT NULL VARCHAR2(255)
    COMPANY_NAME NOT NULL VARCHAR2(150)
    EMAIL_ADDRESS NOT NULL VARCHAR2(256)
    STREET_ADDRESS_1 NOT NULL VARCHAR2(60)
    STREET_ADDRESS_2 VARCHAR2(60)
    CITY NOT NULL VARCHAR2(30)
    STATE NOT NULL VARCHAR2(30)
    ZIP NOT NULL VARCHAR2(30)
    COUNTRY NOT NULL VARCHAR2(256)
    PHONE NOT NULL VARCHAR2(30)

  • ORA-6502: PL/SQL: numeric or value error: character string buffer too small WWV-11230

    Hi,
    I'm trying to create an UI Template. I've generated the html using Frontpage and am successfully able to see in a browser.
    I've copied the html to the UI form, but when I try to preview or execute the UI template, I get the following error:
    Error: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWV-11230)
    null

    I AM FACING SIMILAR PROBLEM, THE EXACT ERROR IS:
    Error: Excepcisn de wwv_generate_component.build_procedure (WWV-01821)
    No se ha podido generar la pantalla de interfaz de usuario: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWV-16409)
    (SORRY , PART OF THE ERROR IS IN SPANISH!)
    I CREATED A FORM , WORKED WITH IT A LOT WITHOUT PROBLEMS. NOW I NEED TO DO SOME CHANGES ON CERTAIN FIELDS AND WHEN I TRY TO SAVE IT I GET THE ABOVE ERROR.
    THEN I GO BACK TO AN OLDER VERSION, COPY AND TRY TO DO CHANGES AND AGAIN THE ERROR COMES UP.
    THE CHANGES I AM TRYING TO DO ARE TO SOME OF THE EXISTING FIELDS IN THE FORM WHICH NEED TO BE PUT AS "INSERTABLE".
    THE SCREEN LAYOUT IS DISPLAYED WITHOUT PROBLEM.
    (THE FORM IS BASED ON A TABLE WITH APROX 80 FIELDS).
    I NEED SOME URGENT HELP. PLS LET ME KNOW ANY OTHER INFO YOU MAY NEED TO HELP ME SOLVE THIS PROBLEM.
    FYI I AM WORKING ON PORTAL VERSION 3.0.9 / ON Windows 2000 (DATABASE 8.1.7.0 AND iAS ARE ON DIFFERENT MACHINES).
    TKS IN ADVANCE

  • ORA-06502: PL/SQL: numeric or value error: Bulk bind: Error in define (WWV-11230)

    Hello,
    I'm running into the above error when running a master/detail form. I can also run the form as a portlet and the form comes up but if I try to save, query or reset, I also get the error. I have portal 3.0.9.8.0 and I do have other master detail forms that work.
    Any thoughts?
    Thanks,
    Martin
    Table structure
    PCH
    PCH_ID NUMBER(9) NOT NULL PK,
    PCH_AGY NUMBER(9) NOT NULL
    PCD
    PCD_ID NUMBER(9) NOT NULL PK,
    PCD_CAN VARCHAR2(7) NOT NULL,
    PCD_PCH_ID NUMBER(9) NOT NULL FK to PCH.PCH_ID

    This usually happens when you upgrade/patch the db after you have upgraded portal/ias. The owa package required by portal are usually of a higher version than that supplied by the db, The db upgrade/patch will cause the owa packages to be overwritten. The solution as mentioned is to reload the latest owa packages supplied with portal/iAS.

  • Error: ORA-00920: invalid relational operator (WWV-16016)

    Hi,
    When I try to query in the form, I'm getting the following error
    An unexpected error occurred: ORA-00920: invalid relational operator (WWV-16016).
    The form has a field of type varchar2 with lov attached to it. This error is happening only if I enter characters more than 40 or select a value which has more than 40 characters from the lov.
    Anbody had this problem?..Is there a solution for this?..Help would be appreciated.
    Thanks
    PJ

    I figured out the problem and it seems like if the value has any 'IN' or 'BETWEEN' and try to query this error is happening and it's not because of character length. I think Portal assumes that relational operator is entered and tries to query based on those words. Is it a bug in the Portal?..
    Thanks
    PJ

Maybe you are looking for

  • Can't print a pdf file with adobe reader 10.1.12 on a Windows Server 2012 R2 RDS session

    Situation : My users are connected with RDP on a Windows Server 2012 R2 Datacenter Remote Desktop Service and when they log on, their share printers are installed. When some users open a pdf file, they can't print it. When they try to print a file, n

  • JDev 11 - Date problem in executeWithParams form who rans fine in Jdev 10

    Hello everybody, Here is my case : I have a viewObject, here is its SQL code : select * from   select req.*, ROW_NUMBER() OVER(ORDER BY 1) num   from     select distinct rvmage.mage_seq, mpr.nom||' '||mpr.prenom as medecin, mpr.nom, mpr.prenom, rvmag

  • Help on retriving mail with attachment

    Can anyone give me a code witch retrieve mail trought pop3 and get the attachment. I made a code but I have a problem. Here is the code with the problem in comment: package candidat; import javax.mail.*; import java.*; import java.util.*; import java

  • Problem exiting eclipse 3.7 while using FB4.6 Plugin

    I've tried many different versions of eclipse and I've come down to the realization that it is FB4.6. Everytime I exit eclipse a pop up saying there are errors look in the metadata/.log file. It appears as if FB4.6 is missing some of the plugins that

  • Changing OTR of standard label

    Hi all I need to change the OTR of standard label of standard package ptrm_web_ui. The thing I tried: 1. When I try bind standard OTR with my label in enhancement mode, the enhancement is lost when activate and test it. 2. When I try to bind label to