Import and XMLImport Script

Hello

I have a confusion about importing and XMLImport script
We can use XMLImport and the two Import Script to load the page definitions IE the XML file. in MDS


What is the diff between them based on their uses?

Thanx

Import command is usually run from the premises it IE prompt CMD and importing XML we run unix server.

Thank you
-Anil

Tags: Oracle Applications

Similar Questions

  • Help with excel import and delete the page script

    Hello. I will try to make it as simple as possible. I have some data from excel (saved as delimited by tabs) that I need to import in a 5 PDF page. I use the script below to import, and it works fine. All import fields and records the individual (one for each record) PDF. However, I need to extend this functionality by removing some pages before it saves the document by looking at the different boxes. The code below is what I use to import the records.

    // specify the filename of the data file
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text file containing the data
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    var err = 0;
    var idx = 0;
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2) 
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf"); // saves the file
            idx++;
        }
    }
    

    As I said before you import works surprisingly well.

    My PDF consists of 5 pages (info-registration, p1 = Dir-contract = p0, p2 = contract ndarp-brand, p3 = takes-contract, p4 = agreement must be brand). My idea is that on the import of data, the script will look at a few check boxes and determine which contracts to remove on the PDF and then save. I wrote the syntax of which, in my view, what it should look like. I'm not a programmer and know just a little bit. I looked through the documentation and this is what I came with. I don't know how to combine to work. Here's the code I came up with that.

    var dir = this.getField("Associate Director"); // checkbox
    var aldir = this.getField("Alumni Director"); // checkbox
    
    var fac = this.getField("Facilitator"); // checkbox
    var alfac = this.getField("Alumni Facilitator"); // checkbox
    
    var oyb = this.getField("Optimize Your Brain"); //checkbox
    var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
    
    // Below are all the possible training options.
    if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:3, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:4})
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="Checked" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="Checked" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:2, nEnd:2})
    }
    
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="Checked" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    else if (dir.value=="" || aldir.value=="Checked" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages(none) // I realize this is incorrect. Just showing that this option results in no deleted pages.
    }
    
    else if (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="Checked" || poyb.value=="") {
        this.deletePages({nStart:1, nEnd:2})
    }
    else (dir.value=="" || aldir.value=="" || fac.value=="" || alfac.value=="" || oyb.value=="" || poyb.value=="Checked") {
        this.deletePages({nStart:1, nEnd:2})
    }
    

    How to combine these two so that I can create a document temp import my data, check the boxes to check off and delete the appropriate pages and save the file and then go to the next record? I got the first part done. It imports large and has the right, but I don't know what to do next. Thanks for any help!

    Or y at - it another way to do this?


    Michael

    Wow. Ok. I had it works beautifully. There was a lot of trial and error. Because the script as it was would have, would open the original PDF, delete the pages needed, then save the file. While it would be to go to the next record is missing pages in PDF and bomb to open. I hunted and searched for a way to do this. I found "this.insertPages" in the documentation. Finally, what worked was so move the "save under" in the service and put it under every variation of check. So now when checking the boxes, he performs the check, removes the mandatory pages, stops, insertions of back in deleted pages from the original file, leave the service and finally goes to the next record.

    Here is my final script:

    // This code looks at an excel (tab delimited) file, imports the records into a PDF form 10 Pages long.
    // Then checks a series of checkboxes and deletes the pages that aren't associated with first page.
    // After it deletes these pages it reinserts the deleted pages so it can do the checks for the next record in the (tab delimited) file.
    
    // variables for importing excel data
    var err = 0;
    var idx = 0;
    var fileName = "/Users/MacMike/Desktop/Test.txt";  // the tab delimited text
    var outputDir = "/Users/MacMike/Desktop/Dump/";    // make sure this ends with a '/'
    
    //Checking a bank of 6 checkboxes and determine which pages need to be deleted, save the file, and the insearch the deleted pages again.
    function seekandDestroy() {
        if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:6, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:5, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:6, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:9})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:9 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Checked" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Checked" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:3, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:2, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:3, nEnd:5 });
        }
    
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Off" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.deletePages({nStart:1, nEnd:5})
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
            this.insertPages({nPage:0, cPath:"/Users/MacMike/Desktop/TT Reg & Contracts.pdf", nStart:1, nEnd:5 });
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Checked" && aldir.value=="Off" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Checked" && poyb.value=="Off") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
        else if (dir.value=="Off" && aldir.value=="Checked" && fac.value=="Off" && alfac.value=="Off" && oyb.value=="Off" && poyb.value=="Checked") {
            this.saveAs(outputDir + this.getField("Full Name (First Last)").value + "-" + this.getField("Event Title").value + ".pdf")
        }
    }
    
    // Imports records does the above function then go the next record, all the while doing error reporting.
    while (err == 0) {
        err = this.importTextData(fileName, idx);    // imports the next record
    
        if (err == -1)
            app.alert("Error: Cannot Open File");
        else if (err == -2)
            app.alert("Error: Cannot Load Data");
        else if (err == 1)
            app.alert("Warning: Missing Data");
        else if (err == 2)
            app.alert("Warning: User Cancelled Row Select");
        else if (err == 3)
            app.alert("Warning: User Cancelled File Select");
        else if (err == 0) {
            var dir = this.getField("Associate Director"); // checkbox
            var aldir = this.getField("Alumni Associate Director"); // checkbox
            var fac = this.getField("Facilitator"); // checkbox
            var alfac = this.getField("Alumni Facilitator"); // checkbox
            var oyb = this.getField("Optimize Your Brain Site Coordinator"); //checkbox
            var poyb = this.getField("DVD and Workbook Previously Purchased"); // checkbox
            seekandDestroy(dir, aldir, fac, alfac, oyb, poyb); //performs the above function
            idx++; //goes to next record
        }
    }
    
  • Using the script for import and export

    Hello

    Can any such a me what is the use of the script for import and export.

    After you move the pages from / to server what is the need to import / export command.

    export/oracle/apps/ap/setup/webui/customizations/site/0/SetupPG - rootdir < destination path > - user < database username > - password < database password > - dbconnection "(description = (address_list = (address = (community = tcp.world) (protocol = tcp) (host = < host name > (port < port id > =))) (connect_data = (sid = < sid >)))".) "

    Thanks in advance,
    Roselyne

    Hi Flo,

    Page and the region are stores in database import/export we really want pages/areas to store in the database.

    Thank you
    -Anil

  • Is it possible to place a clip imported chronology by script or plug-in?

    Is it possible to place a clip imported chronology by script or plug-in?

    I can't find any indication as to the control of a clip on the timeline.

    The example PProPanel demonstrates how to drag and drop a file reference in the Panel, in the project Panel or in a timeline.

  • Concerning the import and export of Table

    Hi team,

    My question is what is quick way to export and import the data in the table because most of the time I import and export data activate I usually

    If data less than 10 hundreds I'll use sql developer only export to insert the . script

    But my question if we lack 17 records dealing with import and export a table

    Note:-If we do not have conditional sys.

    Current version is using 9i and 10g

    Thank you

    Suman

    Data pump works only on 10g:

    ORACLE-BASE - Oracle Data Pump (expdp and impdp) in Oracle Database 10g

    Have a look here for more options 'pre - 10 g':

    Ask Tom & quot; export and import the best option to use in... & quot;

  • Symbol of the degree and the Scripts in XML format

    I'm more of a designer and really don't know that a lot of code. I know just enough XML to use in InDesign, the thing is that I can't find a way to use the degree symbol and under scripts in data XML that I import into InDesign. Codes HTML as & deg and & #176 do not work, InDesign was told that they are "malformed". I use UTF - 8. Is there an another encoding I use allows me to use symbols and clues?

    If you use utf-8 all simply but the character of real in the data.

    name of character entities such as

    °
    

    must be declared in your dtd.

    with character entities such as

    ° or °
    

    work correctly.

    Kind regards

    Gregor

  • I'm trying to import and backup/restore/Choose file... / after backup correctly and I see the file, but there is no JSON extension. What can I do?

    I'm trying to import and backup/restore/Choose file... / after backup correctly and I see the file, but there is no JSON extension. What can I do?

    I backed up my favorites using 'import and backup/Backup' on an external HD, installed Windows 10 and went to restore my bookmarks and noticed the file named "Firefox bookmarks-2015-09-04"had no extension and does not work."

    Please advise! Thank you! Sincerely, s

    If you add the .json extension, it works then? Why people who design browsers or extensions them do create files with no extension name, in spite that these extension names are essential to make the files can be restored? I could never understand that.

  • I need keystrokes to import and export bookmarks

    I'm blind and use programs output speech to run my windows 8.1 machine and of course impossible to use a traditional mouse. I arrow and tab through each accessible section of the menu of bookmarks, but also with key applications and could find no way that focuses on the key to the achievement of each task. I also tried her curse and swear!

    Hi Eggman,

    This seems incredibly frustrating. The following worked for me:

    1. launch Firefox and press Tab six times to access the bookmarks menu. Press ENTER.

    2. press Alt then arrow up once, and then the right arrow twice to reach the menu import and backup of bookmarks.

    Once you are in the menu import and backup, it's just a matter of selecting the desired option (import bookmarks HTML, export bookmarks in HTML format, or to import bookmarks from another browser).

    I hope that this will take you quite far as your program of speech output can guide you the rest of the way.

  • My Favorites has not imported and is absent, how to recover?

    How can I find 'My Favorites' and bring them into Firefox?
    They don't seem anywhere.

    If there are problems with importing IE bookmarks in Firefox, then export favorites in Internet Explorer to a HTML file and import this file in the Firefox Bookmarks Manager.

    If you don't have the menu bar in Internet Explorer, and then right-click on the toolbar above to activate the menu bar.

    • Export Favorites in Internet Explorer to a file (bookmarks.html) HTML:
      File > import and export
    • Import HTML file in Firefox:
      Bookmarks > show all bookmarks > import and backup > import bookmarks HTML

    See "Import from another browser" and "import from file":

  • Rotation of the screen with Automator and a script

    I have no knowledge whatsoever about scripts, coding or automator. I continue to read discussions about the issue, but I don't understand them. It would be a great help for me if someone please explain how to create a kind of keyboard shortcut that changed the rotation of the screen (the own macbook screen, not an external) using automator and a script on a Macbook Air running OS X El Capitan 10.11.2.

    Is this possible?

    Thank you in advance.

    One option is to use the utility command line fb - turn in Automator service and assign a keyboard shortcut. Download the GitHub source fb-rotation, compilation, following the indications on GitHub and output the binary to usr; or download a binary compiled and move to usr/local/bin.

    Create an Automator service, set the options "Service receives no entry in any application", add an action to run the Shell Script and set the options as "Shell: / bin/bash ', ' Pass entry: to stdin.  Type the command rotation fb for the desired degree of orientation of the screen such as ' / usr/local/bin/fb-rotation - d 0 - r 180 ' 180 ° on the main screen. Register the service under a name.

    Go to  > System Preferences > keyboard > shortcuts > Services. Highlight the service you created, select it, click "none" and create a shortcut using a unique combination of keys. Create separate services of Automator for the additional screen orientations. Quit the system preferences when you are finished.

    Tested with OS X 10.10.5 Yosemite and El Capitan 10.11.3

  • How to restore the bookmarks using a Bookmarks.json file, but without going through an import and backup button?

    When I open the Show all bookmarks, it is not an option import and backup.

    Someone at - it other suggestions on who to restore my bookmarks with the .json file?

    Thank you.

    28 Firefox
    Mac OS 10.6.8

    Import & Backup is the third button in the toolbar in the library beside the organize and buttons views.

    In bookmarks (library) Manager is a tool bar with back and next button and three other buttons (organize, view, import, and backup).

    • The first button (gear) is organizing with base change the menu items for the bookmarks
    • The second button is the button in the view which allows you to change the sort order for the visualization of the purpose (sort is not permanently).
    • The third button (Star) is the import and backup button that allows to save and restore a JSON backup and import and export an HTML backup and import bookmarks from other browsers.

    Place each button to display the ToolTip or click on each one to see what they do.

  • After downloading the 23.0.1 version I've lost all the history, but no bookmarks. How can I recover ancient history? Recovery of "import and backup" does not help

    My story memorable and kept going back quite a few months. After the release of Firefox for 23.0.1 I lost all my history and Firefox keeps only the websites visited once the new version has been installed. My favorites were selected. I tried to get back in "Import and backup", but it goes back only to the date of the new facility. I tried places.sqlite "Roaming", but there is only one with the current date. Is there a way to recover the lost history? Why Firefox was losing it? It's going to happen averytime that updates Firefox?

    Manually back up your bookmarks. If you have used the 'import', you have already lost some information by overwriting. As a matter of course you should always save current bookmarks manually before using any restorations.

    This way you can make sure you are able to restore the current set. Your backup .json file put a safe off-trail program or Firefox profile. The desktop of Windows or the removable media would be appropriate.

    Firefox creates a bookmark, but does nothing about backup history. Fortunately Windows probably backup previous versions of your files places.sqlite and this is the database with the history and bookmarks in it. See if you can recover a recent version of this, it will restore your story up to the date of the restored file.

    Then import your latest bookmarks from anywhere where they were rescued. Import replaces the slightly older bookmarks from the Windows file.

    You my wish also can install and run the addon places maintenance.

    That can be used to check and repair the places.sqlite database. It will give a brief report. Note If the places.sqlite runs out of space, he begins removing history.

    In the future you my wish to regularly create occasional backups of your profile or at least your places.sqlite

  • Where can I download the latest version which allows images and java script off?

    Because of my connection is often slow, I have the option to turn off "automatically download images" and Java script. 23 Firefox doesn't have these options. Where can I download version 22 or whatever the latest version is that these permitted options?

    Thank you

    There is also settingsanity

  • There is no "Import and backup" button in "show all bookmarks".

    I try to import bookmarks from an HTML file, using the isntructions to https://support.mozilla.com/en-US/kb/Importing%20Bookmarks%20from%20an%20HTML%20File?as=aaq#os=linux & browser = fx7

    I click on bookmarks-> show all bookmarks.

    The next step, said "from the toolbar in the library window, click on import and backup, and then Import Bookmarks in HTML... "

    However, I don't see anything that says "import and backup". I use Firefox 7.0.1 on Ubuntu/service Ocelot, recently updated.

    Ubuntu 11. XX shows the window menus in the control bar at the top of the screen with the switch to the window of the Unit Manager.

    Click bookmarks/view all bookmarks, and then move your mouse to the upper left corner to the Firefox Web browser.

    You will get a pop up menu (Organization, views and import and backup).

  • No import and backup in Firefox 7.0.1 for Ubuntu canonical - 1.0

    After spending and update Ubuntu Ubuntu 11 and with the new Firefox 7.0.1 for Ubuntu canonical 1.0, I was going to import the backup of bookmarks to html to see that there is no way to import and backup of bookmarks. What is the problem here?
    I'd give Tech info there.

    How can I restore saved bookmarks when there is no way to do it?

    Ubuntu 11.04 displays the window menus in the control bar at the top of the screen with the switch to the window of the Unit Manager.

    Click bookmarks/view all bookmarks, and then move your mouse to the upper left corner to the Firefox Web browser.

    You will get a pop up menu (Organization, views and import and backup).

Maybe you are looking for

  • 6 s iPhone shuts off and won't turn on

    Hi, my iPhone 6 just off himself to 80% battery. I tried to turn it on, but only an gray Apple came and it stayed like that for about 20 min and it heats up but it does not come. No idea what would cause that? Or how I could turnout on?

  • How unshrink page?

    Sometimes when I touch the mouse also shrink the web page. It is still the size of the computer screen, but all the writing is smaller. How can I unshrink that?

  • How to import a profile from another machine under Windows 7

    I have a new Windows 7 computer and the hard drive from my old computer (XP) the old hard drive is not bootable, but I can see my old Firefox profile. I did export profile. I would ideally like to just copy that the old profile for my new Firefox set

  • Qosmio X 770: not able to create pictures and videos in 3D using the 3D V1 Web camera

    I am unable to record 3D images or video with the V1 3D Toshiba Web Camera integrated on my X 770 11 C portable 3D! Normal recording 2D.I install additional software for 3D recording? Post edited by: jacques.vsk

  • Error HP4620

    I have an OfficeJet HP4620.  The unit is two years old.  After the unithas been turned on for about an hour and 15 minutes I get error "turn the power off, t. I have: 1.) updated the firmware. 2.) connected the printer to a socket without other devic