How to import Console Add-in programmatically in VMM?

Hello All,
In my C# application, I want to import Console Add-in.
To do this currently I am creating a folder structure with similar permissions as it was created during the import of Console Add-in from VMM UI.
But when I start the VMM, it shows the following error : 
“Your personal add-ins folder is editable by users other than yourself and the Administrators group. This presents a potential security risk by which user could malicious code to be executed using your credential. Please check the following
folder and remove any permission assigned to the other users. 
C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\AddInPipeline\Addins\SCVMMTESTING_Administrator ” 
Is there any other way to import console add-in programmatically in VMM.
Below is the image for your reference-
Thanks & Regards,
Nupur Sharma
Nupur Sharma

Hi KVC,
Im using Essbase 11.1.2 and developed my cube in EAS console, now Im doing the migration from DEV to PROD. I've copied the cube to PROD, but only outline and rule files are copied, no data in it, I exported all level 0 data to a txt file and copied it to PROD, my question is how to import data from the txt file? should I create a new rule file and load data in EAS console? is there a simple way to import these data?
Thanks,
-Rrmj

Similar Messages

  • How many Java Console add-ons do I need? I have 6.0.02 thru 6.0.21

    This is really for information. I have lots of Java Consoles as add-ons. All apparently enabled. Do I need them all or can I remove all but the last

    How to remove multiple Java Console extensions: http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    <br />
    You need to update your plugins. It is important to keep them updated due to continuing security fixes and improvements in those plug-ins:
    * Adobe PDF Plug-In For Firefox and Netscape 8.2.4
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use Firefox to download and SAVE the installer to your hard drive from the link in the article below
    #**On the Adobe page, un-check any extra items (i.e. Free McAfee® Security Scan Plus) then click Download button
    #**If you see message just under tabs, DO NOT click the Allow button, instead click below that where it says "click here to download".
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link and more information</u>''': https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    #*After the installation, start Firefox and check your version again.

  • How to import adobe add-on preset to lightroom?

    I am using a MacBook Pro and currently using LR. I downloaded an Adobe Add-On.....Creative Lightroom Pre-Sets.  I have the creative cloud synched, I see the zip file and wish to now import into LR.  I cannot get past the directions of extract the zip file.  I right click, open with archive utility and it just creates another preset bundle.  The import button is greyed out...it only lets me cancel.  I'm very new to this so bear with my technology challenged mind.

    Moving this discussion to the Photoshop Lightroom forum.

  • How to import programmatically an APEX images file using workspace images option and CSS files to APEX?

    Oracle db 11gR2
    Oracle APEX 4.2.1
    Linux RHEL 6.3
    I am importing a images file programmatically into APEX.  And also a CSS file.
    I want to add an images file to my APEX instance but I want to choose the option -- workspace images --.  How does one do that programmatically via the APEX API e.g.?
    I don't want the images tied to an application within APEX.
    Does one do the same thing for CSS files that are imported to APEX?
    thx.

    This is interesting and helpful,  I use the following code to import my APEX database application and run it via SQL*Plus and it works fine for database applications -- what do I need to change/add/modify in order to load the images and CSS files?  NOTE: I want the images to be -- Workspace images -- not tied to any application.  Also, I need to handle the situation where the images and CSS data already exist in the APEX environment as well as when they are not there (i.e. initial install).  Usually it is a case where it is an upgrade so the data already exists in the APEX app and just needs to be updated.
    declare
                      v_workspace      varchar2(35)    := 'WORKSPACE';
                      n_existing_app   number          := 123;
                      n_new_app        number          := 456;
                      v_app_alias      varchar2(35)    := 'WKALIAS';
                      v_parsing_schema varchar2(35) :='WORKSPACE_PARSE';
                      n_secgrp_id      number;
                      v_err_msg        varchar2(200);
                      n_err_num        number;
                      n_workspace_id   number;
                    begin
                      -- get workspace id
                      select workspace_id
                      into n_workspace_id
                      from apex_workspaces
                      where workspace = v_workspace;
                      -- set workspace id
                      apex_application_install.set_workspace_id (n_workspace_id);   
                      -- set security group
                      apex_util.set_security_group_id (p_security_group_id => apex_application_install.get_workspace_id);
                      -- set pasring schema
                      apex_application_install.set_schema(p_schema => v_parsing_schema);
                      -- delete existing app
                      begin
                        wwv_flow_api.remove_flow(n_existing_app);
                      exception
                      when NO_DATA_FOUND then -- do nothing when the application does not exist
                        null;
                      end; 
                      -- set new app id
                      apex_application_install.set_application_id(p_application_id => n_new_app);
                      -- generate offset
                      apex_application_install.generate_offset;
                      -- set application alias
                      apex_application_install.set_application_alias(p_application_alias => v_app_alias);
                      exception
                      when others then        
                        n_err_num := SQLCODE;
                        v_err_msg := SUBSTR(SQLERRM, 1, 200);
                        dbms_output.put_line('Error number = ' || n_err_num);     
                        dbms_output.put_line('Error message = ' || v_err_msg);
                    end;
    @newapp.sql
    commit;

  • How to add AutoSuggestBehavior programmatically

    Hi,
    I am using jdev 11.1.2.0.0.
    In our project in some cases we have to create RichInputText components programmatically.
    Does anybody out here know a way to add AutoSuggestBehavior programmatically?
    I'll appreciate any pointer...
    Thanks!
    Edited by: user6806750 on 31.10.2011 6:25
    up
    Edited by: user6806750 on 01.11.2011 0:38
    up
    Edited by: user6806750 on 01.11.2011 23:28
    up

    Hi,
    This pointer may help you:
    http://anindyabhattacharjee.blogspot.com/2010/10/autosuggestbehavior-is-new-addition-in.html-Prasad

  • How to import MXF files to Final Cut Pro with smooth editing

    Summary: Follow this tutorial to learn how to import and edit MXF files in Final Cut Pro by converting MTS to FCP native format.
    If you have a Panasonic P2, Canon XF or Sony XDCAM series camcorder,
    you may be familiar with Material eXchange Format (MXF). Though MXF is a
    great video format to record high-definition videos, it is not easy to
    use in that they are not natively supported by most NLE systems like
    Final Cut Pro. In order to import MXF to FCP for editing, the easy workaround is to transcode MXF files to FCP compatible video formats.
    Along with some help from a top MXF Converter, it can be done. To
    help those who wanna edit MXF files in FCP without problems, here I
    share with you a simple guide on how to convert MXF files to edit in
    Final Cut Pro 6/7 or FCP X.
    First of all, downloading the App- Brorsoft MXF Converter for Mac
    Overall, the program is a professional yet easy-to-use MXF Converter
    on Mac (Mavericks included) which can not only convert XF100, Canon
    C300, XF105 and XF305, Panasonic P2 recorded MXF files, but also provide
    simple video editing functions for you. The MXF to FCP Converter not
    only can convert MXF to ProRes for FCP, but also can transcode MXF
    videos for editing in Avid MC, Adobe Premiere Pro, iMovie, FCE, etc.
    Just download it and follow the tutorial below to get the work done.
    Transcoding (P2) MXF files to ProRes for Final Cut Pro 6/7/X
    1. Import MXF files to the converter
    Launch the best MXF to FCP Converter, and then click the “add files” button to browse and import MXF videos from your camcorder or hard drive.
    2. Select FCP editable format
    Click the Format bar, and move mouse cursor to choose “Final Cut Pro > Apple ProRes 422 (*.mov)” as output format.
    Tips:
    a. Settings- click to set video
    resolution(1920×1080/1440×1080/1280×720/720×480), bitrate (from 1Mbps to
    20Mbps), frame rate (24p/30p)
    b. Editor (next to “Add” icon)- click to set deinterlace, trim, crop, add effect, attach subtitles, etc
    3. Start transcoding MXF video to FCP
    Click “Convert” button to start converting MXF files to Apple ProRes
    MOV for FCP 6/7/X under Mac OS. Once the MXF to ProRes 422 conversion
    is done, you can transfer MXF footage into Final Cut Pro (X) for editing
    smoothly on Mac with ease.
    Source:How to import MXF files to Final Cut Pro with smooth editing
    [quote] jacknjchn.tumblr.com/post/76914947404/cant-import-mxf-footage-to-fcp-transcoding-mxf-to-fcp [/quote]

    You may refer to this step by step guide on how to convert MXF to Final Cut Pro more supported Apple ProRes or DV at http://www.idealshare.net/imovie-fcp/mxf-final-cut-pro.html
    It also applies to convert MXF to other video or audio format. It even applies to convert other videos like AVCHD, MOD, TOD, AVI, and MPEG etc to FCP format.

  • How to import music from an external hard drive to my itunes on my computer?

    how can import music from an external hard drive that i saved my itunes music to. i dragged the music from my hard drive to the itunes on my computer but the music does not play from my itunes. it does however play on my ipod. it gives me an error that the original can not be found and do i wish to locate it. i am thinking that i did not drag the right file or all of the files necessary .thanks. kevin

    To import music into your iTunes library on the computer go to iTunes>Help>iTunes Help>Add items to iTunes and follow the instructions

  • How to 'import xml' in my script

    Hi All,
    Below "Script 1" is working fine, now I want to call the '.xml' file which was placed in Template folder(see script code).
    How to import xml in 'New.indd' file("Line 27:-->var source = File(path + '/New.indd')".
    Please add import xml code in 'Script 1"
    Script 1:
    var path = Folder.selectDialog ("Select folder");
    if(path==null)
    exit();
    var files = path.getFiles(/\.(indd?|indt?)$/i);
    if(files==0)  
      alert("There is no 'indd'/'indt' file in your folder");
      exit();
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
    try
    myDocument = app.open(new File(files));
    MasterpageScriptLabel();
    TableCellStyleCreation();
    myDocument.save(new File(path + "/New.indd"));
    var folder = new Folder(path + '/Updated_Folder');
    folder.create();
    myDocument.close();
    var source = File(path + '/New.indd');
    var dest = new File(folder + '/New.indd');
    source.copy(dest);
    source.remove();
    catch(e)
    alert ("Your folder permissible only one file of 'INDD' or 'INDT' file");
    exit();
    function MasterpageScriptLabel()
    var myDoc=app.activeDocument;
    var myXMLElement=myDoc.xmlElements[0];
    if(myXMLElement.isValid)
        var myParentStory=myXMLElement.parentStory;
        var myTextContainers=myParentStory.textContainers;
        for(var i=0;i<myTextContainers.length;i++)
            myTextContainers[i].label="S_TF";
    var myDoc=app.activeDocument;
    var mspreads=myDoc.masterSpreads;
    for (i=0;i<mspreads.length;i++)
    if(mspreads[i].textFrames.length>1)
        var txfmlength=mspreads[i].textFrames;
        for (j=0;j<txfmlength.length;j++)
            if(txfmlength[j].nextTextFrame!=null)
            {txfmlength[j].label="S_TF";}
            if(txfmlength[j].previousTextFrame!=null)
            {txfmlength[j].label="S_TF";}
    function TableCellStyleCreation()
        var cestyle = myDocument.cellStyles;
        var array = ["TBL_COLH", "TBL_BODY"];
        var i = array.length;
        while(i--)
                try{
                    var style = myDocument.cellStyles.add();
                    style.name = array[i++];
                catch(e)
                    style.remove();
                    alert("'" + array[i-1] + "'"+ " Already exists in the document.")
                i--;
    main();
    function main(){
          var progress_win = new Window ("palette");
    var progress = progress_bar(progress_win, 2, 'Processing ... Completed');
        delay(1);
          progress.value = progress.value+1;
        delay(1);
        progress.parent.close();
    // delay function found here
    //found here http://www.wer-weiss-was.de/theme157/article1143593.html
      function delay(prmSec){
      prmSec *= 1000;
      var eDate = null;
      var eMsec = 0;
      var sDate = new Date();
      var sMsec = sDate.getTime();
      do {
      eDate = new Date();
      eMsec = eDate.getTime();
      } while ((eMsec-sMsec)<prmSec);
    * Taken from ScriptUI by Peter Kahrel
    * @param  {Palette} w    the palette the progress is shown on
    * @param  {[type]} stop [description]
    * @return {[type]}      [description]
    function progress_bar (w, stop, labeltext) {
    var txt = w.add('statictext',undefined,labeltext);
    var pbar = w.add ("progressbar", undefined, 1, stop);
    pbar.preferredSize = [300,20];
    w.show ();
    return pbar;
    by
    hasvi

    DECLARE @x xml=N'
    <Jobs>
    <Job>
    <JobCode>123</JobCode>
    <JobTitle>Years</JobTitle>
    <JobSubCode>
    <div>
    <Ol>
    <li>2001</li>
    <li>2002e</li>
    <li>2003</li>
    <li>2004</li>
    </Ol>
    </div>
    </JobSubCode>
    </Job>
    </Jobs>'
    SELECT J.c.value('(JobCode/text())[1]', 'varchar(10)') AS JobCode,
           J.c.value('(JobTitle/text())[1]', 'nvarchar(40)') AS JobTitle,
           L.c.value('.', 'varchar(10)') AS Years
    FROM   @x.nodes('/Jobs/Job') AS J(c)
    CROSS  APPLY J.c.nodes('JobSubCode/div/Ol/li') AS L(c)
    Erland Sommarskog, SQL Server MVP, [email protected]

  • How To import collections from Bridge cs6 To Bridge CC

    How To import collection from Bridge cs6 To Bridge CC??
    thx

    How To import collection from Bridge cs6 To Bridge CC??
    A collection is a bunch of aliases to the original files in their original place. If you have upgraded to CC on the same machine you can use the same collection, on a different machine it will possible not find the correct location again.
    On a Mac the path for the saved collections is : User / library/ application Support / Adobe/ BridgeCS6 / collections. Inhere are the saved collections showing the names you gave them. You can copy these collection files to the same location in Bridge CC.
    If you have a different machine you best first choose the collection and add a keyword with the name of the collection to all the files in this particular collection so you can use the find command to easily recreate the collection on your new machine.
    Maybe someone with more knowledge of Windows can show you the correct path but it should be something similar as on a Mac.

  • How to import logo to the clip and display it during the whole clip

    Hello All,
    I am using Adobe Premiere Pro CS4.
    I am doing a project now from various DVDs I've already made from a while ago.
    Now I will use these them in a commercial things so I want to add a logo to the clips to keep my rights ...etc.
    Here is the situation:-
    1) Importing the clip file into Adobe Premiere Pro CS4.
    2) Importing the logo image file I want to use.
    3) Right click the clip file and choose insert.
    Now I want to know how to import the image file to the clip so it is being there during the whole clip?
    I've tried several times to import it but found it displayed seperatey after or before the clip or in the middle while I want to be displayed during the whole movie.
    Also it is big when I displayed while I want to resize it to be in the top right of the clip.
    Thanks a lot
    Sorry for poor English.

    took longer than I thought...and this is only basic examples...can be finessed better....
    with more thought and time ...but this gives you the basic ideas..read bout track mattes and transparency..etc...
    samples
    white background ...with track matte
    becomes transparent..letters, black opaque, gray transluscent
    transparent background
    letters black and white are shown as is with no track matte
    transparent background with track matte...
    now white letters act as mask and allow image through only white letters

  • How to import or Open folders or files in imovie

    Hi I used to be a Windows User , Now a Happy Mac User However I have all my Clips that I use to make movies In 1 Folder all are AVI files , Now I can work out how to Import 1 Clip but how can I import the Complete Folder , Eg, I make U.water Movies , I have a Folder marked Sharks with 10 different Shark Clips in , Another Marked Clown Fish with 20 clips in ,
    I want to Import or Just Open to use the whole Folder with these Files In , If I have to do 1 at a Time it will take Forever as I have over 400 Clips of Various Marine Animals , and don't want to retype Name files etc again ..
    So if anyone can help me to Open or Import these so I can use as Is that would be great ( most other programs I tried you can just open the Folder from the Source ??)
    Any Help would be Great
    Thanks
    Mark

    I have all my Clips that I use to make movies In 1 Folder all are AVI files
    The first step is to ensure your AVI file containers hold iMovie '08 "edit" compatible files. For instance, an AVI file with M-JPEG video and Unsigned Integer audio would be compatible but an AVI file with M-JPEG video and adaptive PCD (ADPCM) would not be compatible. Once you know all the files in a given folder are compatible (or have been converted to any of the iMovie '08 compatible compression formats), then you can proceed to their actual import.
    I want to Import or Just Open to use the whole Folder with these Files In , If I have to do 1 at a Time it will take Forever as I have over 400 Clips of Various Marine Animals , and don't want to retype Name files etc again
    To import the files simply select the "Import Movies..." File menu option. When the window opens, create a new Event using an appropriate name (e.g., "Sharks" or "Clown Fish"). Now navigate to and open the source folder containing the files you wish to import to the newly named Event. If you want to import all of the files, simply Click on the first file in the folder and then Shift-Click the last file in the folder to select the first, last, and all intervening files for copy. If you only wish to import select files from the folder for "batch" import, then Click the first file and use Command-Click for each additional file you wish to add to your import list. Remember that while copying large lists of files may not be a time consuming process, thumbnailing them can take a long time depending on the compression formats involved.

  • How to import a XFDF file into a PDF?

    I need to import a XFDF file into a PDF through javascript.
    Manually in Acrobat 8.0 we are doing through the following steps.
    Comments->import comments->browser window open(select the corresponding xfdf file and then click select button)->After that save that pdf file. Kindly help me how to automate this process through programmatically.
    Thanks,
    Prabudass

    See your posts in the other forums.

  • How can Imported Package of components to be fully editable??

    hi people,
    with JDeveloper TP3
    How To Import a Package of components that are editable and display in the
    Application Navigator
    Fusion Developer’s Guide for Oracle Application Development 11g
    Chapter 35.7 Working with Libraries of Reusable Business Components
    Says:
    Tip: If you require components that are editable and display in the
    Application Navigator. Add additional business components from a
    directory that is not currently part of your project's source path, then
    open the Project Content page of the Project Properties dialog and
    add the parent directory for these other components as one of the
    directories in the Java Content list. In contrast to imported packages
    of components, additional components added to your project's source
    path will be fully editable and will appear in the Application
    Navigator.
    but i can't even change Control hints.
    with JDeveloper TP3
    How To Import a Package of components that are editable and display in the
    Application Navigator
    Fusion Developer’s Guide for Oracle Application Development 11g
    Chapter 35.7 Working with Libraries of Reusable Business Components
    say:
    To create the JAR files, in the Application Navigator right-click the Business
    Components project folder and choose Deploy and the ReusableComponents
    profile. A Deployment tab appears in the JDeveloper Log window that should display
    feedback like:
    ---- Deployment started. ---- Apr 28, 2007 7:04:02 PM
    Running dependency analysis...
    Wrote JAR file to ...\ReuseableComponents\deploy\ReuseableComponentsCSMT.jar
    Running dependency analysis...
    Wrote JAR file to ...\ReuseableComponents\deploy\ReuseableComponentsCSCommon.jar
    Elapsed time for deployment: less than one second
    ---- Deployment finished. ---- Apr 28, 2007 7:04:02 PM
    then If you require components that are editable and display in the
    Application Navigator Add additional business components from a
    directory that is not currently part of your project's source path, then
    open the Project Content page of the Project Properties dialog and
    add the parent directory for these other components as one of the
    directories in the Java Content list
    where i didn't find Project Content page of the Project Properties
    but i got
    Compiling...
    Context: selection=rootBusiness.jpr project=rootBusiness.jpr node=rootBusiness.jpr
    Validating Business Component: rootbusiness.rootBusiness
    copying rootbusiness/rootBusiness.jpx to output directory
    Validating Business Component: rootbusiness.entity.Dept
    copying rootbusiness/entity/Dept.xml to output directory
    Validating Business Component: rootbusiness.entity.Emp
    copying rootbusiness/entity/Emp.xml to output directory
    Validating Business Component: rootbusiness.entity.FkDeptnoAssoc
    copying rootbusiness/entity/FkDeptnoAssoc.xml to output directory
    Validating Business Component: rootbusiness.Service.rootAppModule
    copying rootbusiness/Service/rootAppModule.xml to output directory
    Validating Business Component: rootbusiness.view.DeptView
    copying rootbusiness/view/DeptView.xml to output directory
    Validating Business Component: rootbusiness.view.EmpView
    copying rootbusiness/view/EmpView.xml to output directory
    Validating Business Component: rootbusiness.view.FkDeptnoLink
    copying rootbusiness/view/FkDeptnoLink.xml to output directory
    copying rootbusiness/Service/common/bc4j.xcfg to output directory
    Updated file:/C:/JDeveloper/mywork/Root/rootBusiness/classes/META-INF/adfm.xml
    [10:16:25 ص] Successful compilation: 0 errors, 0 warnings
    and didn't find ReuseableComponentsCSMT.jar or ReuseableComponentsCSCommon.jar
    thanks
    Message was edited by:
    greenApple

    with JDeveloper TP3
    How To Import a Package of components that are editable and display in the
    Application Navigator
    Fusion Developer’s Guide for Oracle Application Development 11g
    Chapter 35.7 Working with Libraries of Reusable Business Components
    Says:
    Tip: If you require components that are editable and display in the
    Application Navigator. Add additional business components from a
    directory that is not currently part of your project's source path, then
    open the Project Content page of the Project Properties dialog and
    add the parent directory for these other components as one of the
    directories in the Java Content list. In contrast to imported packages
    of components, additional components added to your project's source
    path will be fully editable and will appear in the Application
    Navigator.
    but i can't even change Control hints.

  • How to import java Classes in report Builder 10g

    How to import java Classes in report Builder 10g .....
    Arshad

    Hello,
    To import the Java classes:
    Add your jar in the REPORTS_CLASSPATH
    Launch Reports Builder.
    Note:
    You must launch Reports Builder now so that the new REPORTS_CLASSPATH is used.
    Choose Program > Import Java Classes to display the Import Java Classes dialog box.
    Regards

  • Windows Mail - Thunderbird. Online help does not match program. How to Import?

    I'm attempting to follow the Thunderbird directions (https://support.mozilla.org/en-US/kb/switching-thunderbird#w_switching-from-windows-mail-or-windows-live-mail-to-thunderbird) online for Converting from Windows Mail (Not Live Mail) to Thunderbird. I'm at the Import Step. The instructions say:
    "In Thunderbird, go to Tools | ImportExport | Import all messages from a directory | Also from its subdirectories."
    Under Tools, there is an Import, but no ImportExport. When the Import option is chosen, it does not allow for a directory location, only what to import (Eveything, Mail, Contacts, etc.) When choosing "Import Everything" and pressing "Next" nothing is in the list to import. The "Next" button does nothing and the Cancel Button cancels the entire Import.
    Can someone explain (or point to a current and accurate article on) how to import all mail (with local mailboxes and file structures kept intact).
    Thanks.

    In the first paragraph of the section "Importing Windows Mail Messages", it states you must download and install the ImportExportTools add-on. Once installed, the relevant menu options will appear in TB.
    http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html

Maybe you are looking for

  • Strange file in Trash that just won't go away.

    Since installing Snow Leopard, I have a strange file in the Trash that I can't get rid of. It appears to be a zero KB "Alias" file with "unknown" permissions. At first glance it looks as if it's called \\\Õ\\.Õ\ but the diagonal lines are actually th

  • Windows 7 VERY slow browsing and creating folders

    Hi! I'm having a rather strange problem with Windows 7 RC.  I've noticed that browsing folders is generally slower than in WinXP, but still acceptable.  But lately I'm having a lot of difficulties moving files, creating folders, renaming folders and

  • The Dreaded Error #-34506

    I've spent a fair amount of time in the last 24-hours scouring through these forums attempting to find an answer to my iDVD troubles. Each time I attempt to "Save As Disc Image", I get "The error #-34506 was reported-". This is during the multiplexin

  • Error 4SNS/1/40000000:TWOP-128.000

    Helo. On my MacBook Air first generation with all update made, until few hours ago the wireless was fine. But during a connection I lost signal and the card was no more found. With the Apple Hardware Test (reboot with D) I found the error: 4SNS/1/400

  • Preferences - SQL*Plus: crash in 1.2.1.32-13 / Java 1.6.0_02

    I have the following crash when trying to access the SQL*Plus item in the Preferences menu: java.lang.NullPointerException      at oracle.jdevimpl.db.sqlplus.SqlPlusOptionsPanel.load(SqlPlusOptionsPanel.java:89)      at oracle.jdevimpl.db.sqlplus.Sql