Unable to create plsql procedure, fails at cursor

This was a working procedure which would take ID and then copy data from source parameter to destination parameter. Now I would like to have NAME as parameter, I have changed the code to accommodate the new parameters. But I am not able to create the procedure. I am getting 3 error at CURSOR (in bold red). I would like really appreciate if someone can take a look and let me know what is wrong.
Thanks in advance
3 ERRORs
1. PLS-00103: Encountered the symbol "CUR_V_HSP_COLUMN_DETAIL" when expecting one of the following:
   := . ( @ % ;
The symbol ":=" was substituted for "CUR_V_HSP_COLUMN_DETAIL" to continue.
2. PLS-00103: Encountered the symbol "NUMBER" when expecting one of the following:
The symbol "(" was substituted for "NUMBER" to continue.
3. PLS-00103: Encountered the symbol "NUMBER" when expecting one of the following:
CREATE OR REPLACE procedure EPM_PLAN_PLANSAMP.Copy_Details_test1 --Arguments
( in_From_Version_Name IN VARCHAR2, --HSP_object.OBJECT_NAME - Version From
in_From_Scenario_Name IN VARCHAR2 , --HSP_object.OBJECT_NAME - Scenarios From
in_From_Year_Name IN VARCHAR2 , --HSP_object.OBJECT_NAME - Year From
in_To_Version_Name IN VARCHAR2, --HSP_object.OBJECT_NAME - Version To
in_To_Scenario_name IN VARCHAR2, --HSP_object.OBJECT_NAME - Scenarios To
in_To_Year_Name IN VARCHAR2 --HSP_object.OBJECT_NAME - Year To
IS
v_From_Object_Id number; --  Version From
s_From_Object_Id number; -- Scenarios From
y_From_Object_Id number; -- Year From
v_To_Object_Id number; -- Version To
s_To_Object_Id number; -- Scenarios To
y_To_Object_Id number; -- Year To
BEGIN
Select object_id into v_From_Object_Id
from hsp_object
where object_type = 35
and object_name = in_from_version_name;
Select object_id into s_From_Object_Id
from hsp_object
where object_type = 31
and object_name = in_from_scenario_name;
Select object_id into y_From_Object_Id
from hsp_object
where object_type = 38
and object_name = in_from_year_name;
Select object_id into v_To_Object_Id
from hsp_object
where object_type = 35
and object_name = in_to_version_name;
Select object_id into s_To_Object_Id
from hsp_object
where object_type = 31
and object_name = in_to_scenario_name;
Select object_id into y_To_Object_Id
from hsp_object
where object_type = 38
and object_name = in_to_year_name;
--Select Supporting Details for the current Version
CURSOR Cur_V_HSP_COLUMN_DETAIL (cV_From_Object_Id IN NUMBER, cS_From_Object_Id IN NUMBER) IS
Select DETAIL_ID From EPM_PLAN_PLANSAMP.HSP_COLUMN_DETAIL Where DIM5 = cV_From_Object_Id AND DIM1 = cS_From_Object_Id;
li_DETAIL_ID NUMBER;
Li_Next_DETAIL_ID NUMBER;
FETCH_STATUS NUMBER := 0;
v_step_name varchar2(200);
v_rec_cnt number := 0;
v_cnt number;
v_err varchar2(2000);
-----------------------------------------Begin Copy Version ---------------------------
BEGIN
-- Delete Next version if already exists
v_step_name := 'Delete on HSP_COLUMN_DETAIL_ITEM';
Delete from HSP_COLUMN_DETAIL_ITEM
Where DETAIL_ID in (Select DETAIL_ID from HSP_COLUMN_DETAIL
Where DIM5 = v_To_Object_Id AND DIM1 = s_To_Object_Id);
v_cnt := sql%rowcount;
insert into t_copy_supporting_dtls_log values (v_step_name, v_cnt,1,'Success',sysdate);
v_step_name := 'Delete on HSP_COLUMN_DETAIL';
Delete from HSP_COLUMN_DETAIL
where DIM5 = v_To_Object_Id AND DIM1 = s_To_Object_Id;
v_cnt := sql%rowcount;
insert into t_copy_supporting_dtls_log values (v_step_name, v_cnt,1,'Success',sysdate);
Open Cur_V_HSP_COLUMN_DETAIL(v_From_Object_Id, s_From_Object_Id);
v_step_name := 'Inserts ';
LOOP
FETCH Cur_V_HSP_COLUMN_DETAIL INTO li_DETAIL_ID;
EXIT WHEN Cur_V_HSP_COLUMN_DETAIL%NOTFOUND;
-- Find next detail_id
Select Max(DETAIL_ID) + 1 INTO Li_Next_DETAIL_ID From HSP_COLUMN_DETAIL;
-- Insert Into HSP_COLUMN_DETAIL Table
Insert Into HSP_COLUMN_DETAIL ( DETAIL_ID , PLAN_TYPE , DIM1 , DIM2 , DIM3 , DIM4 , DIM5 , DIM6 ,
DIM7 , DIM8 , DIM9 , DIM10 , DIM11 , DIM12 , DIM13 , DIM14 , DIM15 ,
DIM16 , DIM17 , DIM18 , DIM19 , DIM20 )
Select Li_Next_DETAIL_ID , PLAN_TYPE , S_To_Object_Id , DIM2 , DIM3 , DIM4 , V_To_Object_Id , DIM6 ,
DIM7 , DIM8 , DIM9 , DIM10 , DIM11 , DIM12 , DIM13 , DIM14 , DIM15 ,
DIM16 , DIM17 , DIM18 , DIM19 , DIM20
From HSP_COLUMN_DETAIL
Where DETAIL_ID = li_DETAIL_ID;
v_rec_cnt := v_rec_cnt + sql%rowcount;
-- Insert Into HSP_COLUMN_DETAIL_ITEM Table
Insert Into HSP_COLUMN_DETAIL_ITEM ( DETAIL_ID , VALUE , POSITION , GENERATION , OPERATOR , LABEL)
Select Li_Next_DETAIL_ID , VALUE , POSITION , GENERATION , OPERATOR , LABEL
From HSP_COLUMN_DETAIL_ITEM Where DETAIL_ID = li_DETAIL_ID;
v_rec_cnt := v_rec_cnt + sql%rowcount;
END LOOP;
Close Cur_V_HSP_COLUMN_DETAIL;
insert into t_copy_supporting_dtls_log values (v_step_name, v_rec_cnt,1,'Success',sysdate);
commit;
exception when others then
rollback;
v_err := substr(sqlerrm,1,2000);
insert into t_copy_supporting_dtls_log values (v_step_name, 0,-1,v_err,sysdate);
commit;
END;
END;

All the following statements should go into the declaration section (i.e. before the first begin)
CURSOR Cur_V_HSP_COLUMN_DETAIL (cV_From_Object_Id IN NUMBER, cS_From_Object_Id IN NUMBER) IS
Select DETAIL_ID From EPM_PLAN_PLANSAMP.HSP_COLUMN_DETAIL Where DIM5 = cV_From_Object_Id AND DIM1 = cS_From_Object_Id;
li_DETAIL_ID NUMBER;
Li_Next_DETAIL_ID NUMBER;
FETCH_STATUS NUMBER := 0;
v_step_name varchar2(200);
v_rec_cnt number := 0;
v_cnt number;
v_err varchar2(2000);

Similar Messages

  • Encountered an error in repository runtime extension;Create LLang procedure failed

    Hi Guys 
    I am implementing Apriori algorithm through graphical way.  My model is validated but while activating this i am getting the error' Encountered an error in repository runtime extension;Create LLang procedure failed'  Here i am attaching the model which i have created.
    Regards
    Karuna

    Hi Folks,
    I resolved this issue by setting schema as _SYS_AFL...  Thanks for your help.
    Regards
    Karuna

  • Unable to Create PLSQL Webservice in JDeveloper 11g

    Hi,
    i have created webservice for PL/SQL for functions with out TYPE data types as parameter..
    but i am unable to create a webservice for procedure having
    Freight_Pkg.PROCEDURE get_freight(
    p_sbl_source_line_tab IN OUT SYK_SBL_SOURCE_LINE_TAB_TYPE
    ,l_total_freight OUT NUMBER
    ,l_err_code OUT NUMBER
    ,l_err_mesg OUT VARCHAR2
    and when i try to create web service it generates below Warning
    =========================================
    Log Message of WebService
    ========================================
    Generating PL/SQL Web Service
    Generating WSDL and mapping file
    WARNING: OWS-00077 The Value Type class: SykSblSourceLineBase does not have a valid Java Bean pattern.
    Adding service files to deployment profile
    Service generation finished
    Generation complete.
    Please let me know the procedure for creating Webservice for PLSQL of Table Type Parameters passing as IN parameter in Procedure.
    Thanks,
    Vijay

    Vijay,
    Is this configured with Oracle E-Business Suite? If yes, please note that JDeveloper 11g is not certified with Oracle Apps 11i/R12.
    How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12.x [ID 416708.1]
    Configuring JDeveloper For Use With Oracle Applications 11i and R12 [ID 330236.1]
    If this is not related to EBS, post your question in the appropriate forum for a better/faster response.
    JDeveloper and ADF
    JDeveloper and ADF
    Thanks,
    Hussein

  • Forms 11g Win7 - Unable to create JAVA procedure

    Hi,
    When I click "Program Unit" -> "New", I see there is a possibilty to create a Java Source, but it is deactivated.
    Java is not installed in the Database, maybe that's the reason.
    Many thanks for your help.

    >
    Where s default.env located by default?
    When I searched for this file inside WebLogic (configured with Forms) , default.env could be located only in
    D:\Installs\WebLogic10.3.2\user_projects\domains\ClassicDomain\servers\WLS_FORMS\tmp\_WL_user\formsapp_11.1.1\wb1h9e\configThis is not the location of default.env. If you want u can update that using EM
    http://machine:port/em
    If you search for default.env in user_projects directory you might probably get two listed. Take the other an than the one you listed here. It will not be in tmp directory.

  • Dbms_scheduler job finihed succesfull when underlying procedure fails

    I have a job created with dbms_scheduler which finishes succesfully even when the underlying plsql procedure raises a oracle error.
    Is there any way to stop the running job with a failure when the plsql procedure fails and show the oracle error in the all_scheduler_job_run_details.error# column?
    Example:
    procedure test is
    begin raise no_data_found;
    end;
    dbms_scheduler.create_job(job_name =>'MY_JOB', 'test');
    dbms_scheduler.run_job;
    when querying all_scheduler_job_run_details I want to see the no_data_found error which occurs in procedure.

    user4260036 wrote:
    I have a job created with dbms_scheduler which finishes succesfully even when the underlying plsql procedure raises a oracle error.
    Is there any way to stop the running job with a failure when the plsql procedure fails and show the oracle error in the all_scheduler_job_run_details.error# column?
    what exactly does "stop the running job" mean?
    when querying all_scheduler_job_run_details I want to see the no_data_found error which occurs in procedure.in which column do you expect/desire this information to reside?
    SQL> desc all_scheduler_job_run_details
    Name                            Null?    Type
    LOG_ID                              NUMBER
    LOG_DATE                             TIMESTAMP(6) WITH TIME ZONE
    OWNER                                  VARCHAR2(30)
    JOB_NAME                             VARCHAR2(65)
    JOB_SUBNAME                             VARCHAR2(65)
    STATUS                              VARCHAR2(30)
    ERROR#                              NUMBER
    REQ_START_DATE                         TIMESTAMP(6) WITH TIME ZONE
    ACTUAL_START_DATE                        TIMESTAMP(6) WITH TIME ZONE
    RUN_DURATION                             INTERVAL DAY(3) TO SECOND(0)
    INSTANCE_ID                             NUMBER
    SESSION_ID                             VARCHAR2(30)
    SLAVE_PID                             VARCHAR2(30)
    CPU_USED                             INTERVAL DAY(3) TO SECOND(2)
    CREDENTIAL_OWNER                        VARCHAR2(65)
    CREDENTIAL_NAME                        VARCHAR2(65)
    DESTINATION_OWNER                        VARCHAR2(128)
    DESTINATION                             VARCHAR2(128)
    ADDITIONAL_INFO                        VARCHAR2(4000)

  • Cursor in stored procedure fails

    Hi,
    In our application we have a stored procedure which is called with in parameters to generate data into some table. This procedure is being called from another procedure.
    This procedure has been used to generate data into the table without any problem since oracle 9i. Last year we have upgraded to oracle 11g after that this procedure is failing intermittently to generate data. When this procedure is executed 50 times it fails atleast once to generate data. If we rerun the procedure for the failed case it generates the data without any change to program code nor any change in underlying data. It doesn't fail if we rerun. Therefore we are unable to simulate the problem.
    Procedure has got a very simple code.
    proc1 (p1 date,p2 date) is
    begin
    for c1_rec in c1 (select col1,col2
    from x,y where x.......)
    loop
    end loop;
    end;
    First we thought for some reason this procedure was not executed at all. But it is not the case. Actually it calls the procedure but the cursor inside the procedure doesn't fetch any records. Also it doesn't report any oracle error.
    Appreciate if any one can help me in this.
    Thanks & Regards,
    Raja

    vaidyanathanraja wrote:
    4. If there is a logical error, the same procedure should not generate data when it is rerun. Behaviour should be the same at all times.Incorrect. Something like NLS settings for example can make the same code, behave differently. E.g. a date string is passed and implicitly converted to a date. And this will work for most dates from different session using different NLS settings (e.g. yyyy/mm/dd versus yyyy/dd/mm). And these sessions will provide different results using the same parameters calling the same application code.
    There are a number of such run-time factors that influences code.
    5. Failed means it didn't generate the expected output. Which means that there is a problem with that SQL being executed the way it is, with the parameters used. You need to isolate the problem further.
    6. Parameter values are right.Have you proved that by using a test case that runs the very same SQL via a test proc, using the same parameter, via a job? Ran that test case interactively via sqlplus?
    You need to pop the hood and isolate the problem.
    7. I came across one blog saying different behaviour for REF CURSOR between oracle 10g and 11g and he says it is oracle bug. I don't know whether it is applicable for this case also.Bahumbug. There are many Oracle bugs. As there is in all software. However, you have not provided any evidence of a bug.
    Application code is behaving inconsistently. That is the symptom. Oracle system code is not relevant until you can prove that the inconsistency is not in the application code, but lower down the call stack.

  • I'm trying to backup a my harddrive with disk utility but I'm getting an error  Unable to create Backup.dmg" (input/output error). Is there any other way to save my data? I believe my hard drive is failing or corrupt file. I can't boot up. Grey screen

    I'm trying to backup a my hard drive with disk utility but I'm getting an error  Unable to create Backup.dmg" (input/output error). Is there any other way to save my data? I believe my hard drive is failing or corrupt file. I can't boot up. Grey screen and spinning wheel. I've tried everything https://discussions.apple.com/message/20580424#20580424
    any help will be greatly appreciated.

    Check here. Also have you done a TimeMachine back up?
    http://support.apple.com/kb/TS2570

  • Unable to create a new Message  Layout : 500 attempts failed.

    I am getting this error " Unable to create a new Message Layout : 500 attempts failed." when I am trying to add my custom region to seeded Message Layout.

    Is that all the error message you are getting or java error stack is also there? It looks like a custom message as I couldn't find it in fnd messages. DO you have any other custom code on this page or is this a custom page?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • SOAP: call failed: java.io.IOException: unable to create a socket ??

    Hi
    I am getting the following error in PI for one of my sync interfaces.
    SOAP: call failed: java.io.IOException: unable to create a socket
    The interface works most of the time, but i get this error couple of times a day.
    Regards,
    XIer

    Hav you able to resolve this issue? Please let me know what was cause of this "unable to create a socket"
    Thanks,
    Sagar

  • How to create a procedure function with a return value of ref cursor?

    Can anybody provide a sample about how to create a procedure function with a return value of REF CURSOR?
    I heard if I can create a function to return a ref cursor, I can use VB to read its recordset.
    Thanks a lot.

    http://osi.oracle.com/~tkyte/ResultSets/index.html

  • Unable to create server cursor

    Hello all
    I have a cube with 5 dimensions.
    One dimension have about 12000 values and 2 levels. Top level include all dimension values.
    I open query builder in crosstab, select top level of this dimension.
    When i try open all values in "Selected:" window i get error:
    oracle.express.ExpressServerExceptionError class: OLAPI
    Server error descriptions:
    DPR: Unable to create server cursor, Generic at TxsOqDefinitionManager::createCursorManager
    OES: ORA-00920: invalid relational operator
    , Generic at TxsRdbOCIConnection::execStmt
         oracle.express.olapi.data.full.ExpressSpecifiedCursorManager oracle.express.olapi.data.full.DefinitionManager.createCursorManager(oracle.olapi.data.source.CursorManagerSpecification)
         oracle.olapi.data.source.SpecifiedCursorManager oracle.express.olapi.data.full.ExpressDataProvider.createCursorManager(oracle.olapi.data.source.CursorManagerSpecification, oracle.olapi.data.source.Source[])
         oracle.olapi.data.source.SpecifiedCursorManager oracle.olapi.data.source.DataProvider.createCursorManager(oracle.olapi.data.source.CursorManagerSpecification)
         oracle.express.olapi.data.full.ExpressSpecifiedCursorManager[] oracle.dss.dataSource.QueryUtilities.setUpCursors(oracle.dss.dataSource.SourceTemplate[], oracle.dss.dataSource.common.CubeCursor[], oracle.olapi.data.source.Source[], oracle.express.olapi.data.full.ExpressSpecifiedCursorManager[], boolean, boolean, boolean, boolean)
         oracle.express.olapi.data.full.ExpressSpecifiedCursorManager[] oracle.dss.dataSource.QueryServer._setUpCursorsForMainQuery(oracle.dss.dataSource.SourceTemplate[], oracle.dss.dataSource.common.CubeCursor[], boolean, boolean, boolean, boolean)
         void oracle.dss.dataSource.QueryServer._getCursorForCube(oracle.dss.dataSource.common.DimTree, boolean, boolean, boolean, boolean, boolean)
         void oracle.dss.dataSource.QueryServer._createCubeAndCursor(boolean, boolean, boolean)
         void oracle.dss.dataSource.QueryServer._createCommonQuery(java.lang.String[][], java.lang.String[], oracle.dss.util.Operation, oracle.dss.dataSource.common.QueryState)
         void oracle.dss.dataSource.QueryServer._initQuery(java.lang.String[][], java.lang.String[], oracle.dss.util.Operation, oracle.dss.dataSource.common.QueryState)
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])
         java.lang.Object oracle.dss.util.Operation.execute(java.lang.Object)
         java.lang.Object oracle.dss.dataSource.OperationQueue.update()
         java.lang.Object oracle.dss.dataSource.common.BaseOperationQueue.addOperation(oracle.dss.util.Operation, int)
         java.lang.Object oracle.dss.dataSource.common.BaseOperationQueue.addOperation(oracle.dss.util.Operation)
         java.lang.Object oracle.dss.dataSource.QueryServer.queueOperation(java.lang.String, oracle.dss.util.Parameter[], boolean, oracle.dss.dataSource.common.QueryEvent, java.lang.String, oracle.dss.util.Parameter[], oracle.dss.dataSource.common.QueryState)
         void oracle.dss.dataSource.QueryServer.initQuery(java.lang.String[][], java.lang.String[])
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])
         java.lang.Object oracle.dss.util.Operation.execute(java.lang.Object)
         java.lang.Object oracle.dss.dataSource.QueryManagerServer.sendQueue(oracle.dss.dataSource.common.BaseOperationQueue)
         java.lang.Object oracle.dss.dataSource.common.OperationQueue.update()
         java.lang.Object oracle.dss.dataSource.common.BaseOperationQueue.addOperation(oracle.dss.util.Operation, int)
         java.lang.Object oracle.dss.dataSource.common.BaseOperationQueue.addOperation(oracle.dss.util.Operation)
         void oracle.dss.dataSource.client.QueryClient.initQuery(java.lang.String[][], java.lang.String[])
         oracle.dss.dataSource.common.QueryUtil$DAQuery oracle.dss.dataSource.common.QueryUtil._getDataForSelection(oracle.dss.dataSource.common.QueryManager, oracle.dss.selection.Selection, oracle.dss.util.MetadataMap)
         oracle.dss.dataSource.common.QueryUtil$DAQuery oracle.dss.dataSource.common.QueryQueryAccess._getDataForSelection(oracle.dss.selection.Selection, oracle.dss.util.MetadataMap)
         oracle.dss.util.DataAccess oracle.dss.dataSource.common.QueryQueryAccess.getDataAccess(oracle.dss.selection.Selection, oracle.dss.util.MetadataMap)
         oracle.dss.util.DataAccess oracle.dss.dataSource.common.QueryQueryAccess.getDataAccess(oracle.dss.selection.Selection)
         void oracle.dss.queryBuilder.QueryBuilderMultiSourceDimensionModel.setSelection(oracle.dss.selection.Selection)
         void oracle.dss.queryBuilder.StepsPanel.loadSteps()
         void oracle.dss.queryBuilder.StepsPanel.selectionChanged(oracle.dss.datautil.SelectionChangedEvent)
         void oracle.dss.dataSource.common.QueryQueryAccess.fireSelectionChanged(oracle.dss.datautil.SelectionChangedEvent)
         void oracle.dss.dataSource.common.QueryQueryAccess$SelCursor._fireSelectionChanged()
         void oracle.dss.dataSource.common.QueryQueryAccess$SelCursor.setSelection(oracle.dss.selection.Selection)
         oracle.dss.dataSource.common.QueryQueryAccess$SelCursor oracle.dss.dataSource.common.QueryQueryAccess._setSelection(oracle.dss.selection.Selection)
         void oracle.dss.dataSource.common.QueryQueryAccess.setSelection(oracle.dss.selection.Selection)
         boolean oracle.dss.queryBuilder.QueryBuilderMultiSourceDimensionModel.drill(int, int)
         boolean oracle.dss.util.dimensionList.DimensionList.doDrill(int)
         void oracle.dss.util.dimensionList.DimensionList.handleMouseClicked(java.awt.event.MouseEvent)
         void oracle.dss.util.dimensionList.DimensionList.processMouseEvent(java.awt.event.MouseEvent)
         void java.awt.Component.processEvent(java.awt.AWTEvent)
         void java.awt.Container.processEvent(java.awt.AWTEvent)
         void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
         void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
         boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
         boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
         void java.awt.Dialog.show()
         void java.awt.Component.show(boolean)
         void java.awt.Component.setVisible(boolean)
         boolean oracle.bali.ewt.wizard.WizardDialog.runDialog()
         boolean oracle.dss.datautil.gui.DefaultBuilderDialog.runDialog()
         boolean oracle.dss.datautil.gui.DefaultBuilderDialog.run()
         boolean oracle.dss.queryBuilder.QueryBuilder.run()
         boolean oracle.dss.addins.editor.presentation.QueryBuilderTool.runTool(oracle.dss.addins.designer.BIDesigner, oracle.dss.dataView.Dataview, java.awt.Frame)
         void oracle.dss.addins.editor.presentation.PresentationToolbarButton.actionPerformed(java.awt.event.ActionEvent)
         void javax.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent)
         void javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent)
         void javax.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent)
         void javax.swing.DefaultButtonModel.setPressed(boolean)
         void javax.swing.plaf.basic.BasicButtonListener.mouseReleased(java.awt.event.MouseEvent)
         void java.awt.AWTEventMulticaster.mouseReleased(java.awt.event.MouseEvent)
         void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
         void java.awt.Component.processEvent(java.awt.AWTEvent)
         void java.awt.Container.processEvent(java.awt.AWTEvent)
         void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
         void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
         boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
         boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
         void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
         void java.awt.EventDispatchThread.run()
    When i try open all values in "Available:" window, everything is O.K.
    But when i select "Condition" tab, i get same error.
    All works if values < 1000.
    What can i do to avoid this error ?

    Hi Keith
    The software I have installed is:
    1. Oracle Database 9.0.1.1.1 on Windows 2000 Advanced Server SP2
    2. Oracle Database Patch 9.0.1.3.1
    3. Oracle OLAP Patch 9.0.1.2.1
    4. JDeveloper 9.0.2.829 on the same computer
    5. BI Beans 9.0.2.7.0
    I also can't select more than 1000 elements of dimension in Cube Viewer too.
    Simply nothing happen.
    I have installed this software on 3 different computers and the problems are remained.
    Thanks in advance.

  • All CX traffic dropped on data plane with error message 'Unable to create policy params (policy-params-failed)

    Problems with CX dropping all traffic - error message: Unable to create policy params (policy-params-failed) seen when issuing cli cmd show opdata framedrop on CX.
    Data hits ASA Service Policy and is redirected to CX, but no traffic is passed (user experience is timeout in browser).
    Problem started after SW upgrade - present running versions:
    ASA version: 9.1.5(21)
    CX version: 9.3.3.1 (13)
    Have tried to disable all policies and create a 'permit any any' policy, which at present is the only activve policy - still same problem.
    Any suggestions?

    If i am using 11G andrtp is 11g but on rtp side if they configure SSL, is it mandatory to do it from our side also?No it not mandatory to enable SSL at your end however you have to configure identity and trsut at your end.
    Any update on my regular question(The main forum question)?You mentioned that you are posting message from 10g to 11g and as per log you are sending it to URL - https://dev-nog.server:443/b2b/transportServlet
    So few things which I see as a problem are-
    1. You should use URL https://hostname:soa_server_ssl_port/b2b/httpReceiver instead of https://dev-nog.server:443/b2b/transportServlet
    2. SOA server SSL port should be enabled (SSL should be enabled on SOA server)
    3. You should configure wallet at 10g side to contain trust cert of 11g server
    Regards,
    Anuj

  • New Error - Unable to Create Any Backups (com.adobe.versioncue.boot - Failed to start com.adobe.vers

    A new error just started showing up in my Vc logs: com.adobe.versioncue.boot - Failed to start com.adobe.versioncue.backup.schedule.
    Since the report of this error, I am unable to create any kind of Version Cue backups. Has anyone else seen this error?
    I had hoped that a simple reboot would alleviate the problem, but it didn't. The error occurs during Vc startup (boot). It's a little odd that Vc was mostly fine until I rescheduled my Windows Backup (ntbackup.exe) to run 90 minutes earlier, and failed to tell Diskeeper to also not auto-defrag 90 minutes earlier. (In other words, it's possible that Diskeeper did its thing the same time ntbackup was running.)
    Running Windows XP SP3. I'm going to try a repair install of Vc in a few moments.

    Update 2: ntbackup restore of System State to day before last successful Vc backup failed to correct the problem. I can't even run a manual backup.
    Can anyone tell me how to determine the ClassPath used by Vc?
    There is no stack trace from this error - the exception is caught and handled, so Vc continues to run after creating the single log entry posted in Msg-1 above. By knowing the ClassPath, I may be able to restore the corrupted Java JARs, if that is the root of this problem.
    I'd really hate to have to (ntbackup) restore the whole computer back to last Monday...

  • Creating a PLSQL Procedure as Concurrent Program

    Folks:
    I am new both to PLSQL and Concurrent program creation. I am actually working on a process for deploying changes from one environment to another, so I want to create a simpel PLSQL procedure that I can then register as a concurrent program, and finally test the download/uplaod of this procedure and program from one instance to another.
    I tried reading the Developer documentation on creating concurrent program, but couldn't find the information I was looking for. Here are some of my questions:
    1) The PLSQL procedure that I want to run as concurrent program, can it be declared within a new custom package, or does it have to be created as a procedure.
    2) In the concurrent program executable registration window, can i specify directly the name of this new procedure or do I need to create an additional wrapper PLSQL procedure that has Concurrent Program related attribute (Developer guide seemed to incline that way).
    3) What should be put in the 'File' parameter on Concurrent Program Execution Window in the case of pl/sql concurrent program. There is no file, so what to put in there?
    4) Any other place I can find step by step how to for making a 'PLSQL" package a concurrent program?

    Hi,
    1) Create PL/SQL Package with "main" procedure that has arguments ERRBUF and RETCODE plus your other required arguments.
    2) xxxx_pkg.main as per 1.
    3) xxxx_pkg.main (the package and procedure name)
    4) Best place to look is at an existing program! Plenty of basic examples on the net. Here's a link that has basic package and screens:
    http://garethroberts.blogspot.com/2007/10/excel-file-output-from-oracle.html
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • DRM-61026: Unable to create user session for the following reason: Login failed. Invalid user name or password.

    All Im very new to Oracle DRM and Im trying to get the app setup on Windows server running SQL Server 2008.  When I try to login to the Web Client I keep getting this error.
    DRM-61026: Unable to create user session for the following reason: Login failed. Invalid user name or password.
    Can you please help

    This might be due to The 'Oracle Instance' path may not have been set to a path relative to the 'CSS Bridge Host' (i.e. the Foundation Services machine) on the Configuration > Host Machines > CSS > General tab of the DRM Configuration Utility.
    if this is the case then
    1. Open the DRM Configuration Console.
    2. Go to the Configuration > Host Machines > CSS > General tab of the DRM Configuration Utility.
    3. Ensure that the path in 'Oracle Instance' has been set relative to the 'CSS Bridge Host' (i.e. the Foundation Services machine defined in 'CSS Bridge Host').
    4. If corrections are made to 'Oracle Instance' then restart the DRM services to pick up the change.
    Thanks,
    ~KKT~

