I'm trying to write a VI that updates a file each time it is run, but on a new day a new file is created which is updated until a new day begins.

I have written a VI to create and update a file as many times as needed on any given day. On any subsequent day a new file is created which for that day will be updated each time the VI is run and so on. The problem is that when I run the VI the first time of a new day, ie when the file is created only data is written to the file and not the header data. When the file is appended, header data, and regular data is properly written to the file. Can anyone tell me how to correct this problem? A copy of the VI that I wrote is attached.
Thanks,
Chuck M.
Solved!
Go to Solution.
Attachments:
File - create new on date change.vi ‏15 KB

You had the header information written when there wasn't an existing file, then you overwrote that file with another file consisting only of the data because you wired the "append to file? (new file:F)" the same for both functions (F causes it to create a new file).  I put the header writing function in a Case structure because you only want it to execute when this is a new file (otherwise it'll overwrite what's there).  Wire the path straight through the False case.  I wired a TRUE to the data writing function to always append (because there will always be a file by the time the program gets there).
Jim
PS - a few other observations
Avoid sequence structures
You don't need the property node
Use Path functions (not string)
Message Edited by jcarmody on 04-13-2009 05:58 PM
Jim
You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice
Attachments:
examp.jpg ‏19 KB

Similar Messages

  • Trying to write an Automator program to find files with same time created and change file names to matching source folder names

    I am failrly green when it comes to automator.
    I am trying to write an Automator program:
    Not sure where to post this
    trying to write an Automator program to find files and alter their names
    I have a source folder with correct named master files in it.
    eg. A0001_1234.mpeg
    time created 14:02:03
    date 07/07/2012
    Another folder where there will be copies of the master files in a different format with different names but created at the same time as a file in the source directory.
    they are created with a seperate device but they are
    A0000001.mp4
    time created 14:02:03
    date 07/07/2012
    I need it to then take the name from the source fies and apply the correct name to the matching file based on the time it was created.
    I can't seem to find actions in automator that reference time crated.
    Is this something I will be able to Do in automator?
    Any help would be great
    Thanks
    R

    Hi,
    It's impossible to do this without any script in Automator.
    Use this AppleScript script :
    set source to choose folder with prompt "Select the source folder"
    set anotherfolder to choose folder with prompt "Choose the another folder"
    tell application "Finder"
        repeat with tfile in (get files of source)
            set cDate to creation date of tfile
            set findFiles to (files of anotherfolder whose creation date is cDate)
            if findFiles is not {} then
                set tName to name of tfile
                set name of item 1 of findFiles to tName
            end if
        end repeat
    end tell

  • Why is it that my iMovie app keeps shutting off randomly! I'm trying to export my movie and it shuts down each time it's a 1/4 of the way through downloading! Ah! Please help.

    Why is it that my iMovie app keeps shutting off randomly! I'm trying to export my movie and it shuts down each time it's a 1/4 of the way through downloading! Ah! Please help.

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • I am trying to find a tool that gives coupling for each class

    Hi,
    I am trying to find a tool that gives coupling for each class and not each package. I already generated the coupling at package level with tools like pmd, classycle, jdepend and metrics. Please let me know of any other tool that would do coupling at class level.
    Thank you

    without the space!
    http://forum.java.sun.com/thread.jspa?threadID=633089&messageID=3666280#3666280

  • I have a mac ox 10.5.8 and I'm trying to download a downloader that converts video files into mp3 but none of them wont open. Can anyone help?

    I have a mac ox 10.5.8 and I'm trying to download a downloader that converts video files into mp3 but none of them wont open. Can anyone help?

    http://software-download.name/video-to-mp3-converter-osx/
    http://www.macworld.com/article/1161412/how_to_convert_audio_and_video_files_for _free.html
    http://www.applemacvideo.com/howtoconvert/flvmac/flv-to-mp3-mac.html
    http://www.iskysoft.com/convert-audio/convert-mpeg1-to-mp3-mac.html
    Not sure if any are PPC, oR 10.5.8 compliant, still, if you give a link to one you're trying, it may be helpful.

  • When using my ipad2 in calendar landscape, month mode, I now see my end time of appointments running over into the next day. (i.e. ends at 1:00am now seen on next day as one long bar). any way to hide that?

    I just updated to ios6. My month view in calendar now shows the start time and end time of appointments running over into the next day. I.E. start appointment on Friday at 5:00 pm, end it at 1:00am Saturday moring. I used to only see the one entry on Friday. Now the appointment runs across both dys showing start and ent time. Can I only show start ttme on month view as I did before?

    Wow! Sorry for all the typos!

  • I'm trying to make a photo cd on iphoto.  Each time it stops with this message "Operation could not be completed. (OSStatus error - 9459.)  What am I doing wrong?

    I'm trying to make a photo cd on iphoto.  Each time it stops with this message "Operation could not be  completed (OSStatus error - 9459). 
    What am I doing wrong?

    By photo CD do you mean you're trying to burn image files to a CD disk from iPhoto? How are you going about this?
    OT

  • Trying to write a program that you can enter #s and multiply at the end.

    I' m new to java and trying to write a program
    to choose a number between 1-100
    and another entry choose a number between 2-100
    when numbers are picked then they're multiplyed
    can someone please help me??

    I' m new to java and trying to write a program
    to choose a number between 1-100
    and another entry choose a number between 2-100
    when numbers are picked then they're multiplyed
    can someone please help me??Sure. There are lots of folks around here that would be willing to help you (myself included). What are you having trouble with?

  • Errors while trying to write Vector of JPanels to Object File.

    Does anyone know why I'm getting the following errors and how can I fix it?
    I'm trying to output a Vector that contains a bunch of JPanels (that are fixed to a JFrame):
    public class MyFrame extends JFrame {
    Vector panels
    .... code here
    try {
    FileOutputStream fos = new FileOutputStream(this.saveObjectPath+this.scriptName+".dat");
    ObjectOutputStream oos = new ObjectOutputStream(fos);
    oos.writeObject(panels);
    oos.close();
    } catch (Exception e) {
    System.out.println("Count not write Data file");
    ... more code
    and I get the following mass of errors:
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java:718)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java:718)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)

    can you post this line of code, or section of relevant code:
    BasicScrollPaneUI.java:66, as this is where the problem is

  • HT1451 I am trying to restore my playlists that disappeared yesterday. I have followed these instructions but when I get to step 7, I can't find File Library Import playlist. What am I missing?

    I am trying to restore my playlists that disappeared yesterday. I have followed the instrutions on the support page but when I get to step 7, I can't find File>Library>Import Playlists. What am I missing?

    I suspect the menus have changeed slightly since that document was written...
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping.  Note that in iTunes 11 an "empty" library may show your past purchases with links to stream or download them.
    In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    Alternatively, depending on exactly when and why the library went missing, there may be a more recent .tmp file in the main iTunes folder that can be copied & renamed as iTunes Library.itl to restore the library to an earlier state. Look for a recent .tmp file that is similar in size to the .itl files in the Previous iTunes Libraries folder. If it has happened repeatedly you may want the earliest such file generated since the last iTunes upgrade.
    If applicable, see iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device.
    I've noticed more of these missing library posts of late and a common factor to most since I started asking is AVG Anti-Virus. It seems in some cases it might be at least part of the reason why the library file disappears. Try excluding the iTunes folder from any AV scanning process.
    tt2

  • HT1725 Download didn't download to my iPhone. I tried again. Got message that it will download next time I synch with iTunes. It doesn't.

    Docusign ink failed to download onto my iPhone. I tried again. got message that it will download next time I synch with iTunes. It doesn't. After trying different things, each time I tried to download it + checked the box, it unchecks itself during sync. Not sure what can be wrong. A partial download maybe, but reporting a problem brought me here. 'Elp!

    Aha! Just found out. It needs IOS 5! Duh.

  • Is it possible to set firefox to recreate the daily bookmarkbackup (json) file each time it close as opposed to once a day ?

    From what I understand, Firefox create a daily backup of it's bookmarks in a .json file the first time it closes each day. We found that if a user has already closed Firefox in the present day (and the .json bookmarkbackup file is already created for the present day), it won't add to this file the bookmarks added later in the day at futures Firefox closes...
    So if, for example, places.sqlite gets corrupted later in the day, all new bookmarks added after the first close (and creation of original daily backup) of Firefox aren't backuped...
    Is there any way to set it so that each time it closes for the current day, it regenerate the daily backup of bookmarks with the lastest bookmarked pages?
    Thanks

    Note that a JSON backup is created when you start Firefox and not when you close Firefox.
    You can make Firefox create an automatic HTML backup (bookmarks.html) when you exit Firefox if you set the browser.bookmarks.autoExportHTML pref to true on the about:config page.
    * http://kb.mozillazine.org/browser.bookmarks.autoExportHTML
    That backup is created by default in the profile folder as bookmarks.html, but you can set the file name and path via the browser.bookmarks.file pref on the about:config page.
    * http://kb.mozillazine.org/browser.bookmarks.file
    The browser.bookmarks.file pref doesn't exist by default and you need to create a new String pref with the name browser.bookmarks.file and set the value to the full path of the backup bookmarks file.
    Note: an HTML backup doesn't preserve tags and annotations, so you lose those if you need to import the HTML backup.
    * http://kb.mozillazine.org/Export_bookmarks

  • I've tried several times to send a document via email and each time the document arrives blank. The document is saved in Adobe and has all the content until I send it. What am I doing wrong?

    I Am trying to send an employment application that I have saved to Adobe. Each time I email it to the recipient it arrives blank. What am I doing wrong?

    Hi Lee61,
    What email client are you using to send the PDF file? If you have a free Acrobat.com account, you can upload your file to your account, and then send a link to it to your recipients.
    Best,
    Sara

  • How do I turn off the ID &Pin feature on a site so that I enter it each time I go there ?

    When I enter my online banking site, I go to login and my ID and Pin number automatically is filled in, so anyone who uses my computer can just go to the website and get into my account. I would rather have the option to fill in the information each time. Is there a procedure to turn that fill in feature off?

    Remove a saved password here: Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    You can disable the password manager or set a master password to prevent others from using stored passwords.
    * http://kb.mozillazine.org/Deleting_autocomplete_entries
    * http://kb.mozillazine.org/Password_Manager

  • Newbie: Trying to write PL/SQL that is dynamic based on data

    Hi everyone,
    I was wondering how I would go about writing a report that outer joins based on data from the main table? Here is what I wanna do in pseudo-sql:
    SELECT
         b.po_number,
    a.ht_code,
         b.figure_no,
         b.order_number,
         a.supplier_no,
    b.cert_date,
    b.plant
    FROM header b, part_spec a
    where ...
    begin:
    project = '' /* initialize project */
    /* The table to get the project value for the report is named ORDER01 or ORDER02 or ... */
    /* It is the word ORDER concatenated with the plant value above. */
    select project from 'ORDER' || :PLANT;
    END;
    How would I do this with APEX 2.0?
    I've successfully used APEX to generate SQL Query reports (REGION) but never PL/SQL.
    Your help is appreciated,
    FerrisWheel
    Edited by: FerrisWheel on Dec 15, 2009 10:13 AM
    Edited by: FerrisWheel on Dec 15, 2009 10:14 AM
    Edited by: FerrisWheel on Dec 15, 2009 10:14 AM

    OK, Thanks for the quick feedback. Here is a quick generic SQL I wrote up to show my goal using your suggestion. Notice the ERP_ORDERHDR and plant values in each of the SQLs below.
    SELECT b.cust_po_no,
    a.ht_code,
         b.item_no,
         b.ERP_ORDER_NO,
         a.supplier_code,
    b.cert_date,
    c.prj
    FROM CERT_HDR b, PART_DETL a, ERP_ORDERHDR011 c
    WHERE plant = 1
    AND a.cert_no = b.cert_no
    AND a.cert_no like '%%%' || UPPER(:p1_cert_no) || '%%%'
    AND b.cust_po_no like '%%%' || UPPER(:p1_cust_po_no) || '%%%'
    AND a.ht_code like '%%%' || UPPER(:p1_ht_code) || '%%%'
    AND b.item_no like '%%%' || UPPER(:p1_item_no) || '%%%'
    AND b.ERP_ORDER_NO like '%%%' || UPPER(:p1_sales_order) || '%%%'
    AND (b.cert_date BETWEEN :P1_DATE_FROM AND :P1_DATE_TO)
    AND c.orno (+) = b.ERP_ORDER_NO
    AND c.prj like '%%%' || UPPER(:p1_project) || '%%%'
    UNION ALL
    SELECT      b.cust_po_no,
    a.ht_code,
         b.item_no,
         b.ERP_ORDER_NO,
         a.supplier_code,
    b.cert_date,
    c.prj
    FROM CERT_HDR b, PART_DETL a, ERP_ORDERHDR012 c
    WHERE plant = 2
    AND a.cert_no = b.cert_no
    AND a.cert_no like '%%%' || UPPER(:p1_cert_no) || '%%%'
    AND b.cust_po_no like '%%%' || UPPER(:p1_cust_po_no) || '%%%'
    AND a.ht_code like '%%%' || UPPER(:p1_ht_code) || '%%%'
    AND b.item_no like '%%%' || UPPER(:p1_item_no) || '%%%'
    AND b.ERP_ORDER_NO like '%%%' || UPPER(:p1_sales_order) || '%%%'
    AND (b.cert_date BETWEEN :P1_DATE_FROM AND :P1_DATE_TO)
    AND c.orno (+) = b.ERP_ORDER_NO
    AND c.prj like '%%%' || UPPER(:p1_project) || '%%%'
    UNION ALL
    SELECT      b.cust_po_no,
    a.ht_code,
         b.item_no,
         b.ERP_ORDER_NO,
         a.supplier_code,
    b.cert_date,
    c.prj
    FROM CERT_HDR b, PART_DETL a, ERP_ORDERHDR014 c
    WHERE (plant = 4 or plant = 5 or plant = 8)
    AND a.cert_no = b.cert_no
    AND a.cert_no like '%%%' || UPPER(:p1_cert_no) || '%%%'
    AND b.cust_po_no like '%%%' || UPPER(:p1_cust_po_no) || '%%%'
    AND a.ht_code like '%%%' || UPPER(:p1_ht_code) || '%%%'
    AND b.item_no like '%%%' || UPPER(:p1_item_no) || '%%%'
    AND b.ERP_ORDER_NO like '%%%' || UPPER(:p1_sales_order) || '%%%'
    AND (b.cert_date BETWEEN :P1_DATE_FROM AND :P1_DATE_TO)
    AND c.orno (+) = b.ERP_ORDER_NO
    AND c.prj like '%%%' || UPPER(:p1_project) || '%%%'
    and this would go on for up to 4 more unions. Is there a way to use PL/SQL to make it more clean? Another issue I have with the above is that the c.orno field that I try to outer join is not numeric whereas the b.ERP_ORDER_NO is numeric. I can to_char(c.orno) but how do I do that and still have an outer join? If I can use PL/SQL, I hope to be able to better control the output and eliminate the unions.
    I hope this is enough information.
    Thanks,
    FerrisWheel

Maybe you are looking for

  • AR INVOICING ERROR

    Hi, i am getting this error please resolve  ..it is great help.. The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. The following tags were not

  • How to tell the actual nic speed in Windows 8?

    I really !.....  hate many things about Windows 8 but the nic speed has to be one of my most despised "features".    I used to go to monitor my nic in task manager and BOOM it told you that you had a gigabit connection and you might be using 10% of y

  • Macbook pro battery bloated

    Hi, I bought my Mac Book Pro in Jun 2008 with three years apple care. Just couple of days ago the battery got bloated. I am very upset that it happen just few month after the Apple care ended. Apparently there is a Apple Battery Replacement Program t

  • I can't see the Object Key

    Hi experts, I have a problem when I run a Webi on a BW query. If I place a single characteristic in Webi report shows me the key, your text short and medium text, but if I add a measure to Webi don't show me the key, that is, I only see the short tex

  • Account options - Refresh address books / rules range

    Hi Forum, sometime I get (annoying) calls that there are old users on distribution lists which are already deleted. They get an error message if they send mails to that list... So far I could always resolve that issue by simply refresh the system gro