Stacked sequence does not trigger

I am reviewing Pull-down Menu.vi in Labview BasicsII: Development Coarse Manual. When I go through Exercise 2-7, I never get the dialog boxes. I have the Get Menu Selection wired to the stacked sequence where it connects to the box containing the question mark. When I choose "Test 2" or any of the menu choices, it does not trigger the frames.
I ran the program in solutions on the disk, and this program runs correctly, showing the dialog boxes.
I have had this problem before. I connect a wire to a stacked sequence where it shows the question mark. But the stacked sequence ignores the information coming to it.

First, I think you're refering to a case structure and not a sequence structure.
Second, you are probably not defining your cases properly. You can use probes to examine exactly what data you're sending to the case structure selector terminal (that's the question mark). If you are using strings, the strings have to much exactly to the strings in the case definition. If they don't match, the default case will execute. If, after using a probe to see what data you are sending the case structure, and after making sure you defined the cases correctly, you still don't see what's wrong, you should post your VI.
I realize saying this is a bit unnecessary, because you already started, but...
To learn more about LabVIEW, I suggest you try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf).
Try to take over the world!

Similar Messages

  • ORA-02289 (10: 10): PL/SQL: ORA-02289: sequence does not exist

    Hi,
    I want to run a trigger on SCOTT account.But wheni try to run it.I am getting ' ORA-02289 (10: 10): PL/SQL: ORA-02289: sequence does not exist'.PLease help out

    Sequence FUNCTION_SEQ does not exist...
    Pease run
    Select * from user_objects
    where object_type='SEQUENCE'
    and object_name='FUNCTION_SEQ'In order to see that this object doesnt exist on your schema...
    Maybe you are trying to use sequence in different schema... Check it out too
    Select * from all_objects
    where object_type='SEQUENCE'
    and object_name='FUNCTION_SEQ'And if you has access to DBA_ views check this too...
    Select * from dba_objects
    where object_type='SEQUENCE'
    and object_name='FUNCTION_SEQ'If you need such sequence please give us an example of values you need and will provide a sequence creation script for you..

  • Print with  write statements from webynpro does not trigger top-of-page

    Print launched from webdynpro application via application server created with write statements does not trigger top-of-page event. When print is done from sapgui it works ok. The idea is to reuse backend print which was created for sapgui with abap list made application log in webdynpro application.

    Hi,
    here a short extract like i do it:
    CLASS LCL_EVENT_HANDLER DEFINITION .
      PUBLIC SECTION .
        METHODS:
       HANDLE_PRINT_TOP_OF_PAGE
             FOR EVENT PRINT_TOP_OF_PAGE OF CL_GUI_ALV_GRID,
    ENDCLASS.                    "LCL_EVENT_HANDLER DEFINITION
    * Event-Händer Implementierung
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION .
      METHOD HANDLE_PRINT_TOP_OF_PAGE.
          PERFORM PRINT_TOP_OF_PAGE.
      ENDMETHOD.   
    ENDCLASS.
      CREATE OBJECT GR_EVENT_HANDLER.
      SET HANDLER
      GR_EVENT_HANDLER->HANDLE_PRINT_TOP_OF_PAGE  FOR GR_ALVGRID_LEFT.
      CALL METHOD GR_ALVGRID_LEFT->SET_TABLE_FOR_FIRST_DISPLAY
    FORM PRINT_TOP_OF_PAGE.
      LINSZ = SY-LINSZ - 16.
      WRITE: / 'Report:   ', SY-REPID,
               AT LINSZ 'Datum:',  SY-DATUM.
      WRITE: / 'Benutzer: ', SY-UNAME,
               AT LINSZ 'Zeit: ', SY-UZEIT.
    ENDFORM.
    hope it helps.
    Regards, Dieter

  • Error creating sdo_pc point cloud: "ORA-02289: sequence does not exist"

    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0
    I've come across a problem when creating point clouds - every so often I'll get an error about a sequence not existing.
    ERROR at line 1:
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13249: Stmt-Execute Failure: DROP SEQUENCE "MDPCS_a_17745$$$"
    ORA-29400: data cartridge error
    ORA-02289: sequence does not exist
    ORA-06512: at "MDSYS.PRVT_PC", line 3
    ORA-06512: at "MDSYS.PRVT_PC", line 171
    ORA-06512: at "MDSYS.SDO_PC_PKG", line 179
    ORA-06512: at line 17
    I've got a test case which creates a table where we'll put a sdo_pc, a block table and then a loading XYZ table.  We then loop a bunch of times and create a PC for each.
    Test case setup:
    create table pc_test (
        id integer primary key,
        pc sdo_pc);
    create sequence pc_test_id;
    create table pc_test_blocks as select * from mdsys.sdo_pc_blk_table;
    create table xyz (
        rid number,
        val_d1 number,
        val_d2 number,
        val_d3 number);
    insert /*+ append */ into xyz (
        select
            rownum,
            round(dbms_random.value(1,10000),2),
            round(dbms_random.value(1,10000),2),
            round(dbms_random.value(20,50),2)
        from dual
        connect by level <= 1000);
    commit;
    Run test case:
    declare
      l_pc sdo_pc;
        l_id pls_integer;  
    begin
        for i in 1..50 loop
            l_pc := sdo_pc_pkg.init(
                'PC_TEST', 'PC', 'PC_TEST_BLOCKS', 'blk_capacity=500',
                sdo_geometry(2003, 2157, NULL, sdo_elem_info_array(1,1003,3), sdo_ordinate_array(400000, 500000, 800000, 1000000)),
                0.005, 3, null);
            l_id := pc_test_id.nextval;
            dbms_output.put_line('PC_TEST id=' || l_id);
            insert into pc_test (id, pc) values (l_id, l_pc);
            sdo_pc_pkg.create_pc(l_pc, 'XYZ');
        end loop;
    end;
    Some of the PCs will create, but eventually it'll blow up with
    ORA-02289: sequence does not exist
    In so far as I can tell, once I call sdo_pc_pkg.create_pc(), Oracle is creating a sequence with a name such as MDPCS_a_1751F$$$.  When it is done creating the blocks, it then tries to drop the sequence.  However the statement to drop the sequence is wrapped in double quotes - so if the sequence name contained any lowercase letters then it will error out when trying to drop it.  The values used between the underscores seem to be hexadecimal - sometimes they're numbers only, sometimes numbers and uppercase letters, sometimes numbers and lowercase letters.
    Has anybody else come across this issue?
    The issue isn't critical as the PC blocks do seem to be created correctly, so the issues are: (a) my pl/sql block errors out and (b) I'm left with sequences lying around.
    For the former I'll catch the exception and ignore it, for the latter I'll just drop the sequences myself afterwards.

    I tried the test on 11.2.0.4.  On that release I get an error during a rename:
    ERROR at line 1:
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13199: Invalid Parameters for Partition_Table
    ORA-13249: Stmt-Execute Failure: RENAME "MDPCI_a_26062$$$" TO "M3_A_26062$$"
    ORA-29400: data cartridge error
    ORA-04043: object MDPCI_a_26062$$$ does not exist
    ORA-06512: at "MDSYS.PRVT_PC", line 3
    ORA-06512: at "MDSYS.PRVT_PC", line 157
    ORA-06512: at "MDSYS.SDO_PC_PKG", line 74
    ORA-06512: at line 17

  • Error ORA-02289: sequence does not exist

    While I was practicing chapter 6 a book on "hands-on oracle database 10 g express edition for windows" by Mr. Bobrowski forwarded by tom kyte, I like to be one those as well, lol, the living legend of oracle technology <page 225-226> , I got the following error while trying to insert the data manually
    error ORA-02289: sequence does not exist
    I also checked the sequence, it does exist ,
    host-ids, db-ids, ap-ids all do exists
    I am wondering my OS windows xp and however, I have entered AIX in host OS field and 5.2.0.0 in the hostos_version field and cpu=4
    I kind do not understand this too since my pc running windows xp
    any help would be appreciated since i couldn't go forward in my practice.
    I e-mailed the author of the book (oracle Press) but no-reply so far, well I can understand that there is no money.

    Basically, I copied everything from the cd-rom provided in the book of this author steve, oracle press. I logged on using my account <system> and password. The user is here only one which is <system>.
    Everything was working well, until then as per the direction in the chapters upto 1- to mid 6, this is the first time I am stuck in following this book's simple excercises. It also asks me to look at the object if the sequence host_ids does exists in the drop down combo, as a matter of fact it does exist.
    I am still wondering my question "my OS windows xp and however, I have entered AIX in host _OS field and 5.2.0.0 in the host_os_version field and cpu=4
    I kind do not understand this too since my pc running windows xp "

  • Error: Sequence does not match type xs:string

    I am using BDB XML 2.5.16 to store and query my XML  documents in Java. The documents are IMDB xml documents containing actors information
    obtained from INEX website https://inex.mmci.uni-saarland.de/login.jsp.  One of  the document I stored in the database is the following
        <?xml version="1.0" encoding="UTF-8"?>
         <persons>
          <person>
              <name>jason angeles
              </name>
              <filmography>
                 <act>
                    <movie>
                       <title>prison planet 3 the revenge 1998
                        </title>
                      <year>1998
                      </year>
                     <character>evil ninja
                      </character>
                   </movie>
                 </act>
              </filmography>
             </person>
             </persons>
    I want to  search using XQuery  for filmography element whose title element contains ANY of the following keywords ('planet', 'revenge', '1998'). Below is the query I used
                  // declaring function functx:contains-any-of
                String qryRk = "declare namespace functx = 'http://www.functx.com'; " 
                      + "declare function functx:contains-any-of "
                     + "( $arg as xs:string?" + " , "  + " $searchStrings as xs:string* )  as xs:boolean { "
                     + "some $searchString in $searchStrings "
                    +  " satisfies contains($arg,$searchString)} ; ";
                 String myQuery101 = qryRk + "for $entity in collection('simpleExampleData2.dbxml')//filmography "
                      + "where functx:contains-any-of ( $entity/act/movie/title ,  ('planet', 'revenge', '1998'))"
                      + "return $entity";
    When I  execute the query  i  expect to get at least get the following element as mu output
                           Document : person_31000.xml:
                        <filmography>
                               <act>
                                     <movie>
                                     <title>prison planet 3 the revenge 1998
                                    </title>
                                    <year>1998
                                    </year>
                                   <character>evil ninja
                                   </character>
                                  </movie>
                               </act>
                             </filmography>
    However instead of the above element i got the  following Error
                                 Exception in thread "main" com.sleepycat.dbxml.XmlException: Error: Sequence does not match type xs:string? - the sequence contains more than one item [err:XPTY0004], <query>:1:343, errcode =               
                                  QUERY_EVALUATION_ERROR
                                      at com.sleepycat.dbxml.dbxml_javaJNI.XmlManager_query__SWIG_0(Native Method)
                                      at com.sleepycat.dbxml.XmlManager.query(XmlManager.java:544)
                                     at com.sleepycat.dbxml.XmlManager.query(XmlManager.java:320)
                                     at xmlirsystemstruxplus.XQueryEngine.queryEngine(XQueryEngine.java:269)
                                     at xmlirsystemstruxplus.XMLIRSystemStruXplus.main(XMLIRSystemStruXplus.java:109)
                                     Java Result: 1
        Note that i used  contains-any-of() function because the contains () function does not work with  'planet revenge 1998' string may be because the keywords do not appear in the order they appear in the element content.
       Please  can any body help me to find out  (1) why i have the  above error ? and solution  (2)  why  the condition contains  ( $entity/act/movie/title ,  'planet revenge 1998') is not working ? how do i use contains() function w.r.t this
    Thank you in advance
    Message was edited by: RokoA 19/01/2015  by RokoA

    Using the shell dbxml in both 2.5 and 6.0 I created a container and put the document example you gave into it.  Then I executed the following query:
    [code]
    declare namespace functx = 'http://www.functx.com';
    declare function functx:contains-any-of ( $arg as xs:string?, $searchStrings as xs:string* )  as xs:boolean {
    some $searchString in $searchStrings
    satisfies contains($arg,$searchString)
    for $entity in collection('simpleExampleData2.dbxml')//filmography
    where functx:contains-any-of ( $entity/act/movie/title ,  ('planet', 'revenge', '1998'))
    return $entity
    [/code]
    And got the results you expected instead of an error.
    Since you are using the Java API it is possible the problem is in how you configured and executed the query, instead of in the query itself.  If you could post an example program or code section that produces the error, then I can continue you help you with this.
    Lauren Foutz

  • Scope does not trigger

    Hello,
    I am trying to trigger a scope at a certain point. I have a test signal coming after a regular sinusoid. I want to measure the output when the test signal arrives. What happens is that when my test signal comes after 1 second the trigger works perfectly fine but when my test signal comes after 3 seconds the scope does not trigger at the point I want and keeps on triggering at unwanted points. This is a conceptual question. Could anyone please help me in that.
    Thanks,
    Krunal

    Hello Krunal,
    I am not exactly sure what your external signal looks like, however I can suggest a couple things for you to look at.  First, if the absolute value of your sine wave amplitude is less than the test point you want to measure, the scope can simply level trigger at that point.  It should not matter if the signal comes in after 1 seconds or 3 seconds.  The only problem you might be seeing with this is a timeout error.  This is caused by the read function not being able to sample enough data within the default 5 seconds limit.  Adjusting the timeout would help if you are getting this error.
    If your test signal value you need to trigger off of is within the absolute value of your sine wave signal it becomes more difficult because if you specify to trigger off of a rising edge 0.5V signal this point will occur many times before the ideal trigger point.  Perhaps a combination of using the trigger hold off and trigger delay might help you time the start of your acquisition a little better.  If this does not help, can you please post more detail about the sine wave, your test point you want to trigger off and the behavior you are currently seeing.
    Regards,
    Jesse O.
    Applications Engineering
    National Instruments
    Jesse O. | National Instruments R&D

  • ORA-02289: sequence does not exist Error

    When add Entity Attribute Value : adf.object.nextVal('DenialCommentId')
    Value Type: Expression
    Iam getting ORA-02289: sequence does not exist Error in 11g 1.1.3.0 version .How to Solve it .Any solutions please suggest me .Thanx in advance
    Ravi

    try using adf.object.nextValue('DenialCommentId') to find out whether the compiler is looking for a sequence named object in schema adf or not.
    Regards
    Etbin

  • Workflow error [WF_ERROR] ERROR_MESSAGE=ORA-02289: sequence does not exist

    Dears,
    I created simple custom workflow (Start -> Notification -> End).
    I got the following error when I run the workflow.
    [WF_ERROR] ERROR_MESSAGE=ORA-02289: sequence does not exist ERROR_STACK= FND_SEARCH_EVENTS.On_Object_Change(oracle.apps.wf.notification.send, 5C84790B967158FFE04400144F23BF3C)
    The notification activity returned this error but the notification has been sent to performer.
    I searched for solution to fix this problem and I found one result for the same problem without any solution.
    http://www.itpub.net/thread-1558559-1-1.html
    Thank you

    It looks as if DB sequence FND_SEARCH_EVENTS_SEQ does not exist. Please try to reload it as follows:
    java oracle.apps.fnd.odf2.FndXdfCmp applsys <pwd> apps <pwd> thin "<db server>:<db port>:<SID>" all $FND_TOP/patch/115/xdf/fnd_search_events_seq.xdf $FND_TOP/patch/115/xdf/xsl
    Regards,
    Alejandro

  • Sequence does not match type document()

    Hi all,
    I am having a problem with building a query - maybe one of you can point out my mistake!
    First of all I have a sequence of nodes in the variable '$__mpqfEngineVar_13' which are built in a FLWOR using the following construct:
    <engine:document ID='{'NoID'}' recordNumber='{0.0}' Rank='{0.0}' Score='{$__mpqfEngineVar_8}'>{$__mpqfEngineVar_1}</engine:document>
    I am trying to filter out those which have a specific value in a descendant node (actually present inside the tree $__mpqfEngineVar_1 from above):
    $__mpqfEngineVar_15 := ($__mpqfEngineVar_13[/mpeg7:FamilyName = $__mpqfEngineVar_14])
    However I get the following error message:
    Sequence does not match type document() - found item of type element({urn:dimis:mpqfQueryEngine:schema:2009}document, {http://www.w3.org/2001/XMLSchema}untyped)
    If I use the following relative path instead (which is not an option since the path is user define) it actually works (notice the '*')....
    *//mpeg7:FamilyName
    Any ideas what I am doing wrong? Honestly I can't really see the semantic difference..
    Thanks for your help,
    Alex

    Hi Alex,
    The expression "//mpeg7:FamilyName" is an abbreviated XQuery step that expands to this:
    root() treat as document-node()/descendant-or-self::node()/mpeg7:FamilyNameThis shows you why you're getting an error about the root node not being a document node.
    I expect that the expression you really want is ".//mpeg7:FamilyName" - the "." prefix makes it a relative path rather than an absolute path.
    John

  • Compilation error[ORA-02289: sequence does not exist] ,even if dbVersion '9.3.350',so strange!

    I know the reason is that PL/SQL is pre-compilation, so now dbVersion < '9.3.350', even if I don't need get REFDESIG_ID_SEQ.nextval ,
    it will also cause this compilation error. So my question is how should I code that?
    When dbVersion < '9.3.350' , no sequence REFDESIG_ID_SEQ, just print '1####';
    else get REFDESIG_ID_SEQ.nextval , then print '2####'
    But now even if dbVersion < '9.3.350', it will cause compilation error[ORA-02289: sequence does not exist] .
    How to resolve this? Thanks a lot.
    declare
        maxid   number;
        nextid number;
        agileid number;
        v_date  date;
        dbVersion varchar(8):=0;
    begin
      select substr(value,1,7) into dbVersion from propertytable where parentid = 5001 and propertyid=37;
            DBMS_OUTPUT.PUT_LINE(dbVersion);
            if (dbVersion < '9.3.350') then
                  DBMS_OUTPUT.PUT_LINE('1####');
            else
                  DBMS_OUTPUT.PUT_LINE('2####');
                  select REFDESIG_ID_SEQ.nextval into agileid from dual;
            end if;
    end;

    In my DB, If dbVersion < '9.3.350' , no sequence REFDESIG_ID_SEQ
    When dbVersion >= '9.3.350' ,sequence REFDESIG_ID_SEQ will exist,
    Now my dbVersion < '9.3.350' , and this pl/sql also cause this error.
    SO how should I to resolve it ?
    Now I need a test case, if dbVersion < '9.3.350' , then print '1####';
    else , get REFDESIG_ID_SEQ.nextval   firstly , then print '2####'
    How should I code?Thanks  a lot.

  • Client sync failure: "sequence does not exist"

    Hello everyone,
    I could use some help on this.Using 10.3 mobile server and a mobile6 client (using the official mobile6 patch). After some syncs, a mobile client gets the error "sequence does not exist", and the replication fails.
    When looking at the server log, after the client has successfully uploaded its data, a sequence "M$8232031$M" is created on the server just before the client can download its new data. Then, the server tries to get the nextval from that sequence - and the sequence is not there !!
    What happened, what can cause this behaviour ?
    Here is an excerpt from the server log with the "faulty" client sync :
    clog: Subscription.prepStatement: ALL: SQL: INSERT INTO MOBILEADMIN.C$ALL_MANGLED_NAMES(CLIENTID,ORIGINAL_NAME,MANGLED_NAME) VALUES(?,?,?):
    Object: @1da9a66
    clog: Subscription.execDirectLogged: FINEST: GENERAL: Created M$8232031$M
    clog: Subscription.mangleOS: ALL: FUNCTION: Exiting
    clog: Subscription.pstmClose: ALL: FUNCTION: Entering
    clog: Subscription.pstmClose: FINEST: GENERAL: pstmt::close
    clog: Subscription.pstmClose: ALL: FUNCTION: Exiting
    clog: Subscription.mangle: FINEST: GENERAL: conn user =MOBILEADMIN, e[0]=MOBILEADMIN
    clog: Subscription.mangle: ALL: FUNCTION: Exiting: user.equals(e[0])
    clog: Consolidator.DQ: ALL: FUNCTION: Invoking
    clog: O8Server.advanceSequence: ALL: FUNCTION: Invoking
    clog: Subscription.execSelectDirect: ALL: FUNCTION: Entering
    clog: Subscription.execSelectDirect: ALL: SQL: exec:::
    Object: SELECT "M$8232031$M".NEXTVAL FROM DUAL
    clog: HeliosSession.startSession: FINEST: GENERAL: Decrement client download 0
    clog: HeliosSession.clientDownload: ALL: FUNCTION: Invoking
    clog: HeliosSession.startSession: MANDATORY: ALL:
    Exception: java.sql.SQLException: ORA-02289: Sequence ist nicht vorhanden.
    ORA-02289: Sequence ist nicht vorhanden.
    clog: HeliosSession.sendE, s=ORA-02289: Sequence ist nicht vorhanden.
    : ALL: FUNCTION: Entering
    clog: HeliosSession.sendCompress: ALL: FUNCTION: Entering
    clog: HeliosSession.sendCompress: FINEST: GENERAL: deflated total in,out is 52,2 bytes
    clog: HeliosSession.sendCompress: FINEST: GENERAL: Sending byte array of 2 bytes
    clog: HeliosSession.sendConv: ALL: FUNCTION: Invoking
    clog: HeliosSession.initConvOS: ALL: FUNCTION: Invoking
    clog: Client.send: ALL: FUNCTION: Entering
    clog: Client.send: ALL: FUNCTION: Exiting
    clog: ConvAtOutputStream.write: ALL: FUNCTION: Entering
    clog: ConvAtOutputStream.write: FINEST: GENERAL: exlen:16
    clog: ConvAtOutputStream.write: ALL: FUNCTION: Exiting
    clog: ConvAtOutputStream.write: ALL: FUNCTION: Entering
    clog: ConvAtOutputStream.write: FINEST: GENERAL: exlen:8
    clog: ConvAtOutputStream.write: ALL: FUNCTION: Exiting
    clog: HeliosSession.sendCompress: ALL: FUNCTION: Exiting
    clog: HeliosSession.sendE: ALL: FUNCTION: Exiting
    clog: HeliosSession.sendCompress: ALL: FUNCTION: Entering
    clog: HeliosSession.sendCompress: FINEST: GENERAL: Sending byte array of 60 bytes
    clog: HeliosSession.sendConv: ALL: FUNCTION: Invoking
    clog: ConvAtOutputStream.write: ALL: FUNCTION: Entering
    clog: ConvAtOutputStream.write: FINEST: GENERAL: exlen:6
    clog: ConvAtOutputStream.xop: ALL: FUNCTION: Invoking
    clog: Client.send: ALL: FUNCTION: Entering
    clog: Client.send: ALL: FUNCTION: Exiting
    clog: ConvAtOutputStream.xop: ALL: FUNCTION: Invoking
    clog: Client.send: ALL: FUNCTION: Entering
    clog: Client.send: ALL: FUNCTION: Exiting
    clog: ConvAtOutputStream.xop: ALL: FUNCTION: Invoking
    clog: Client.send: ALL: FUNCTION: Entering
    clog: Client.send: ALL: FUNCTION: Exiting
    clog: ConvAtOutputStream.xop: ALL: FUNCTION: Invoking
    clog: Client.send: ALL: FUNCTION: Entering
    clog: Client.send: ALL: FUNCTION: Exiting
    clog: ConvAtOutputStream.write: ALL: FUNCTION: Exiting
    clog: HeliosSession.sendConv: ALL: FUNCTION: Invoking
    clog: ConvAtOutputStream.flush: ALL: FUNCTION: Entering
    clog: ConvAtOutputStream.flush: FINEST: GENERAL: tail = 6
    clog: ConvAtOutputStream.xop: ALL: FUNCTION: Invoking
    clog: Client.send: ALL: FUNCTION: Entering
    clog: Client.send: ALL: FUNCTION: Exiting
    clog: ConvAtOutputStream.flush: FINEST: GENERAL: Sent to pipe 16 bytes
    clog: HeliosSession.sendCompress: ALL: FUNCTION: Exiting
    clog: Client.flush: ALL: FUNCTION: Entering
    clog: Client.flush: ALL: RESUME: Data length: 86
    clog: Client.flush: ALL: FUNCTION: Exiting
    clog: HeliosSession.startSession: FINEST: GENERAL: disconnecting jdbc
    clog: JupConnection.destroy: ALL: FUNCTION: Entering
    clog: JupConnection.destroy: ALL: FUNCTION: Exiting
    clog: HeliosSession.startSession: ALL: FUNCTION: Exiting
    clog: Client.startSync: MANDATORY: ALL:
    Exception: java.sql.SQLException: ORA-02289: Sequence ist nicht vorhanden.
    ORA-02289: Sequence ist nicht vorhanden.
    clog: HeliosSession.getSessionType: ALL: FUNCTION: Invoking
    clog: Server.newConnection (): ALL: FUNCTION: Invoking

    Check your err.log after you create the users to see if there is any issues.
    I have had various issues with users Data Subsetting not being set. I find this happens when there are many blocking locks and users are being drop, created, password change, etc. Blocking locks are part of the nature of the application, the only way to really combat that is to do some performance tuning on the MGP and the SYNC.
    Here is how I create my user:
            try {   
                rm.createUser(USERNAME, PASSWORD, DISPLAY_NAME, "U");
                rm.setUserAccess("/app", USERNAME, true);
                rm.setTemplateVariable("/app", USERNAME, "USER_ID", PARAMETER);
                rm.commitTransaction();
            } catch (ResException res) {
                rm.rollbackTransaction();
                res.printStackTrace();
            }

  • The sequence does not show when exporting media from premiere

    hi
    i have the following setting for my sequence-
    editing mode- main concept bluray
    time base-25.00
    preview file format -mpeg bd 1080 50i vbr 34 mbps
    width 1920
    height- 1080
    maximum render quality
    issue is when i export media the adobe media encoder does not show the sequence
    and when i export in some other format- it only shows h.264 option and not h.264 bluray. as a consequence cannot write any bluray since all the option are progressive
    do i need to reinstall something/anything
    issue with mainconcept?
    is there a tab where one can add presets in media encoder?
    thanks

    If you installed AME through the Creative Cloud, then this is a known issue which was fixed in an update released just a couple of days ago. To get this update, select Updates in the Help menu.
    If you're not on Creative Cloud, then please specify which product or suite you installed that included AME, and also indicate whether it's activated or running in trial mode.

  • JNLP does not trigger JRE installation

    Hi
    I want to launch my application with a minimum version of jre(i.e. 1.6.0_10). If on the system there is no jre installed
    or jre installed on the system is older than 1.6.0_10, i want jnlp to trigger the installation of jre 1.6.0_25.
    I tried following jnlp tags in my jnlp file:
    <java version="1.6.0_10+" href="http://download.oracle.com/otn-pub/java/jdk/6u25-b06/jre-6u25-windows-i586.exe"/>
    <j2se version="1.6.0_10+" href="http://download.oracle.com/otn-pub/java/jdk/6u25-b06/jre-6u25-windows-i586.exe"/>
    None of the above tags trigger the installation of jre if on the system there is no jre installed
    or installed jre is older than 1.6.0_10.
    Any help would be great.
    Thanks in advance.

    Andrew Thompson wrote:
    1) Why would you expect the JNLP to enforce _25+, when the JNLP specifies..
    ..<java version="1.6.0_10+" href="http://download.oracle.com/otn-pub/java/jdk/6u25-b06/jre-6u25-windows-i586.exe"/>
    _10+?My application is certified with jre version 1.6.0_25, but it can run on any jre version greater than 1.6.0_10. If user has any jre greater than 1.6.0_10 version application will use that jre. But if user does not have minimal jre version (i.e. 1.6.0_10) then i want to trigger jre installation and install the certified jre version for application(i.e. 1.6.0_25).
    2) Have you validated the JNLP file using JaNeLA?
    3) How is the link to the JNLP embedded in the web page?To me JNLP looks fine as it works fine if the system has atleast minimal jre version (i.e. 1.6.0_10), but fails to download jre 1.6.0_25 if it does not have 1.6.0_10 or any greater jre installed.
    The link "http://download.oracle.com/otn-pub/java/jdk/6u25-b06/jre-6u25-windows-i586.exe" is the download link for jre 1.6.0_25.

  • My multi-view component does not trigger WDDOMODIFY

    I have a webdynpro for abap component which displays three areas of information.
    The top part of the screen is a static display of a structure.
    The middle is a structure that displays a key field and its values.
    The bottom is an alv grid.
    It was implemented using techniques described in the tutorial u201CProgramming the ALV Configuration Model in Web Dynpro for ABAPu201D and u201CEditing ALV in Web Dynpro for ABAPu201D by Claudia Danger.
    I have four views and a window.  For simplicity, lets call them TOP_VIEW , MIDDLE_VIEW , AND RESULT_VIEW (the ALV).  These are all placed through ViewContainers onto the LAYOUT_VIEW.
    My main window kicks off the LAYOUT_VIEW and calls appropriate methods to populate all three sections.    I allow the users to add rows to the ALV grid and I have made the key field editable so that a user may enter a key value in the new row.  I then, through the WDDOMODIFY of the RESULT_VIEW, populate the new row with the additional values.
    We are good up to here.  If the user enters any info, or pushes enter, the RESULT_VIEWu2019s standard methods seem to kick in and I do what I need them to do.
    Now for the issue. 
    I want the user to be able to update the key field in the middle section as well, and have the rest of the middle structure update.  I coded the record update in the WDDOMODIFY of the MIDDLE_VIEW, but it does not seem to trigger (I canu2019t hit a break point).  How do I make this code recognize that something has happened..
    Interestingly, if I hit the enter key in the RESULT_VIEW, the WDDOMODIFY of the MIDDLE_VIEW will  update.
    I hope this makes sense u2013 Iu2019m sure itu2019s something simple that I donu2019t yet understand.
    Thanksu2026
    u2026Mike

    Hi,
    did you check WDDOBEFOREACTION and WDDOAFTERACTION methods of middle view...if they are getting hit....if not then the solution would be to create an event at the component level (the main component) and rasie that event while you update the alv records after user inputs key values....the subscriber to this event would be your middle view....inside that middle view you can create an event handler method which subscribe to this event(main component event)....
    thanks..
    AS...

Maybe you are looking for

  • Is there any way to an index that can be used to include the "OR condition "?

    Hello I have some questions. The test was conducted in the following procedure . create table test c1 varchar2(10), c2 varchar2(10), primary key(c1) create index test_idx1 on test(c2); Command> explain select * from test where c1 = 'AAAAAAAAAA' or c2

  • Multiple copies in sequence

    Hi, I need to print multiple copies (3) of documents in sequence. So for example of we are printing a 2 page shipping note the customer would like page 1 printed 3 times first and then page 2 printed 3 times. I know we can print  multiple copies by m

  • Java 7 not working with Power Teacher grade book

    I have the same issue as Tweeks21 and don't have the luxury, I suppose, of a spare pc on hand.  I can do my attendance on Power Teacher but cannot get into my grade book.  At this point, I've resorted back to my paper grade book and wait to use the s

  • Disc Burner not found

    After installing 7.6 itunes no longer reads my cd/dvd drives. Is there a compatability problem with Roxio 9

  • JTable column widths - help

    Hi, I have a JTable and I am having problems with the column widths. Currently, I place my JTable in a JScrollPane, and that's it. What I want is this: 1. When the table is initially displayed, I want all the columns to be of equal width and use the