Maybe you are looking for

  • How to default country key in FD01/FK01 (Customer / Vendor Creation)

    Hi gurus! I just noticed that in one of our systems (development) the country key has a default value. Can anybody please help me how to do that in our UAT system? Thanks Edited by: Patrick on Jan 31, 2008 9:41 AM

  • Can i stop a order item create

    When  we create a order item , a lot of object will be created .  Orderadm_i , pricing_i ,  customer_i ...... We can use the tcode 'crmv_event'  to create own Zfunction on the system event. Can we stop the creating procedure by these zfunction. Dont

  • Contact Photo size when phone rings

    When my iPhone rings, the saved image of the person calling from in contacts takes the entire screen (big picture), but when you watch the Apple commercials, the face appears as a small square in the upper right hand corner next to the name of the pe

  • Unable to add supplying plant

    Hi, I am unable to add supplying plant for cross company STO in vendor Master. I go to XK02-Purchasing-Extras-Add purchasing data but no tab is coming where I can put the plant.The screen here shows just Data retention at VSR and data retention at pl

  • Epson RX-700 cant use Epson print CD function .....

    Since i upgrade from MAC OS X 10.4.10 to 10.5 i can print page as usual but the Epson Print CD do not work and give me a message ; cant find the drivers for the application. What i can do ..... please Help.