VO not saving

Hi,
I seem to have a problem with Virtual Office saving when I login to the
interface as ADMIN. I make changes to Netstorage and 'click' on OK. I
logout and log back in and the original setting is back again and the new
setting dismissed.
If I login to http://DNSNAME/VO/ADMIN then I goto the netstorage gadget
but I cannot see exactly where to make the change there. I login as ADMIN
there and anything I make does save.
Any help would be greatly appreciated.
Thanks.

Bill,
It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
- Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
- You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Image is not saved in jpeg/bmp file but ok with png

    Hi i am unable to save the image in disk in jpeg format.
    Here is the code.
    public void saveImage(){
    //if no filechooser is there means no image file opened.
            if(fileChooser==null){
                if(errorWindow==null)
                    errorWindow=new ErrorWindow(XXX.getPrimaryStage());
                errorWindow.showErrorWindow("There is no image to save !!\n");
            else{
                fileChooser.setTitle("Save The Image");
                File saveFile=fileChooser.showSaveDialog(XXX.getPrimaryStage());
                if(saveFile!=null){
                    System.out.println("saveFile path= "+saveFile);
                    //get the extension of output image to be saved.
                    //XXX: is the main class name(say)
                    outExtension=*XXX*.getImageExtension(saveFile);
                    //if user does not give extension: set default extension as jpg
                    if(outExtension.equalsIgnoreCase(saveFile.getName())){
                        outExtension="jpg";                   
                        String newPath=(saveFile.toString())+".jpg";
                        saveFile=new File(newPath);                   
                    Task task = new Task<Void>() {
                        @Override
                        public Void call() {
                            Platform.runLater(
                                    new Runnable() {
                                        public void run() {
                                            try {
                                                //The image is inside ImageView->inside ScrollPane-> inside TabPane.
                                                Image curImage=XXX.getCurrentImage();
                                                int width=(int)curImage.getWidth();
                                                int height=(int)curImage.getHeight();                              
                                                System.out.println("cur image width= "+width+" ht= "+height);
                                                bufferedImage=new BufferedImage(width, height,BufferedImage.TYPE_INT_ARGB );
                                                //set the current image to awt Buffered Image
                                                SwingFXUtils.fromFXImage(curImage, bufferedImage);
                                                    imageTabPane=xxx.getImageTabPane();
                                                    Tab tab=imageTabPane.getSelectionModel().getSelectedItem();                                    
                                                    TabPane childTabPane=(TabPane)tab.getContent();
                                                    ScrollPane sp=(ScrollPane)childTabPane.getSelectionModel().getSelectedItem().getContent();
                                                    final ImageView imageView=(ImageView)sp.getContent();
                                                    WritableImage wim = new WritableImage(width,height);
                                                    imageView.snapshot(null, wim);
                                                    System.out.println(" snapShot width= "+wim.getWidth()+" ht="+wim.getHeight());                             
                                                    *ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);*
                                                       //<------ its not working  for png,jpeg,bmp,gif                                          
                                                    // the below lines are working only for png and gif
                                                    OutputStream out = new FileOutputStream(saveFile);                                                
                                                    ImageIO.write((RenderedImage) bufferedImage, outExtension, out);
                                                    out.flush();
                                            } catch (Exception ex) {
                                                Logger.getLogger(FileMenuController.class.getName()).log(Level.SEVERE, null, ex);
                                                //ex.printStackTrace();
                                            System.out.println("finished");
                            return null;
                    Thread th = new Thread(task);
                    th.start();
                }else{
                    System.out.println("File is not saved");
        }//saveImageNote: The above code is executed in ubuntu(10.04) using Netbeans 7.2(Javafx(2.2), java(1.7.0_11).
    When i run(from terminal) separately in a new class with an image in an Imageview( inside a Vbox) and take the snapshot
    of the imageview and write into the file using ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);
    with any extension (jpeg,png etc) it is working fine.
    Please help me.
    Any small hint is also helpful.Please feel free to comment or give suggestion.
    Edited by: 963038 on Feb 17, 2013 7:14 PM

    When i omit the line OutputStream out = new FileOutputStream(saveFile);
    and write only
    ImageIO.write((RenderedImage) bufferedImage, outExtension,saveFile);
    //out.flush();
    then saving the image even in "png" also fails.
    The following is the error code:
    Note : FileMenuController is my file where the saveImage() is wrtten.
    javax.imageio.IIOException: I/O error writing PNG file!
    finished
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at *newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)*
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more
    javax.imageio.IIOException: I/O error writing PNG file!
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more

  • Excise invoice is not saving and not showing datas

    in erxcise invoice i ve made settings as per the sap best practices then also the excise invoice is not saved and not generated also
    please help me to solve the problem
    the error is coming like this
    Error in allocating Excise invoice number Interval not found Number object J_1IEXCLOC
    Message no. 8I336
    i ve already maintainthe number range for this object in tool in tax in goods moment
    please give some better advice for the excise invoice setting.

    Sub Transaction type determines the subcontracting attributes and determines the accounts for the posting while doing a sub contracting transaction.
    Sub transaction type is also used for determining the accounts while
    doing excise removals.
    Within CIN the account determination is based on the transaction type.
    So normally you can have a single set of accounts for Excise
    utilization. In case you need alternate account determination for
    handling various scenarios you can define sub transaction types. The
    sub transaction types and corresponding account assignments needs to be
    maintained in CIN customization
    To make customization of Sub Transaction type, goto
    <b>SPRO --> Logistics General --> Tax on Goods Movements --> India --> Account Determination and check whether you have assigned second and third one, viz. "Specify Excise Accounts per Excise Transaction and Specify GL Accounts per Excise Transaction".</b>
    Check
    <b>Taxes on goods mvnt--indiaaccnt determination---specify excise accnts for excise transaction...maintain the sub transction type , ip or 01,
    against the appropriate ETT</b>
    Message was edited by:
            sam masker

  • In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    Please don't post the same question multiple times!

  • Non admin user - changes not saved (Safari settings, system prefs, etc.)

    iMac, 2 users, one is administrator and other is standard user. Recently, in the non-admin user account, it has become impossible to make any changes. For example, adding an application to the the Dock, after logging out and back in next time, the application is not in the Dock any more. Also, making changes to the prefs in Safari, changes are not saved.
    I noticed this after installing FireFox v4. I installed it as admin whilst in the non-admin users account. However, I don't believe that the installation of FF has anything to do with the problem, it just highlighted it. I've checked the permissions for the various directories that hold prefs info such as user/libraries/application prefs/etc. etc. and also Safari prefs. Nothing I can see that has changed in system prefs.
    Any ideas on what has caused the problem (kids are known to fiddle from within the non-admin account) and any ideas on how to fix it?
    Thanks

    Hi PPRuNe,
    You could try making the standard user an Admin too. To do this, make sure you are logged in to the standard user, go to System Preferences > Accounts > Standard user (you may have to unlock the padlock) > Allow user to administer this computer
    This will allow changes to be made without being prompted for a password all the time.
    However, if you had Parental Controls on, they probably won't work on an admin account because as an admin you have complete control over a computer, so the computer thinks there is no point in having the controls turned on. And if the kids are known to "fiddle," just think carefully!
    Hope this helps you.
    Chris.

  • Microsoft Outlook 2010 The delegates settings were not saved correctly. Cannot activate Send-on-behalf-of list. You do not have sufficient permission to perform this operation on this object.

    I am trying to assign delegation to a user and I receive the following message.
    The delegates settings were not saved correctly.  Cannot activate Send-on-behalf-of list.  You do not have sufficient permission to perform this operation on this object.
    We are using 2010 for the server and client.  There are only specific mailboxes that this is happening for after being migrated from Lotus Notes.  The user can use their mailfile fine however it is just the delegation that appears corrupted somehow. 
    I'm not sure how to fix this.  I have checked the access through the security tab in ad and that looks fine.
    Any help would be appreciated.

    I did some more digging and I solved it.
    This would be the solution:
    In Active Directory Users and Computers
    -Click on VIEW
    -Click on ADVANCE FEATURES  (this is important otherwise you won't see
    the complete list in the next steps)
    -Click on the USERS container
    -Find the problem user's account
    -Right mouse the account and click on PROPERTIES
    -Click on the SECURITY tab
    -In the top box, click on the SELF account
    -In the bottom portion of the screen make sure the READ PERSONAL
    INFORMATION  & WRITE PERSONAL INFORMATION  should both be checked for
    ALLOW
    If you can compare the permissions for 'SELF' with another user you probably should set them accordingly to be safe. I noticed that for the user where setting delegates (SOB) did
    not work, more than those 2 permissions were missing.
    Good luck!
    David

  • My blends in Illustrator CS4 are not saving or printing correctly.  Why?

    Why are my blends in Illustrator CS4 not saving or printing correctly???
    SPECS:
    Adobe CS4
    MAC 10.5.8
    I got a outlined Text blend with a drop shadow.  And another text with a drop shadow on top.  Not too complex at all.
    Heres some screenshots of the problem.
    (1) Adobe Illustrator Screenshot
    (1) Screenshot of my saved TIff file.  I saved as a PDF as well and still no luck.
    Any suggestions?

    Mylenium,
    Thanks for you time and suggestions!  You helped alot!  My layers panel was crazy.  I re-arranged, re-organized and stacked according to the graphic.  Solved my problem first try.  Not used to making sure the order is right in illustrator, only in photoshop.
    Thanks again man!
    -NightRed

  • Sent Messages are not saved in Sent Mailbox

    It was working correctly but suddenly all my sent messages are not saved in the Sent Mailbox. I follow all the Mail Help instructions but nothing seems to work. Hope that someone can help me. I asked for help on december 14 but it was not helpful

    The mailboxes drawer contains all mailboxes under In, Drafts, Sent, Trash and Junk (if you have Junk Mail set to automatic).
    If you have a .Mac or IMAP type account, you also have an account named icon for the .Mac or IMAP type account at the bottom of the mailboxes drawer. It is named by the Account Description you provided/entered for the account under the Account Information tab for the account preferences.
    If you select save Sent messages on the server for a .Mac or IMAP type account, the account's Sent mailbox will be available under the account named icon in the mailboxes drawer along with all other server stored mailboxes.
    To open the account named icon for your .Mac account to reveal the server stored mailboxes including the account's Sent mailbox, select the black triangle beside your .Mac account icon in the mailboxes drawer pointing it down.
    Select the account's Sent mailbox and at the menu bar, go to Mailbox > Use This Mailbox For and select Sent.
    If you deselect store Sent messages on the server for the account preferences, the account's Sent mailbox will be available under Sent in the mailboxes drawer and you can't use "Use This Mailbox For" for mailboxes stored locally on the hard drive. It can only be used for .Mac or IMAP type account mailboxes that are stored on the server.

  • Hyperlinks not saved correctly in PDF and Excel

    Hi,
    I have a few reports with hyperlinks to other reports that contain multiple input parameters, which makes the links very long. ( greater than 400 characters )
    When the reports are saved as excel, I am unable to invoke the child report on clicking the link as the link is not saved entirely ( can see that when i try to edit the hyperlink in excel ).  Therefore the child report opens but prompts for inputs as not all the inputs are passed
    When saved as pdf, the link is not saved correctly and i cannot invoke the child report at all
    Please can you suggest a solution/workaround? Alternately is it possible to disable the hyperlinks when saved as excel/pdf?
    Regards
    Sameer

    Hello,
    I think this is a limitation in Excel where URL syntax has to be 255 characters or less
    In order to prove that it's coming from excel and not BO, try in excel to create a false hyperlink which contains more than 255 characters.
    A workaround might be to modify the cell as text and will not be recognized as a URL. So you should get it entirely.
    Please let me know if it helps you
    Regards,
    Philippe

  • FCP 6.0.2 - Capture Successful - Clips not saved! Help!

    I'm running FCP 6.0.2 on OS X 10.4.11
    I have a Sony HDR-FX1 camera and do most of my filming in SD DV.
    I'm trying to capture footage on several tapes (about an hour per tape) using the Log and Capture method. The camera is plugged into my front firewire port. I've logged the tapes (as 1 hour clips) and have tried doing a batch capture several times.
    Here's the problem:
    The clip is captured for the entire hour and I'm presented with the message that the capture was successful. I proceed to click "Finish" and my clip stills shows as "offline" in the final cut pro browser. Also, when I look in my FCP "Capture Scratch" folder, the respective project folder is completely empty.
    In other words, FCP is not saving my captured clips for some reason.
    I'm happy to answer any other questions you may have and am willing to try anything at this point!
    Thanks in advance for your help.

    Yeah - oddly enough, I don't run into this problem with shorter clips - just captured one that was 30 minutes long. But I really don't want to split these long clips up - it's easier to sync up the multiple angles when I'm dealing with clips that are all the same length.
    You would think that if FCP encountered a problem while capturing these clips, it would give me some sort of warning - but no, it says successfully captured and then just doesn't save the darn clips! So frustrating to sit here for an hour watching it capture and have nothing to show for it. It's failed 8 times so far (that's 8 hours I'll never get back!)

  • Voice memos app not saving properly

    I am using an iphone5 running iOS7.1.1 and performing the following actions will cause Voice Memos app not saving recordings. I have sent a feedback to Apple but is wondering if anyone else is found having similar problems.
    1) Run Voice memos app and start recording
    2) At lock screen open camera app and take a picture
    3) At same lock screen delete the picture taken
    4) Lock screen will show RECORDING in progress
    5) Open Voice memos app and it will also show RECORDING in progress
    6) Save voice memo from app and the duration FROM the point of picture deleted WILL NOT be saved

    same here ... iPhone 3gs/32 gigs ram/ios 4.3.1 ...
    the app doesn't seem to work any more, and hasn't for some time:
    "buttons" are unresponsive, or they appear to respond, but don't perform their function ... erratic behavior ...
    very disappointing as this has gone on for some time ...
    We appear not to be the only ones ...
    Anyone with a solution?
    Thanks

  • Downloads of updates not saving, no prompts or icons in the Application folder-how do I ensure updates are saved?

    I am following the instructions to download v 6 but receive no prompt to move the Firefox icon to the applications folder. I have done that anyway, but it's not saving-the latest version is July 11. I then get reminders to update all the time-what am I doing wrong?
    I am working on a Mac laptop

    A lot of people panic when they see Photoshop displaying differently from other software. But that's normal and expected. Here's what happens:
    1. Photoshop is color managed and performs a document profile > monitor profile conversion when it displays. So whatever the document profile is, Photoshop will display correctly - unless you have CM policies set to "off" (...!)
    2. Other applications, including many web browsers, aren't color managed and will just send the file numbers directly to the display. This distinction is extremely important, because there will be a slight difference. Again, that's normal. Photoshop is right and the other apps are wrong.
    3. Without color management, it all hangs on how your monitor displays color. Most monitors are so close to sRGB that any sRGB file will display roughly correctly. This is why sRGB is the de facto web standard: it can live without color management. And that's why you should always convert web material to sRGB. Yes, that's the Edit > Convert to Profile option. You can also use Save For Web to do this if you check the appropriate boxes.

  • Mail attachments not saving to the folder I choose

    My mail attachments are not saving to the folder I choose.  When I select a file to save in the mail drop-down box, I am given options to save to a folder of my choice.  However, when I select save the document is actually saved deep in some Mail Downloads area, not in my chosen folder.  Has anyone had a similar problem and found a solution?

    What kind of files are you trying to attach?
    Is it all recipients having this problem or specific one(s)?
    Could you possibly post a screenshot of the sent message from your side and a screenshot of what the recipient sees?
    What happens if you send one of these messages to yourself?
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Photos not saving to camera roll - iphone 5s

    I upgraded to the Iphone 5s from 4s now photos are not saved to the camera roll. Took it to the Genius bar and they restored to factory settings, same problem but they later did a "deep restore" and it worked. When they restored my data, it broke the camera roll again. The only soultion seems to be to "start over". But this is not acceptable. How can I transfer some of the app data (texts, voicemails, and select apps) to the new phone?
    Alternatively, how can I "fix" the camera roll?
    Some hints: There is a folder in DCIM folder (when viewed with the app iExplorer) called 101APPLE that contains 49 phots and 2 movies from 2010 that I CANNOT delete. Iphoto wont delete them, they wont delete from the phone UI, and they cant be delete with iExplorer - in all cases it SEEMS like they delete then pop right back in!!

    The only way photos would go to the camera roll would be if you restored the 5S from an older backup. If you transfered these photos via iTunes sync, they do not go into the camera roll.

  • Downloads not saving to Downloads folder

    Downloads are not saving to the designated "Downloads" folder in My Documents.
    Instead, they are saving to C:\Documents and Settings\{username}\Local Settings\Temp.
    Tools/Options setting is pointed at Downloads, but the files just aren't saving there.

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See "Disable virus scanning in Firefox preferences - Windows"
    *http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Desktop setting not saving after system update

    Hi All,
    I did a system wide update including the changing the kernel from 2.6.25 to 2.6.28 and now I cannot change my desktop setting.
    that is, my desktop background picture and font size is not saving. First I could not shutdown and i read the forum where
    it was suggested to downgrade from hal-0.5.11-7 to hal-0.5.11-4. and that work for me. but my system
    not saving my desktop setting. I have the "automatically save session on logout" check.
    I am using xfce4 as my DM
    any help please.

    hi,
    check your home folder permissions. open up your /home/ right click on your username folder click properties and in permissions dialog check that owner can view/edit files and then check something like apply to all subfolders and files

Maybe you are looking for

  • Multiple columns in migrating MS Access

    Migration workbench Access 97 -> Oracle 8.1.6 During capture of source data, multiple columns are generated for each table. In fact, columns of one table are duplicated on all others tables ==> building of Oracle model hangs for violation of unique c

  • Track Shipments in Mail add More services

    Through the "data detectors" coded into OS X , Safari and Mail is able to detect a tracking number from USPS, UPS, and FedEx. I wonder if I can add more Postal Office like DHL, china post, Argentina post,etc  to track the shipments. Thanks.

  • MAC os 10.4 powerprocessor

    i cant install the flashplayer :/

  • How do I turn off all the applications that open when I start my Mac up?

    Everytime I start my Macbook Pro up, it opens all of these applications up.  I know there is a way to turn it off, but I can't remember how.  Can anyone help, please?

  • Help required in developing Wage Return Interface

    Below is a part of the requirement: This XML file will be packed into .zip format and senT to the Tax Authority outside SAP. There are two methods for this there is a BAPI channel and a FOS channel.  SAP recommends all clients to use the FOS channel