Oracle TestManager run test functional siebel

Hello!

I run scripts written by Oracle OpenScript on TestManager, when you call CASE management I get error of waiting time for CASES to initialize.

If I run the script on the Oracle OpenScript all works.what could be the problem?

The problem is solved in this way:

Services.msc opened to run and stop the Agent of ATS Oracle service and change the type of manual start. Then run C:\OracleATS\agentmanager\bin\AgentManagerService.exe - c cmd C:\OracleATS\agentmanager\bin\AgentManagerService.conf. So try Quickrun of OTM.

Thanks to you all!

Tags: Oracle Development

Similar Questions

  • Oracle ADF Model Tester (-not signed in)

    In Jdev12.1.2, I created a new Application to run the demo of adf faces (rcf-dvt-demo 12.1.2) test, it works well.

    now, I need to add a new function - one of which is to connect to a database as well as to add business components.

    1. create a connection to the application resource database;

    2. create the table business (hr.departments) component.

    AppModule

    EO departments;

    DepartmentsView

    But when executing ADF Tester against the AppModule above, high errors will may not get the result.

    Oracle ADF Model Tester (-not signed in)

    and he showed empty for AM

    Journal of msg like this:

    August 17, 2014 16:54:12 oracle.adf.share.config.ADFContextMDSConfigHelperImpl createMDSSession

    INFO:

    oracle.adf.share.ADFShareException: error getMDSInstance

    at oracle.adf.share.config.FallbackConfigImpl.getMDSInstance(FallbackConfigImpl.java:83)

    at oracle.adf.share.config.FallbackConfigImpl.getDefaultMDSInstance(FallbackConfigImpl.java:94)

    at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:569)

    I tried to fix it but did not succeed.

    can someone help?

    Thank you.

    This is exactly the problem. You should not add an application module in a project (demo in your case), which has a webroot.

    You must create a new project and add request module in this new project. Then, you use the module of the application as you would normally to the data control.

    Timo

  • Running tests of OpenScript in OTM

    Hello

    I added an OpenScript form functional script in OTM and when I click on "Run test", and I see no action. In the history of the race, OTM shows in the 'Results' column that the test is 'Running', although more than hour elapsed since the beginning of the test to run.

    I tried: OTM System Manager (Tools-> systems) and enterd my windows account password, but
    It still does not work.

    Can someone advise something?

    LEA

    Ok. Doing a job that is running the service as a console application?

    Jamie

  • Check if the layer is visible and run a function according to the answer

    Hey guys,.

    I have a question that has been racking my brain these days.

    If I want to run a script when I press a button that will check if a specific layer is visible. If so, it performs another function that shows additional layers. If the specific layer is not visible, it checks the next layer to see if it is visible. This continues until it checks all the necessary layers and is a visible layer.

    Here's the script in question:

    #target photoshop

    //

    clthTopTt.jsx

    //

    cTID = function (s) {return app.charIDToTypeID (s) ;};}

    sTID = function (s) {return app.stringIDToTypeID (s) ;};}

    //

    //==================== actnStd ==============

    //

    function checkactnStd() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnStd");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17011);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnStd');     <-if the actnStd layer is visible, rather than performing this action, it runs the function selectactnStd().

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnWlk");  <-if the actnStd layer is NOT visible, it executes the next layer checks (via the function checkactnWlk(). )

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnStd() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    //

    //==================== actnWlk ==============

    //

    function checkactnWlk() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnWlk");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17012);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnWlk');

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnRun");

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnWlk() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    //

    //==================== actnRun ==============

    //

    function checkactnRun() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnRun");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17013);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnRun');

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnAc");

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnRun() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    After he checks the last layer, then end the script.

    'clthTopTtLoop.jsx '.

    EXPRESSIONS OF FOLKLORE

    Any help is appreciated seriously. Thank you guys!

    Hey guys, I promised that I would update this post to help others if I got the answer, so here:

    Firstly, the developer has created a function to automatically get the layer. I had problems to find ways to select layers, especially because the layers were nested in groups inside groups. This helped solve that. The function was this:

    function selectLayer(name) {
      var desc = new ActionDescriptor();
      var ref = new ActionReference();
      ref.putName( charIDToTypeID('Lyr '), name );
      desc.putReference( charIDToTypeID('null'), ref );
      desc.putBoolean( charIDToTypeID('MkVs'), false );
      executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
      return
    };
    

    Then call the layer using layer real name (assuming that your layer names are unique. If they aren't, you'll find yourself only to select the first layer with the same specific name) throughout your script file.

    IE. In my case, selectLayer ("actnStd"); or selectLayer ("actnWlk");

    You then set the visibility by using the following code:

    // show
    app.activeDocument.activeLayer.visible = true;
    // hide
    app.activeDocument.activeLayer.visible = false;
    

    Then use a function to check whether a layer is visible. If the layer is visible, you run the function show/hide layers respective:

    function CheckactnWlk() {
      selectLayer("actnWlk");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnWlk()
      }
      else  {
      CheckactnRun();
      }
    };
    

    So in the end, the final script looks like this:

    #target photoshop
    
    app.bringToFront();
    CheckactnStd();
    
    function CheckactnStd() {
      selectLayer("actnStd");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnStd()
      }
      else  {
      CheckactnWlk();
      }
    };
    
    function SelectactnStd() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = false;
    }; 
    
    function CheckactnWlk() {
      selectLayer("actnWlk");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnWlk()
      }
      else  {
      CheckactnRun();
      }
    };   
    
    function SelectactnWlk() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = false;
    
    };
    
    function CheckactnRun() {
      selectLayer("actnRun");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnRun()
      }
      else  {
      alert ('There is no Selected Layer', 'Please select a layer', 0);
      }
    };
    
    function SelectactnRun() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = true;
    
    };
    
    function selectLayer(name) {
            var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putName( charIDToTypeID('Lyr '), name );
           desc.putReference( charIDToTypeID('null'), ref );
           desc.putBoolean( charIDToTypeID('MkVs'), false );
           executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
           return
    };
    
    app.preferences.rulerUnits = rUnit;
    app.preferences.typeUnits = tUnit;
    
    selectLayer("actnStd");
    

    Guys good luck! Now to find how to select random layers via the script.

  • JDBC Oracle driver loading tests... Failed:

    Test the Oracle Home located at C:\app\oracle\product\11.2.0\instantclient-basic-nt-11.2.0.4.0\instantclient_11_2

    Test client directory... Ok

    JDBC Oracle driver loading tests... Failed:

    C:\app\oracle\product\11.2.0\instantclient-basic-NT-11.2.0.4.0\instantclient_11_2\jdbc\lib\ojdbc6.jar is not a valid jar

    I downloaded and extracted the zip instantclient-jdbc-nt - 11.2.0.4.0 Oracle Technology Network, several times.  Yet, receive the same error weird test Oracle SQL Developer Version 4.0.1.14.  The ojdbc6.jar file was extracted in the instantclient_11_2, not the subdirectory lib subdirectory.  There is no jdbc or lib subdirectory.  Where's configuration is defined jdbc and lib subdirectories?  I need Oracle SQL Developer 4 to look at in the instantclient_11_2 subdirectory.

    Hello

    .. .is not a file valid jar

    This message is quite misleading. It is not due to a corrupted download.  In the case of database > advanced > use Oracle Client > Configure... you select

    Type of customer: Oracle Home

    Location of the client:

    and then click test... this error will occur.  Instead, you need to select

    : Customer Type instant

    Kind regards

    Gary

    SQL development team

  • If I run my query in Oracle, it runs without error, but when I run inside c# gives ORA-00911: invalid character

    I like to run below myQuery in c#, but saw the error. No idea what is the problem? If I'm running myQuery in Oracle, it runs without error. "I put all the +" before starting the myQuery line and "end of the line. but nothing changes.

    myQuery =

    with the CBC as

    (

    Select src.table_name src_table_name, src.column_name src_col_name, src.data_type src_data_type, src.data_length src_data_len, src.data_precision src_data_precision, src.data_scale src_data_scale,

    CBC. Nullable src_nullable, decode (T.Constraint_Type, 'P', 'Primary Key', 'U', 'Unique', ") as src_cons

    all_tab_columns CBC

    left join (select Cc.Column_Name, Uc.Constraint_Type

    of user_cons_columns cc, uc user_constraints

    where Cc.Constraint_Name = Uc.Constraint_Name

    and Cc.Table_Name = Uc.Table_Name) t

    on T.Column_Name = Src.Column_Name

    where table_name = 'INSTRUCTOR' and owner = "ERHAN"

    ),

    As TGT

    (

    Select tgt.table_name tgt_table_name, tgt.column_name tgt_col_name, tgt.data_type tgt_data_type, tgt.data_length tgt_data_len,

    TGT.data_precision tgt_data_precision, tgt.data_scale tgt_data_scale, tgt.nullable tgt_nullable,

    Decode (T.Constraint_Type, 'P', 'Primary Key', 'U', 'Unique', ") as tgt_cons

    from all_tab_columns tgt

    left join (select Cc.Column_Name, Uc.Constraint_Type

    of user_cons_columns cc, uc user_constraints

    where Cc.Constraint_Name = Uc.Constraint_Name

    and Cc.Table_Name = Uc.Table_Name) t

    on T.Column_Name = TGT. Column_Name

    where table_name = 'INSTRUCTOR' and owner = "SARIGUL"

    ),

    col_details as

    (

    Select src.src_table_name, nvl (tgt.tgt_table_name, first_value (tgt_table_name) more (order of nulls last tgt_table_name)) tgt_table_name;

    SRC.src_col_name, src.src_data_type, src.src_data_len, src.src_data_precision, src.src_data_scale, src.src_nullable, src_cons,

    TGT.tgt_col_name, tgt.tgt_data_type, tgt.tgt_data_len, tgt.tgt_data_precision, tgt.tgt_data_scale, tgt.tgt_nullable, tgt_cons

    the CBC

    outer join full tgt

    on)

    SRC.src_col_name = tgt.tgt_col_name

    )

    )

    Select *.

    de)

    Select the case sensitive option

    When tgt_data_type! = src_data_type or tgt_data_len! = src_data_len or tgt_data_precision! = src_data_precision or tgt_data_scale! = src_data_scale or tgt_nullable! = src_nullable

    then 'alter table ' | tgt_table_name | 'Edit ' | tgt_col_name | ' ' || src_data_type | ' ' ||

    -case when src_data_type null ('DATE') then

    on the other

    case

    When src_data_type in ('VARCHAR', 'VARCHAR2')

    then ' (' |) NVL (to_char (src_data_len), ' ') | ') '

    otherwise decode (nvl (src_data_precision-1),-1, null, nvl (to_char (src_data_precision), ' ') |) ', ' || NVL (to_char (src_data_scale), ' ') | ')')

    end

    end

    ||

    cases where tgt_nullable = 'Y' then 'null '.

    of another end 'not null '.

    || tgt_cons

    When tgt_col_name is null

    then 'alter table ' | tgt_table_name | 'Add ' | src_col_name | ' ' ||  ' ' || ' ' || src_data_type | ' ' ||

    -case when src_data_type null ('DATE') then

    on the other

    case

    When src_data_type in ('VARCHAR', 'VARCHAR2')

    then ' ('| nvl (to_char (src_data_len), ' ') |) ') '

    otherwise decode (nvl (src_data_precision-1),-1, null, nvl (to_char (src_data_precision), ' ') |) ', ' || NVL (to_char (src_data_scale), ' ') | ')')

    end

    end

    || tgt_cons

    When src_col_name is null

    then 'alter table' | tgt_table_name: ' drop '. tgt_col_name

    end alter_statement

    of col_details

    )

    where alter_statement is not null;

    using (OracleConnection conn1 = new OracleConnection (connectionString))

    {

    conn1. Open();

    Dim myQuery = "";

    using (OracleCommand = new OracleCommand (myQuery, conn1) crtCommand)

    {

    richTextBox1.AppendText (output);

    richTextBox1.AppendText (crtCommand.ExecuteNonQuery (). (ToString());

    richTextBox1.AppendText (output);

    }

    }

    VR;

    myQuery=
    @"with src as
    (
    ...
    ";
    

    That means a @ before the beginning of a string literal mean? -C# Foire - Site Home - MSDN Articles

    as an example

    OracleCommand cmd = con.CreateCommand();
    cmd.CommandText = @"begin apps.mo_global.init('SQLAP'); begin apps.fnd_global.apps_initialize(5710, 20639, 200); end; end;";
    cmd.ExecuteNonQuery();
    

    richTextBox1.AppendText (crtCommand.ExecuteNonQuery (). (ToString());                            

    is this correct? Not sure

    as example try

     using (OracleConnection conn1 = new OracleConnection(connectionString))
    {
        conn1.Open();
    
        string myQuery = "......";                  
    
        using (OracleCommand crtCommand = new OracleCommand(myQuery, conn1))
            {
                richTextBox1.AppendText(Environment.NewLine);
                // richTextBox1.AppendText(crtCommand.ExecuteNonQuery().ToString());
    
    OracleDataReader reader = crtCommand.ExecuteReader();
    while (reader.Read())
      {
        richTextBox1.AppendText(reader.GetString(0));
        // may be also
        // richTextBox1.AppendText(Environment.NewLine);
      }
    
                richTextBox1.AppendText(Environment.NewLine);
    
            reader.Dispose();
            cmd.Dispose();
            }
    
        con.Dispose();
    }
    
  • Procedure Oracle can run simultaneously?

    Hi Experts

    Procedure Oracle can run simultaneously?

    Here's my concern, my procedure is already started manually and according to the times calls the same procedure by another application at the same time, so now procedure can work simultaneously or it will display an error message?

    Please explain

    Thanks in advance

    Multiple instances of a procedure can be executed at the same time...

    It will cause problem - that will depend on what you do in the procedure...

    For example, if the procedure seeks to change the same data even time in various forums, it will cause problems...

  • Save one even to run a function, whenever a document is saved

    Hello

    I m was looking in the manual JavaScript Illustrator... but can't find no not that kind of information. Can you tell me if I m missing something obvious?

    I have a function and want to run this function whenever the user calls the process of saving the active document.

    For example, the script runs. If the user, go to file > save or file > save as, and then... Illustrator calls the function 'x' in my script;

    Is this possible? Where can I find information on how to record events in Illustrator?

    Thank you very much

    Gustavo.

    I is not an eventListener. ID do, but he did not his way to still HAVE it.

  • FlexUnit ant - running tests that make calls to the server

    Hello

    I am using BlazeDS in my project to connect to a Tomcat server. I have configured my services in the file services - config.xml and past the location of the file as an argument to the compiler in Flash Builder.

    I have some unit tests that make calls to the asynchronous server. When I run these tests from Flash Builder, the thin running tests. But when I run the tests via the flexunit ant task, these tests only downtime while the other tests pass. In addition, it seems like the server is contacted at all as my messeges newspaper in my code aside server are not visible.

    I tried passing the path to the file services - config.xml and the root of the application context in the mxmlc Ant task that compiles my TestRunner.mxml file:

    "< mxmlc file="${main.src.loc}/flexUnitTests/TestRunner.mxml "output="${bin.loc}/TestRunner.swf ">"

    < dir = "${lib.loc library path}" append = "true" > "

    < include name = "*.swc" / >

    < / library path >

    < element path-source-path = "${basedir}" / src "/ >"

    < element path-source-path = "${basedir} /locale/ {local}" / >

    < compile .verbose-stacktraces > true < / compile .verbose-stacktraces >

    true < compile .headless-server > < / compile .headless-server >

    < compiler.services > C:\myApp\Source\WebServer\WebContent\WEB-INF\flex\services-config.xml < / compiler.services >

    < compile .context-root > myApp < / compile .context-root >

    < / mxmlc >

    No use. My tests still expire. Here is my flexUnit task:

    < target name = 'test' depends on 'compile' = >

    <!-run FlexUnit tests and publish reports->

    < flexunit

    " swf="${bin.loc}/TestRunner.swf ".

    workingDir = "${bin.loc}" "

    toDir = "${report.loc}" "

    haltonfailure = "false".

    verbose = "true".

    localTrusted = 'true '.

    headless = "${headless}" >

    < source dir = "${basedir} /locale/ {local}" >

    < include name = "*.properties" / >

    < / source >

    < dir = "${lib.loc library}" / > "

    < / flexunit >

    I guess I'm missing something - a way to tell Ant about the location of my server or something like that. Help, please!

    Thanks in advance.

    Maury

    or create a config replacement for testing services. It would be able to resolve the server url if the swf file served from a web server.

  • Difference between Oracle and Prometric test center?

    What is the difference between Oracle and Prometric Testing Center?

    Pass the examination in a CTA is exactly the same as the exam at Prometric. The review is exactly the same and it's exactly the same thing. The only difference is the location where the examination is taken, so I believe that over-the-counter medications have set schedules to offer tests, take exams at Prometric can give you a little more freedom to your schedule.

    Answers to the questions:
    can you any valid CTA agent/Center in kolkata? Then I will be very grateful
    -You should go to www.oracle.com/education and you can search on the keywords "certification" or "OTC test"
    - Or you can call your local representative of OU. You can find your local numbers to http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=225
    -Please note that if you are in North America, your search for OTC drugs will not return any results. Over-the-counter medications are not available in North America.

    If someone got 051 OTC and 144 of a promeric / pearson since it granted as OCA?
    Yes

    List there is the offer of TBT that are testing to the general public?
    -You should go to www.oracle.com/education and you can search on the keywords "certification" or "OTC test"
    - Or you can call your local representative of OU. You can find your local numbers to http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=225
    -Please note that if you are in North America, your search for OTC drugs will not return any results. Over-the-counter medications are not available in North America.

    Is there a TBT in countries other than the United States., UK, Japan, Germany?
    -There is no over-the-counter drugs to the United States.
    -There are also over-the-counter drugs in Asia-Pacific

    CTA can be only in branches of Oracle or OAEP?
    -I don't know where are all over-the-counter medications. It is preferable to refer these questions to a representative of the ORGANIZATION unit. They will be better able to help.

    Kind regards
    Brandye Barrington
    Certification Forum Moderator
    Manager certification program

  • How to run a function in the oracle plsql object when the object dies

    I have an object plsql function member as exec_last.
    I want this procedure that is called when the plsql object is cleaned or when the accommodation session this object dies.

    In C, we have a system call as atexit(). Is there such a feature in Oracle 10 g or no workaround using embedded java.

    This feature is required to empty the contents stored in the plsql in the object to the database, when the program terminates.

    Thank you
    Best regards,
    Navin Srivastava

    navsriva wrote:

    Is there a better way to cache in memory.

    What is the Oracle buffer cache? It is exactly that - a cache for data blocks. The two new blocks (created by inserting new rows) and existing blocks (used by selects, updates and deletions and reused (freespace) inserts).

    The Oracle buffer cache is a cache of very mature and sophisticated. Trying to do "+ best +" to the db, buffer cache in another layer of software (such as PL/SQL) is mostly a waste of time and resources... and invariable introduced another layer of s/w which simply increases the number of moving parts. This in turn usually means increased complexity and slow performance.

    Why use the treatment in bulk from PL/SQL? The basic answer is to reduce switching between the PL and engine SQL context.

    During the execution of a code to insert data in SQL, the data must be passed to the SQL engine, PL PL engine must perform a context to the SQL engine switch so that it can process these data and execute the SQL statement.

    If there is a 1000 lines of inserts, this means that a 1000 context switches.

    In bulk treatment makes the "+ pipe communication / data + ' between the two biggest ones. Instead of passing data from one line to the SQL engine via a context switch, a collection of in bulk / picture of a 100 lines is passed. There are now only 10 changes of context necessary to push this 1000 lines of the PL engine to the SQL engine.

    You can do the same on any other client SQL... (remember, that the PL itself is also a SQL client). You can, using C/C++ for example, do exactly the same thing. When the row data to the SQL engine to insert, pass a collection of 100 rows instead of the data for a single line.

    The exact result of the same benefits as in PL/SQL. A pipe communication more, allowing more data to be transferred to and from the SQL, with engine for result less context switching.

    Of course, a context switch ito C/C++ is much more expensive than in PL/SQL - as the engine PL is located in the same physical process as the SQL engine. Using C/C++, this will usually be a separate process, to communicate with the SQL engine on the network process.

    The same applies to other languages, such as Java, c#, Delphi, Visual Basic, and so on.

    It not be wise to introduce another layer of s/w, the motor of PL/SQL and the customer "+ insert +" stored in his memory structures... and then use the PL engine to '+ flower' + for the SQL engine via a process control in bulk.

    It will be faster and more scalable, have the language of the client with treatment directly and dealing with the SQL engine directly in bulk.

    Simple example. What is SQL * Loader program (written in C), use? It uses no PL as a proxy to move data from a CSV file into a SQL table. He calls SQL directly. It uses a treatment in bulk. It is very fast to load data.

    There is an exception to this rule. What PL is used as a layer of processing and validation of business. Instead of the client code, implementation of this logic, it is done using LP. The customer then will not is more manually add an invoice to the table of the INVOICES for example. He called the procedure of PL/SQL AddNewInvoice instead - and this procedure does everything. It checks the valid client code. Ensures that there are stocks of the products ordered on the invoice. Etc.

    But in this scenario, PL is not used a flea market "buffer cache. It is used for what it was designed for - a correct application inside the database layer.

  • To run my functional script during a calendar

    Hello

    He is delighted.
    I have prepared a functional script using OATS. Then I want to run this script after awhile. I want to put some time to run this script. I searched in the tool, but I can't find the solution... Please help me with this?

    Thanks in advance

    Published by: 838740 on February 22, 2011 04:15

    Hello

    You can use the Oracle Test Manager to plan your script, or you can use the command line utility - c:\oracleats\openscript\runscript.bat - in a script of commands and then plan by using the operating system scheduler.

    Kind regards
    Jamie

  • Oracle ADF Model Tester - not connected

    Hi all

    I have trouble launching the ADF Model tester to test an Application Module.

    Within a BPM Application, I added a project of ADF model. Within this project, I created all the components I need business.

    When I try to launch the application model, I got the following error:

    Taken unexpected exception: java.lang.ClassNotFoundException, msg = oracle.jbo.jbotester.jdevx.ConnectionDialog: oracle.jbo.jbotester.jdevx.ConnectionDialog

    The entire exception is:

    oracle.jbo.jbotester.app.ErrorHandler$ ExceptionWrapper: Houston-29000: Unexpected exception caught: java.lang.ClassNotFoundException, msg = oracle.jbo.jbotester.jdevx.ConnectionDialog

    at oracle.jbo.jbotester.app.ErrorHandler.displayError(ErrorHandler.java:104)

    at oracle.jbo.jbotester.app.ErrorHandler.displayError(ErrorHandler.java:90)

    at oracle.jbo.jbotester.app.IErrorHandlerImpl.displayError(IErrorHandlerImpl.java:43)

    at oracle.jbo.jbotester.MainFrame.launchConnectDialog(MainFrame.java:409)

    at oracle.jbo.jbotester.MainFrame.init(MainFrame.java:577)

    at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:538)

    Caused by: java.lang.ClassNotFoundException: oracle.jbo.jbotester.jdevx.ConnectionDialog

    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:366)

    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:355)

    at java.security.AccessController.doPrivileged (Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:425)

    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (Launcher.java:308)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)

    at java.lang.Class.forName0 (Native Method)

    at java.lang.Class.forName(Class.java:278)

    at oracle.jbo.jbotester.MainFrame.launchConnectDialog(MainFrame.java:407)

    ... 2 more

    # # 0 in detail

    java.lang.ClassNotFoundException: oracle.jbo.jbotester.jdevx.ConnectionDialog

    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:366)

    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:355)

    at java.security.AccessController.doPrivileged (Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:425)

    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (Launcher.java:308)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)

    at java.lang.Class.forName0 (Native Method)

    at java.lang.Class.forName(Class.java:278)

    at oracle.jbo.jbotester.MainFrame.launchConnectDialog(MainFrame.java:407)

    at oracle.jbo.jbotester.MainFrame.init(MainFrame.java:577)

    at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:538)

    If I instead create a merger ADF Web Application and then within the model project I create all the BC as for the Application of BPM the ADF Model Tester works very well.

    It seems that the BPM Application is missing some libraries, but I already tried to add library BC4J Tester in the ADF Model project, but nothing changes.

    Why the ADF Model Tester does not work when running it from a BPM Application?

    Information on the Jdeveloper version I am using.

    Oracle JDeveloper 12 c 12.1.3.0.0

    Studio Edition Version 12.1.3.0.0

    Build JDEVADF_12.1.3.0.0_GENERIC_140521.1008.S

    The IDE version: 12.1.3.0.41.140521.1008

    Product ID: oracle.jdeveloper

    Product version: 12.1.3.0.41.140521.1008

    Thank you

    Claudio

    Looking at the response of Sameh Nassar, I found the solution for this problem.

    I put an oracle.home variable pointing to the directory jdeveloper environment.

    Thank you

  • Problem running the function mouseup

    Hi all... I try to get something very simple to work

    I draw a rewctangle and then "On mouseUp", I run the code "test()"

    Then, in the scene/creationComplete, this function I

    function test(){}

    Alert ("Hello");

    }

    Nothing seems to happen, im trying to do something a little more complex then, but for now all I want to do is be able to perform functions from Adobe Edge.

    My understanding is that creationComplete is where I put functions that can be accessed from anywhere in my composition...

    Thanks for the research!...

    Justin.


    OK Justin. Try the attached example.

    Thank you

    Soline

  • The DS Smoke Test of Siebel Call error.

    Hello

    I'm testing the smoke test DS of Siebel. I configured according to the document. but when I click on the button 'DS smoke Test' button I get below error


    Error during the service call 'political determination Server Automation', method 'Evaluate' in step 'call determination Server '. (SBL-RPR-00162)

    Operation "Rate" of the Web Service 'http://oracle.com/determinations/server/10.0/server/types.DeterminationServer' port 'AdminSmokeTest' failed with the following explanation: "cannot parse request. "Reason: application contains no element root expected: request to assess." (SBL-EAI-04308)

    I Verifiyed the Message send by Siebel, the root element is application to evaluate. I copied the Message below.

    can someone help me to reslove this issue?

    <? XML version = "1.0" encoding = "UTF-8"? >
    <? Siebel-property-Set EscapeNames = "true"? >
    -< PropertySet >
    -< message MessageId = "" IntObjectName = 'Policy Automation demand' MessageType = 'Object' IntObjectFormat = "Hierarchical Siebel" > "
    -< ListOfPolicy_spcAutomation_spcAssess_spcRequest >
    -evaluate-request >
    -data < ListOfsession >
    -<-session data >
    -entities < ListOflist >
    -list-entity-entity type 'global' = >
    -< ListOfentity >
    -< entity id 'global' = >
    -< ListOfrelationships >
    < relationship / >
    < / ListOfrelationships >
    -< ListOfattribute >
    < attribute datetime-val = "" 2010-10 - 05T 23: 36:21 "id ="created"/ >"
    < attribute text-val = "X" id = "FirstName" / >
    < attribute text-val = "6734VN8" id = "lastname" / >
    < attribute text-val = "P002704" id = "userid" / >
    < / ListOfattribute >
    -ListOfattribute-result >
    < result result-attribute style = "single value" id = "validity_text" / >
    < / ListOfattribute-result >
    < / entity >
    < / ListOfentity >
    < / entity list >
    < / ListOflist-entity >
    < / session data >
    < / ListOfsession-data >
    < / estimate request >
    < / ListOfPolicy_spcAutomation_spcAssess_spcRequest >
    < / message >
    < / PropertySet >

    Hello

    Can you put in your response you are using which version of the following components:

    -OPA connector for Siebel
    -Siebel

    From the first glance, I suspect that you do not send the correct request determinations server URL / to the top. The determinations server starts usually several points endpoint for each module that it deploys.

    Check the outbound Web Service on the way; Services - administration--> Web Services outbound Web

    -Search for the web service with the namespace "http://oracle.com/determinations/server/10.0/server/types".
    -Select the Service port "AdminSmokeTest".
    -Check the address, it should be something like: "http://localhost:8888/siebel-determinations-server/assess/soap/generic/10.0/AdminSmokeTest."

    It could be useful that you posted the address in your Setup here.

    See you soon
    Frank

Maybe you are looking for