Deleting last Sequence in File causes error

I'm experiencing a functionally minor but very visible issue, has anyone seen this before?
1. I insert a new Sequence in a Sequence File at the bottom of the list
2. I delete the Sequence and TestStand throws the error below
<<-N->>

I was trying to cleaup the sensitive code from my sequence file so I could post it in here (it happens to be my process model) and I ended up removing everything (sequences, FG variables, types) and the problem persisted.
Then I remembered a I actually have a hidden sequence (flags set to 0x8) in the file, it helped that I tried to diff it with another sequence in ini format. So it turns out this it what is actually causing the problem.
When I have the StationOptions>Preferences>ShowHiddenProperties checkbox unchecked and I insert a new sequence and then delete it the problem persists. When the checkbox is checked the sequence is visible and I can insert a new sequence and then delete it the without seeing the API error message.
<<-N->>
Attachments:
Example.seq ‏50 KB

Similar Messages

  • Linked .eps files cause error in InDesign CS5

    I upgraded to CS5 about 2 weeks ago and all is well except:
    In 2 files so far, some (but not all) of the links to .eps files (within anchored image frames) show up as gray rectangles with crossed diagonal lines. In addition, I get the following error message in a pop-up box:
    "Error encountered while reading TIFF image. Image may be damaged or incompatible. Resave the image with different settings and try again."
    I was able to make one graphic reappear correctly (at least for now) by opening the .eps file in AI CS3 (the latest I have), resaving it as a .ai file and doing a new Place. Is this the best way to resolve this issue for the several dozen .eps files? Or is there something else easier I should try?
    Any ideas what's causing this issue? Is it maybe a known bug?
    Thanks,
    John
    PS: The .eps files were created with 3rd party software (Sibelius music notation software), but I've never before (CS3 and CS4) had a problem.

    I did NOT move the .eps files across a network (except that I have two computers in the same room and move files between them via an Ethernet hub in a Windows workgroup, but I assume you're referring to a LAN, which this is not).
    Of course an Ethernet hub is a LAN! Absolutely! (LAN is a local area network.)
    It's certainly a good idea to check to make sure the files are still the same, but if they still open in Illustrator, then they should work in InDesign.
    (Moving files across networks, LANs or the Internet or what-have-you, should not corrupt them. But stranger things have happened.)
    Also, you mention "tiny" PDFs...what? Generally speaking the PDFs should not be all that different in size from the eps files,
    though it's possible for them to be both larger and smaller, depending. But why do you say "tiny"? I wonder if this may give us a hint about your problem.
    Still, though, I wonder what I asked initially...can you boil this problem down to a small reproducible test case?

  • Oc4j generated finders in orion-ejb-jar.xml file causing errors

    Any information or assistance would be greatly appreciated.
    I have encountered a problem with the generated orion-ejb-jar.xml file.
    It looks like the additional finder methods that are generated when the application
    is deployed are incorrect from the 9.0.3 version to the new 10.1.2.0.2 version.
    The original content of orion-ejb-jar.xml before additional finder syntax is added:
    <finder-method query=
    "NO_SYS_USER_OBJECT_HISTORY.USER_ID=UPPER($1) and
      NO_SYS_USER_OBJECT_HISTORY.AUTOID NOT IN(
      SELECT H1.AUTOID                             
      FROM   NO_SYS_USER_OBJECT_HISTORY H1,                                
             (SELECT AUTOID                                     
              FROM   NO_SYS_USER_OBJECT_HISTORY                                    
              WHERE  USER_ID=UPPER($1)                                    
              ORDER BY DATE_TIME DESC) H2                            
      WHERE  ROWNUM &lt;= $2
        AND  H1.AUTOID = H2.AUTOID)">
    <method>
      <ejb-name>NoUserHistoryEntry</ejb-name>
      <method-name>findOldest</method-name>
      <method-params>
       <method-param>java.lang.String</method-param>
       <method-param>java.lang.Integer</method-param>
      </method-params>
    </method>
    </finder-method>
    After deploying in 9.0.3 the following information is added to the orion-ejb-jar.xml file:
    <finder-method query=
    "NO_SYS_USER_OBJECT_HISTORY.USER_ID=UPPER($1) and
      NO_SYS_USER_OBJECT_HISTORY.AUTOID NOT IN(
      SELECT H1.AUTOID
      FROM   NO_SYS_USER_OBJECT_HISTORY H1,
             (SELECT AUTOID                                     
              FROM   NO_SYS_USER_OBJECT_HISTORY
              WHERE  USER_ID=$1   
              ORDER BY DATE_TIME DESC) H2
      WHERE  ROWNUM &lt;= $2
        AND  H1.AUTOID = H2.AUTOID)">
    <!-- Generated SQL:
      "select NO_SYS_USER_OBJECT_HISTORY.autoid
       from   NO_SYS_USER_OBJECT_HISTORY
       where  NO_SYS_USER_OBJECT_HISTORY.USER_ID=UPPER(?)
         and  NO_SYS_USER_OBJECT_HISTORY.AUTOID NOT IN(
              SELECT H1.AUTOID                             
              FROM   NO_SYS_USER_OBJECT_HISTORY H1,
                     (SELECT AUTOID
                      FROM   NO_SYS_USER_OBJECT_HISTORY
                      WHERE  USER_ID=?
                      ORDER BY DATE_TIME DESC) H2
              WHERE ROWNUM <= ?
                AND H1.AUTOID = H2.AUTOID) -->
    <method>
      <ejb-name>NoUserHistoryEntry</ejb-name>
      <method-name>findOldest</method-name>
      <method-params>
       <method-param>java.lang.String</method-param>
       <method-param>java.lang.Integer</method-param>
      </method-params>
    </method>
    </finder-method>
    After deploying in 10.1.2.0.2 the following information is added to the
    orion-ejb-jar.xml file:
    <finder-method query=
    "NO_SYS_USER_OBJECT_HISTORY.USER_ID=UPPER($1) and
      NO_SYS_USER_OBJECT_HISTORY.AUTOID NOT IN(
      SELECT H1.AUTOID
      FROM   NO_SYS_USER_OBJECT_HISTORY H1,
             (SELECT AUTOID
              FROM   NO_SYS_USER_OBJECT_HISTORY
              WHERE  USER_ID=UPPER($1)
              ORDER BY DATE_TIME DESC) H2
      WHERE  ROWNUM &lt;= $2
        AND  H1.AUTOID = H2.AUTOID)">
    <!-- Generated SQL (pk only):
      "select H1.autoid
       from   NO_SYS_USER_OBJECT_HISTORY
       where  NO_SYS_USER_OBJECT_HISTORY.USER_ID=UPPER(?)
         and  NO_SYS_USER_OBJECT_HISTORY.AUTOID NOT IN(
              SELECT H1.AUTOID
              FROM   NO_SYS_USER_OBJECT_HISTORY H1,
                     (SELECT AUTOID
                      FROM   NO_SYS_USER_OBJECT_HISTORY
                      WHERE  USER_ID=UPPER(?)
                      ORDER BY DATE_TIME DESC) H2
              WHERE  ROWNUM <= ?
                AND  H1.AUTOID = H2.AUTOID) -->
    <!-- Generated SQL (all columns):
      "select H1.autoid, H1.USER_ID, H1.OBJECT_CLASS_ID,
                 H1.DATE_TIME, H1.COMMENT_TEXT, H1.ACTION,
                 H1.ACTION_DATA, H1.SITE_DESCRIPTION
       from   NO_SYS_USER_OBJECT_HISTORY
       where  NO_SYS_USER_OBJECT_HISTORY.USER_ID=UPPER(?)
         and  NO_SYS_USER_OBJECT_HISTORY.AUTOID NOT IN(
              SELECT H1.AUTOID
              FROM   NO_SYS_USER_OBJECT_HISTORY H1,
                     (SELECT AUTOID
                      FROM   NO_SYS_USER_OBJECT_HISTORY
                      WHERE  USER_ID=UPPER(?)
                      ORDER BY DATE_TIME DESC) H2
              WHERE  ROWNUM <= ?
                AND  H1.AUTOID = H2.AUTOID) -->
    <method>
      <ejb-name>NoUserHistoryEntry</ejb-name>
      <method-name>findOldest</method-name>
      <method-params>
       <method-param>java.lang.String</method-param>
       <method-param>java.lang.Integer</method-param>
      </method-params>
    </method>
    </finder-method>
    The problem with the 10.1.2.0.2 generated finders is that it is prepending H1 when
    it should be NO_SYS_USER_OBJECT_HISTORY which results in the following error:
    Exception in thread "main" com.cdtelecom.vygroe.configuration.ConfigurationException:
    com.evermind.server.rmi.OrionRemoteException:
    Transaction was rolled back: Database error: java.sql.SQLException:
    ORA-00904: "H1"."SITE_DESCRIPTION": invalid identifier
    ; nested exception is:
            java.sql.SQLException: ORA-00904: "H1"."SITE_DESCRIPTION": invalid identifier
            at com.cdtelecom.vygroe.configuration.ConfigurationSession.internalRecordAction(ConfigurationSession.java:869)
            at com.cdtelecom.vygroe.configuration.ConfigurationSession.recordAction(ConfigurationSession.java:401)
            at com.cdtelecom.vygroe.configuration.Configuration.recordActionSaveOrder(Configuration.java:886)
            at com.cdtelecom.vygroe.configuration.Configuration.getOrder(Configuration.java:239)
            at test10g.main(test10g.java:47)
    I tried to manually edit the file but when I shutdown and restart oc4j it regenerates the file again.

    Jingzhi -- If you define the correct EJB-QL you should get the correct SQL generated for the finder. If that's not happening can you verify it against the OC4J v903 production release and see if it is still happening. I don't know if this helps with the JDeveloper problem specifically but if you don't need to create your own finders then that I hope should help.
    Thanks -- Jeff

  • Premiere CC 2014.1 Blu-ray MPEG 2 export causing error in Sony DVD Architect Pro

    I've filed a Bug Report for this but wanted to post here in case it helps anyone else or on the off chance someone can give me a solution / better work around.
    Something has changed in the results of a Blu-ray MPEG2 export from Premiere 2014.1 vs those of the previous CC version. The result is that my authoring software of choice, Sony DVD Architect Pro, fails to prepare a disc image giving an error in the final stage of preparation. This workflow has been working fine for 2-3 years.
    My work around is to export to original format (mxf / XDCAM EX HQ) and then go back to Media Encoder CC rather than 2014 to produce the Blu-ray MPEG2 file, which works without problem.
    Here's a copy paste of my bug report in case anyone with a similar setup has an opportunity to replicate (I'd be very grateful to anyone able to confirm whether its a bug or something specific to me that I might be able to fix).
    ******BUG******
    Export from Premiere 2014.1 directly or via Media Encoder of MPEG 2 1080 50i Blu-ray files causes error in preparation of Blu-ray disc in Sony DVD Architect 5.2.
    This error does not occur when using the same Media Encode export preset in the previous version of Premiere Pro CC / Media Encoder.
    Steps to reproduce bug:
    1. Export Sequence from Premiere
    Export, in my case XDCAMEX 1080i HQ, using a media encoder MPEG 2 Blu-ray preset:
    Preset Name: HD 1080i 25
    Format: MPEG2 Blu-ray
    Bitrate Settings: Medium (Target 25Mbps)
    2. Create DVD Architect 5.2 project
    Set up as single movie Blu-ray project in DVD Architect:
    Disc format: Blu-ray Disc
    Resolution: 1920*1080
    Framerate: 35 interlaced
    Choose the file exported from Premiere
    3 Prepare Disc
    - Select Make Blu-ray Disc
    - Click Prepare
    - Choose Location of iso
    - click next then finish
    Result
    Around 50% - 60% through the process the following error is displayed:
    An error occurred while preparing compilation
    Details:
    File name: STREAM/00000.m2ts
    Status: TSWrapper.dll::CTSWrapper::ProcThreadMain::Failed to read ES file. - The ES file may be shorter than the size described in the MUI file.
    Expected results:
    A shiny ISO ready to be burnt to disc and sent sent to eager customers.
    Its taken me a full day and a half to isolate problem - someone remind me why I fall for the software updates every time?!
    Cheers
    Iain
    Other details:
    Windows 7 pro 64 SP1
    Intel Core i7 950 @ 3.07GHz
    RAM 24.0GB
    ASUSTeK P6T DELUXE V2
    1279MB NVIDIA GeForce GTX 470

    There is a known bug in the H.264-Bluray export. I assume it has nothing to do with your issue, but perhaps it will give you something to consider.
    https://forums.adobe.com/message/6848505#6848505
    It appears due to a malformed xmpses file. It creates a problem on import into Encore, and I think it should do the same upon import into Architect or it would be ignored entirely. The test is to delete the xmpses file and see if that avoids the issue.

  • Delete some lines from file...

    Hi,
    I'm using this code
          File file = new File(sFile);
          if (!file.exists())
            file.createNewFile();
          fout = new PrintWriter(new OutputStreamWriter(new FileOutputStream(sFile , true)) , true);
    PrintWriter fout;
    ...When file has more then (let's write) 1000 lines, I want to delete last 100 from file.
    Can someone help me to do that? Can you posto me a part of code which will done that?
    Thanks.

    If you want to use "standard" (serial) IO, which reads from the beginning of the file, create a line counter, read the file line-by-line, and when the file size limil is reached, close the file - remaining lines will be truncated from the file.
    If the file lines are all equal in length, then you can use the RandomAccessFile methods to directly seek to the desired line and delete lines after that point using the class methods - see the seek and setLength methods.

  • Deleting iMovie files & exported movies causes errors in all of iLife

    I just went through quite an ordeal...
    In an attempt to clean up some space, I deleted a bunch of my iMovie project files and movies after backing them up (files in the default Movies folder). I have deleted iMovie projects before with no issues.
    This time, it caused errors in iDVD, iMovie, and iPhoto...it would say: "Connection failed. The server may not exist or it is not operational at this time. Check the server name or IP address and try again." It would say this over and over and over again and often completely hang up my application so that I would have to force quit. This would repeat itself over and over...
    I read about this in other forums and erased .plist files in User > Library, etc...This solved the problem for other people, but it kind of made it worse for me. Long story short, I ended up having to restore from Time Machine my entire system just to get iLife working again... I also searched for Aliases and externally referenced libraries or files, and I do not have any.
    So now I have those files again. I want to delete them again. But I'm afraid! (P.S. This may also be related to deleting the Aperture Trial Library in the Photos folder...I am also posting about that to the Aperture forum.)
    Does anyone know what the deal with this is? How come before I did not have problems but am now? How do I safely delete iMovie files without having this happen again?
    THANK YOU!

    iMovie is a non-destructive editor, meaning that all original clips are maintained in the folder, even after editing. Until you render the movie to DVD, all the original files are still "in the background". Kind of hard for me to explain. Others here could give more technical details. You would have to delete your movie from the folder to regain all the hard drive space.
    If your idea is to archive your movies, a better method is to record them back to tape. Otherwise, get an external drive to store the finished movies and then delete the original files.
    One word of caution about emptying the iMovie trash. This has been known to cause problems with a work in progress and it is generally advised to leave the iMovie trash alone until your project is finished and burned to a DVD.

  • Installed Trend Micro Smart Surfing on new MacBook Pro and now it has caused error that won't let computer boot up.  How do I get it to a point that I can delete program?

    Installed Trend Micro Smart Surfing on new MacBook Pro and now it has caused error that won't let computer boot up.  How do I get it to a point that I can delete program?

    Try booting up in Safe mode (holding down the Shift key while booting). If the software came with an unistaller, use it to remove alll traces of the software - it's nothing that you need and, as you've experienced, can do more actual hard than good (as is the case with most software of this type). When you're booted in Safe Mode, if you can't run an uninstaller, at least check to make sure that there are no Trend Micro items that are set for automatic log in, at least.
    Clinton

  • SQL Server 2012 Developer Edition will not install. Setup files don't even get copied completely. Win 8.1. ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    SQL Server 2012 Developer Edition will not install.  Setup files don't even get copied completely.  Win 8.1.  ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    Hello,
    I am glad it worked.
    Thank you for visiting MSDN forums!
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • I deleted my back up files from my external hard drive and my trash won't empty. I get an error code -22. Can anyone tell me how to fix this?

    I deleted my back up files from my external hard drive and my trash won't empty. I get an error code -22. Can anyone tell me how to fix this?

    JLCruz wrote:
    I deleted my back up files from my external hard drive ...
    If this is related to Time Machine Backups...
    See here  >  Should I delete old backups?  If so, How?
    From Here  >  http://pondini.org/TM/FAQ.html
    If the TRASH still won’t Empty...
    See Here  >  http://pondini.org/TM/E6.html

  • Error message says I have to delete a corrupt backup file?

    Error message says I have to delete a corrupt backup file, but under my preferneces & under my devices, there is no old backup file to delete, so I can't delete a corrupt one if i dont have any?!

    I know this is a late reply was wondering if you had the problem still as I have been having this problem for many months.  Today I was looking around getting ****** off why it was not working and I found my culprit and thought I would see if it would help you.  Not sure if you, like me, changed your itunes media store location somewhere other than the default location.  What I noticed was in Users>UserName>AppData>Roaming>AppleComputer>MobileSync there was a backup folder with a shared link icon on it and when I double clicked on it windows promptly brought up an error that its location was not valid.  So I figured since it was not valid and I did not have any backups anyways I deleted the folder and then went to itunes and tried a sync and it worked perfectly again.  The backup folder was re-created properly and the stupid corrupt error went away.

  • I can't back up my iPhone4.  When was I syncing, My computer hang. I restart computer. Itune told me there is an error, delete the back up file and try again. But there are no back up file to delete in preference-device. Please help!

    I can't back up my iPhone4.  When was I syncing, My computer hang. I restart computer. Itune told me there is an error, delete the back up file and try again. But there are no back up file to delete in preference-device. Please help!

    Thank you for answering my question. If I reinstall itune, is it mean that I need to install music, apps, video...everything in itune again? also intall everything in my iphone again?

  • LabVIEW File Permissions Error (8) when trying to delete a .SVN checkout directory

    This one has me stumped...
    Our test platform: Windows XP SP2, LabVIEW 8.2.1, TortoiseSVN client 1.45 Build 10425
    We would like to delete our checkout folder and download a clean version from our SVN server using LabVIEW.
    When we try and delete the folder using the standard LabVIEW Delete VI (see attached snap) we always receive Error 8 - LabVIEW:  File permission error. You do not have the correct permissions for the file. This is interesting because I've checked the entire directory hierarchy and I'm the sole owner under Windows XP - I'm also our domain admin.
    In an effort to debug this further, we removed the contents of the directory, apart from the hidden .svn. We checked the .svn tree for any outstanding files and removed them. We then re-ran the LabVIEW code to delete the dir. Still no joy. We then looked at the Windows dialog for the attributes of the checkout folder. It appear that the folder has read-onlly attributes - with a greyed-out tick in the checkbox. Also trying to delete the folder under the Windows command line doesn't work either. It only seems to work when you delete the folder through the Windows GUI.
    Any thoughts anyone?
    -Chroma
    Attachments:
    LV Delete Code.png ‏27 KB

    LabVIEW has the nasy habit of locking a directory where it opened a file in or just browsed.
    Maybe this bug is biting you
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Since I updated my Creative Cloud desktop App to its last version, my files are no longer synchronized. I received the "fail to synch files" and "server error" messages.

    Since I updated my Creative Cloud desktop App to its last version, my files are no longer synchronized. I received the "fail to synch files" and "server error" messages.

    Hi, Jeff.
    I'm not on a network and I didn't change anything on my secutiy setups, so I got in touch to the customer support. They checked my computer and found nothing wrong, so they uploded some log files to analyse the case. I'm waiting for a answer.
    Thanks for the tips.

  • I need help re-installing CS4 production premium. Error code says "Installation database is corrupt" but if I try to delete the caps.db file I can't even find one. Furthermore, I tried Adobe Cleaner and it made no difference. HELP!

    I need help re-installing CS4 production premium (for PC). Error code says "Installation database is corrupt" but if I try to delete the caps.db file I can't even find one. Furthermore, I tried Adobe Cleaner and it made no difference. HELP!

    I need help re-installing CS4 production premium (for PC). Error code says "Installation database is corrupt" but if I try to delete the caps.db file I can't even find one. Furthermore, I tried Adobe Cleaner and it made no difference. HELP!

  • TS2942 I want to delete a file off a thumb drive but get error 1407 which won't let me delete or trash the file.  What do I do?

    I want to delete a file off a thumb drive but get error 1407 which won't let me delete or trash the file.  What do I do?

    Hmmm, what Format is the Thumb drive?
    In the Mac/AFP world...
      errFSNotAFolder               = -1407, /* Expected a folder, got a file */
    Is there perhaps a colon or Backslash, or slash in the filename?

Maybe you are looking for

  • Problem with Live View being slow

    Since the latest update it now takes up to 20 seconds for the live view to appear in Dreamweaver. Is this usual - anyone else having this problem, How can I solve it? it's like working in mud!

  • Passing serialized objects in a session.

    Hi, I am trying set a session by passing an arraylist as a parameter to it. The declartion goes like this: session.setAttribute("name", arlList.get(0)); The second parameter to setAttribute method needs to be serialized. Is the value arlList.get(0) s

  • SQL command Question

    Hello all! Is my bold condition on sql statement bellow correct? select vbeln posnr aubel aupos vgbel vgpos matnr into table it_vbrp    from vbrp    for all entries in it_mseg_vbfa <b>   where vgbel = it_mseg_vbfa-xblnr(10)</b>    and   matnr = it_ms

  • Select count(*) failure

    I'm trying to determine if select count(*) on an existing table could ever fail without there being worse problems that have involved the db and sys admins. Instinct says no, it can't fail without databases/systems being unavailable. But I've learned

  • Merging JTable

    What would be the best way to merge two cells in a JTable?