Help! How do I re-map my main drive?

I switched on my Powerbook this morning to be welcomed by the 'new Mac' screen, complete with registration form. None of my data was accessible at all. It has taken me a while to discover what happened - after much quizzing I've discovered that my young niece, the last person to use it, changed the name on the hard drive icon to her name, as a joke. She thought it would make it look as if the computer was hers. What it's done is to lose all the mappings to my files! I've tried just changing it back to what it was and re-booting again, but I still get the 'new Mac' screen. Does anyone know how to remap that drive, please? I have work to do, and I can't access anything at the moment! I'd be very grateful for any suggestions.
Thanks.
- Kitty.

Thanks for your help, Cornelius. I was struggling to find advice in the Mac Help topics on my computer because I don't always know the correct term to search on. Eventually I did find it, and the solution was simple:
"To correct a home folder whose name has been changed:
1. Locate the User's folder on your hard disk and open it.
2. Select the home folder with the original short user name and the home icon. This folder usually contains a Desktop folder and a Library folder. Add "_new" to the end of the name so that you can distinguish it later.
3. Select the regular folder that has the name you used when you changed your original home folder. This folder should contain items you would expect to find in your original home folder, such as your Pictures folder, Documents folder, and so on. Change the name of this folder back to the original short user name.
4. Log out, then log in again and verify that items are back where they belong."
It worked very well, and the whole thing is a useful lesson learned - I need to keep a closer eye on what my niece is doing with my Powerbook!
Thanks again.
- Kit.

Similar Messages

  • Please Help::How to display a Map with LIsts as Keys and Values using JSTL

    Hi,
    I need some assistance on how to display a Map in JSP using struts or core JSTL. I have a HashMap which has a List of keys and each key maps to a value of an ArrayList.i.e I have an ArrayList of taxCodes and each taxCode maps to a value of taxDetails which is an ArrayList of details for for that particular taxCode. I have some trouble to display each taxCode then display taxDetails for each taxCode. Here is my code below:
    OrderDetails.java
    package orderitems;
    import java.sql.*;
    import java.util.*;
    public class OrderDetails {
        private LineOder lineOrder;
        private Map lineItems;
        //returns an item number, key_item, from its unique keys
        public int getItemNumber(int key_item, String key_year,
                String key_office,String key_client,String key_company){
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            int itmNum = 0;
             * key_item a unique number for an item.
             * key_year,key_office,key_client,key_company unique keys
             * for each order where this key_item is taken
             * from.
            String select = "SELECT key_item FROM "+
                    Constants.WEB_TABLE +" WHERE key_item = " + key_item +
                    " AND key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company +"'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                if(rst.next()){
                    itmNum = Integer.parseInt(rst.getString("key_item"));
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return itmNum;
        //get a list of item number(item codes)
        public List getAllItemNumbers(String key_year,
                String key_office,String key_client,String key_company){
            List itemNumbers = new ArrayList();
            LineItem itemNumber = null;
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            String select = "SELECT key_item FROM "+ Constants.WEB_TABLE +
                    " WHERE key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company + "'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                while(rst.next()){
                    itemNumber = new LineItem();
                    itemNumber.setKey_item(Integer.parseInt(rst.getString("key_item")));
                    itemNumbers.add(itemNumber);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return itemNumbers;
        //get a list of tax codes
        public List getAllTaxCodes(int key_item, String key_year,
                String key_office,String key_client,String key_company){
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            ItemTax taxCode;
            List taxCodes = new ArrayList();
            int itemNum = getItemNumber(key_item, key_year,
                    key_office,key_client,key_company);
            String select = "SELECT key_tax_code FROM "+
                    Constants.WEB_TABLE +" WHERE key_item = " + itemNum +
                    " AND key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company +"'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                while(rst.next()){
                    taxCode = new ItemTax();
                    taxCode.setKey_tax_code(rst.getString("key_tax_code"));
                    taxCodes.add(taxCode);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return taxCodes;
        /////This methode returns a Map which am trying to display in JSP
        //use tax code to get tax details
        public Map getItemTaxDetails(String key_year,String key_office,
                String key_client,String key_company,int key_item){
            ItemTax taxDetail = null;
            List taxDetails = new ArrayList();
            List itemTaxCodes = new ArrayList();
            Map itemTaxDetails = new HashMap();
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            //get a list of all tax codes of an item with a
            //given item number
            itemTaxCodes = getAllTaxCodes(key_item,key_year,
                    key_office,key_client,key_company);
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                for(Iterator taxCodeIter= itemTaxCodes.iterator(); taxCodeIter.hasNext();){
                    ItemTax itemTaxCode = (ItemTax)taxCodeIter.next();
                    String taxCode = itemTaxCode.getKey_tax_code();
                    String select = "SELECT tax_type,tax_value," +
                            "tax_limit_val FROM "+ Constants.WEB_TABLE +
                            " WHERE key_item = "+ key_item +
                            " AND key_year = '" + key_year + "'" +
                            " AND key_office = '" + key_office + "'" +
                            " AND key_client = '" + key_client + "'" +
                            " AND key_company = '" + key_company +"'" +
                            " AND key_tax_code = '" + taxCode + "'";
                    rst = stat.executeQuery(select);
                    while(rst.next()){
                        taxDetail = new ItemTax();
                        //records to be displayed only
                        taxDetail.setKey_item(Integer.parseInt(rst.getString("key_item")));
                        taxDetail.setTax_value(rst.getString("tax_value"));
                        taxDetail.setTax_limit_val(Float.parseFloat(rst.getString("tax_limit_val")));
                        //////other details records ommited//////////////////////////
                        taxDetails.add(taxDetail);////An ArrayList of taxDetails for each taxCode
                     * A HashMap which has all taxCodes of an item as its keys
                     * and an ArrayList of taxdetails as its values.
                     * I return this for display in a JSP.
                    itemTaxDetails.put(taxCode,taxDetails);
                System.out.println();
                System.out.println("*********CONSOLE OUTPUT*************");//display on console
                Set set = itemTaxDetails.keySet();
                Iterator iter = set.iterator();
                System.out.println("Key\t\tValue\r\n");
                while (iter.hasNext()) {
                    Object taxCode=iter.next();
                    Object details=itemTaxDetails.get(taxCode);
                    System.out.println(taxCode +"\t" + details);
                System.out.println("************************************");
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return itemTaxDetails;
        //details of an item with all its taxes
        public List getAllItemDetails(String key_year,
                String key_office,String key_client,String key_company){
            List lineItems = new ArrayList();
            List itemNumbers = new ArrayList();
            Map taxDetails = new HashMap();
            LineItem item = null;
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            //A list of all item numbers in the declaration
            itemNumbers = getAllItemNumbers(key_year,
                    key_office,key_client,key_company);
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                for(Iterator itemIter= itemNumbers.iterator(); itemIter.hasNext();){
                    LineItem itemNum = (LineItem)itemIter.next();
                    int itemNumber = itemNum.getKey_item();
                    String select = "SELECT item_description,item_mass," +
                            "item_cost" +
                            " FROM " + Constants.WEB_TABLE +
                            " WHERE key_year = '"+key_year+"'" +
                            " AND key_office = '"+key_office+ "'"+
                            " AND key_client = '"+key_client+ "'"+
                            " AND key_company = '"+key_company+ "'"+
                            " AND key_item = " + itemNumber;
                    rst = stat.executeQuery(select);
                    while(rst.next()){
                        item = new LineItem();
                        item.setItem_description(rst.getString("item_description"));
                        item.setItem_mass(Float.parseFloat(rst.getString("item_mass")));
                        item.setKey_item(Integer.parseInt(rst.getString("item_cost")));
                        //////other details records ommited//////////////////////////
                        /* A HashMap of all itemTaxeCodes as its keys and an
                         * ArrayList of itemTaxedetails as its values
                        taxDetails = getItemTaxDetails(item.getKey_year(),item.getKey_office(),
                                item.getKey_client(),item.getKey_company(),item.getKey_item());
                        //item tax details
                        item.setItmTaxes(taxDetails);
                        //list of items with tax details
                        lineItems.add(item);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return lineItems;
        public Set getOrders(String key_year,String key_office,
                String key_client,String key_company){
            List lineItems = new ArrayList();
            Set lineOrders = new HashSet();
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            LineOder lineOrder = null;
            String select = "SELECT * FROM " + Constants.WEB_TABLE +
                    " WHERE key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company + "'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                while(rst.next()){
                    lineOrder = new LineOder();
                    lineOrder.setKey_year(rst.getString("key_year"));
                    lineOrder.setKey_office(rst.getString("key_office"));
                    lineOrder.setKey_client(rst.getString("key_client"));
                    lineOrder.setKey_company(rst.getString("key_company"));
                    ////list of items with all their details
                    lineItems = getAllItemDetails(lineOrder.getKey_year(),lineOrder.getKey_office(),
                            lineOrder.getKey_client(),lineOrder.getKey_company());
                    //setting item details
                    lineOrder.setItems(lineItems);
                    //a list of order with all details
                    lineOrders.add(lineOrder);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return lineOrders;
    Controller.java
    package orderitems;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Controller extends HttpServlet {
        private Map taxDetails = new HashMap();
        private OrderDetails orderDetails = null;
        protected void processRequest(HttpServletRequest request,
                HttpServletResponse response)throws
                ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            String key_year = "2007";
            String key_office = "VZX00";
            String key_company = "DG20";
            String key_client =  "ZI001";
            int key_item = 1;
            String nextView = "/taxdetails_list.jsp";
            orderDetails = new OrderDetails();
            taxDetails = orderDetails.getItemTaxDetails(key_year,key_office,
                    key_company,key_client,key_item);
            //Store the collection objects into HTTP Request
            request.setAttribute("taxDetails", taxDetails);
            RequestDispatcher reqstDisp =
                    getServletContext().getRequestDispatcher(nextView);
            reqstDisp.forward(request,response);
        protected void doGet(HttpServletRequest request,
                HttpServletResponse response)throws
                ServletException, IOException {
            processRequest(request, response);
        protected void doPost(HttpServletRequest request,
                HttpServletResponse response)throws
                ServletException, IOException {
            processRequest(request, response);
    taxdetails_list.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <title>Simple Tax Detail Diaplay ::</title>
            <link rel="stylesheet" type="text/css" href="imgs/orders.css"/>
        </head>
        <body>
            <jsp:useBean id="taxDetails" class="java.util.HashMap" scope="request"/>
            <table>
                <c:forEach items="${taxDetails}" var="hMap">
                    <tr>
                        <td><c:out value="${hMap.key}" /></td>
                        <!--td><%--c:out value="${hMap.value}" /--%></td-->
                    </tr>
                </c:forEach>
            </table>
        </body>
    </html>am displaying taxCodes(in this case i have VAT and ICD) fine but cant figure out how to display a list of value for each taxCode.Here is the output am getting
    both in my JSP and on the console:
    *******************************CONSOLE OUTPUT****************************
    Key          Value
    ICD     [orderItems.ItemTax@13e6226, orderItems.ItemTax@9dca26]
    VAT [orderItems.ItemTax@13e6226, orderItems.ItemTax@9dca26]
    Edited by: aiEx on Oct 8, 2007 6:54 AM

    hi evnafets,
    yes i need a nested for loop.I have tried your advice but my bean properties are not found.Am getting this error:
    javax.servlet.ServletException: Unable to find a value for "key_item" in object of class "java.lang.String" using operator "."
    I have tried this as stated earlier in the post:I have tried to make the method getItemTaxDetails return a List and get the returned list value as taxDetails. I then tested to display this list on JSP and its displaying fine.
    public List getItemTaxDetails(String key_year,String key_office,
                String key_client,String key_company,int key_item){
            ItemTax taxDetail = null;
            List taxDetails = new ArrayList();
            List itemTaxCodes = new ArrayList();
            Map itemTaxDetails = new HashMap();
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            //get a list of all tax codes of an item with a
            //given item number
            itemTaxCodes = getAllTaxCodes(key_item,key_year,
                    key_office,key_client,key_company);
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                for(Iterator taxCodeIter= itemTaxCodes.iterator(); taxCodeIter.hasNext();){
                    ItemTax itemTaxCode = (ItemTax)taxCodeIter.next();
                    String taxCode = itemTaxCode.getKey_tax_code();
                    String select = "SELECT tax_type,tax_value," +
                            "tax_limit_val FROM "+ Constants.WEB_TABLE +
                            " WHERE key_item = "+ key_item +
                            " AND key_year = '" + key_year + "'" +
                            " AND key_office = '" + key_office + "'" +
                            " AND key_client = '" + key_client + "'" +
                            " AND key_company = '" + key_company +"'" +
                            " AND key_tax_code = '" + taxCode + "'";
                    rst = stat.executeQuery(select);
                    while(rst.next()){
                        taxDetail = new ItemTax();
                        //records to be displayed only
                        taxDetail.setKey_item(Integer.parseInt(rst.getString("key_item")));
                        taxDetail.setTax_value(rst.getString("tax_value"));
                        taxDetail.setTax_limit_val(Float.parseFloat(rst.getString("tax_limit_val")));
                        //////other details records ommited//////////////////////////
                        taxDetails.add(taxDetail);////An ArrayList of taxDetails for each taxCode
                     * A HashMap which has all taxCodes of an item as its keys
                     * and an ArrayList of taxdetails as its values.
                     * I return this for display in a JSP.
                    itemTaxDetails.put(taxCode,taxDetails);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            //return itemTaxDetails;
            return taxDetails;
        }And my JSP
    taxdetails_list.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <link rel="stylesheet" type="text/css" href="imgs/orders.css"/>
        </head>
        <body>
            <table>
                <c:forEach var="curRecord" items="${taxDetails}" varStatus="rowCounter">
                        <c:choose>
                            <c:when test="${rowCounter.count % 2 == 0}">
                                <c:set var="rowStyle" scope="page" value="odd" />
                            </c:when>
                            <c:otherwise>
                                <c:set var="rowStyle" scope="page" value="even" />
                            </c:otherwise>
                        </c:choose>
                        <tr class="${rowStyle}">
                            <td>${curRecord.key_item}</td>
                            <td>${curRecord.tax_value}</td>
                            <td>${curRecord.tax_limit_val}</td>
                        </tr>
                    </c:forEach>
            </table>
        </body>
    </html>I can't see where am going wrong even with your advice.Please help.
    Thnx.

  • HOW TO MAKE AN IMAGE OF MAIN DRIVE

    How to save data from a failed boot drive. I have a 20” iMAC that is about five years old and have worked flawlessly until about two weeks ago when the Main Drive partition started to fail. I used the Disk Utility in an attempt to verify and repair the drive to no avail.  The error message advised me to reformat the drive. Finally the OS (Mountain Lion) would not even recognize the unit.
    The Apple tech checked the unit  and said my hard drive had failed and had to be replaced. They replaced the original 320Gb Western Digital Intel, WD3200AAJS, with a new 500GB drive.
    In my attempt to retrieve as much data as possible from the old drive I purchased a “Thermaltake” external hard drive docking station. I can now see the old drive and tried again to verify and repair the unit to no avail.
    I can copy data but was warned by the Disk Utility that I would not be able to change or delete any data.
    I have an external Toshiba 500GB USB drive with 397.74 GB free. The data on the main partition of the old hard drive is 209.25 GB of OS X, application and data.
    I need to know what is the best method to back up all data so it can be restored after the startup partition of the old drive have been reformatted.
    Any advice will be appreciated.
    Cwashinjr

    Thanks  aBrody, It took me some to get back to this problem seeing I had a workable new HD with OSX. But the data was still on the old drive.I did get most of the date off by copying individual folders. Than God the drive didn't fail. But I lost information enbeded in such application like iPhoto, iMovies, contacts, etc. Every time I tried to access these application from the old drive they came up empty. So the only photos and movies I could recover was the one I had physically placed in a different folder, not the default folder for that application.
    Thanks for your help.
    Now I have to set up old drive by partitationing and formatting it. I will only use it, for temp storage and with items that I can affort to loose, just incase itfails again.
    Cwashinjr

  • How to move the OS from main drive to new ssd in opticals place

    Ok I just took out the dvd player that was non operational for 2 years . Replaced it with a new 250Gig SSD. Now I would like to boot my mac off this drive instead of the almost full 500 gig hdd. Can this be done ? If so how do I do this ? Get the OS(yosemite) from the main drive (hdd) to the new drive (ssd) which is suppose to be a lot faster on boot than a hdd , correct or not? Please advise if this is possible and if so how to migrate the OS to the ssd...
    Thanks in advance.
    Oh and forgot to ask now that i am using the Yosemite OS can I upgrade my
    mid 2009-2010 MBP 13 inch
    currently running
    2.53Ghz C2D
    8 GB 1067 MHz DDR3 ....would like to upgrade this to 16 gigs of ram (8x2) ..Is this possible?
    Running Yosemite 10.10.2 on a 500gig hdd.
    again any assistance is appreciated.
    Rogerwilco357

    You could probably use a clone utility to copy a bootable system to the new SSD,
    but not sure if you shouldn't use Carbon Copy Cloner (said to be able to copy
    the Recovery partition content, too?) instead of SuperDuper. The extra feature is
    worth checking into, to see if either or both can do this. Also to see if you have to
    pay to get the fully working version.
    With the content initially installed into the original HDD, moved over (copy/clone)
    into the SSD, then you can test it to see if it would work to run the computer. But
    you would need to have that additional partition that allows you to boot Recovery
    to use the OS X Utilities and also be able to restore a system via internet, etc.
    About the RAM upgrade. The model(s) you say you have, a Mid 2009-2010, are
    two different ones. The Mid-2009 cannot be upgraded to 16GB RAM, while the
    Mid-2010 model can use two 8GB RAM chips for 16GB upgrade. So, if you can
    correctly identify the computer you have, then the answer may be found. OR,
    you could go to crucial.com site and let it load the simple item so it can tell you
    what the upgrade RAM should be, and match your computer to their RAM part.
    Of course, their part uses an industry standard for Mac, of high quality; another
    source of quality RAM would be from OWC macsales.com.
    Both of these different questions have an answer, but will require some tedium
    to get the correct information, method, and hopefully a workable resolution...
    Good luck & happy computing!

  • Help : How to test interface mapping in n:1 scenario

    I have a scenario two message interfaces==> one message interface.
    Then I new one interface mapping, and choose two source interfaces, one target interface. Also filled the mapping program.
    But when switch to the test tab, there is no display about the source and target message.
    How to do the test in this kind of scenario?
    Thanks a lot!
    Edited by: kiki qin on Oct 28, 2008 2:24 PM

    Hi
    First check in Message mapping first if you have one.
    Secondly when you select source or target message while developing message mapping did u get message like No objects found or something.
    It should show either error or source message when you test interface mapping in any case.
    Thanks
    Gaurav

  • How do I Un-partition my main drive?

    I have a Crucial 512 GB SSD.
    I partitoned it a few months ago to make (2) 256 GB drives. Today, I deleted the 2nd partition, and now Disk Utility is seeing the 2nd partition as Free Space.
    What I'd like to do is get it back to its original 512 GB state. (1 drive).
    Although, I want to keep all the info on my main partition 1 drive. In order words, I don't want to re-partition the drive, I want to un-partition the 2nd drive.
    How do I do this?
    Thanks!

    Hi Grant,
    Everything's backed-up! :-)
    I can't drag the edge and I can't type a new larger value in the size box. It won't let me.
    Here's a pic.
    The Home SSD 10.8 is what I want to keep, and I want to merge the Free Space into it. I tried booting up via another system, but it wouldn't work either. Is this not doable?
    Thanks again!

  • How do i re-map my CD drive?

    hey. i have the latest iTunes and a Dell.
    i have 2 drives. D for Dvd drive and E for CD drive.
    my iTunes doesnt recognize any drives.
    it always says the drives are missing and re-install it before i can open up itunes, and i REALLY want to burn a CD to listen to, so, is there anyway to re-map it or to target it to my E drive or something to find the path?
    do you understand what i mean?
    thanks SO much in advanced!

    heres 2 pix and text 4 u.
    http://tinypic.com/view.php?pic=33f6z5j
    http://tinypic.com/view.php?pic=29eoozm
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Computer Corporation Dimension 8200
    iTunes 7.1.1.5
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    Found aspi32 running.
    Current user is an administrator.
    Video Display Information:
    NVIDIA RIVA TNT2 Model 64
    NVIDIA GeForce4 MX 420
    Connected Device Information:
    DiskDrive, MAXTOR 6L040J2, Bus Type ATA, Bus Address [0,0]
    CDROM, HL-DT-ST CD-RW GCE-8400B, Bus Type ATA, Bus Address [1,0]
    CDROM, LITEON DVD-ROM LTD163, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Failed loading CD / DVD drives, error -43. Try doing a repair install on iTunes from the "Add or Remove Programs" control panel.

  • Please help, how to install a touchpad or touchmouse driver on Window 7 64bit

    Hi anyone can give me an idea, I install a power plan assistant and install touchpad ++ for my window 7 64 bit, but it say
    your trackpad hardware is not support yet
    you have a new generation of apple macbook Pro/ Air than the last generation trackpad++supports right now ( it's Mid 2011 )
    any idea or anyone can tell me how to make a trackpad work on my PC?? also install a Binary_MultiTouchMouse-binexe  still not work =)
    ( I have touchpad and touchmouse )
    thanks

    By emailing the photo to yourself from within iPhoto, you can get a choice of four different sizes (small, medium, large and original). Whichever one is closest to the size you're looking for, you can use that option and, when you receive the email message, save the attached image. But that's certainly not an elegant solution, never mind an exact one. In short, neither that method nor the Export command allows you to specify both a resolution and a file size in KB or MB. There are many other photo editing applications that offer better control over those attributes than iPhoto does. I recommend that you simply export copies of your pictures from iPhoto at original size, then open them in a different program and fine-tune the resolution and JPEG compression settings to achieve whatever combination of resolution and file size you need.
    Message was edited by: eww

  • Help- how to password protect an external hard drive?

    I'm just stuck. There must be a way to encrypt or password protect an external hard drive. No?

    The easiest way is to make an encrypted disk image of the folder contents with Disk Utility. Go to Disk Utility's File menu -> New -> Disk Image from Folder. There you can pick an encrypted disk image. Once you have made that image, delete the folder that it came from and leave the image behind. Mind you, there is always the risk you might lock yourself out permanently from that data if the image becomes corrupted. You are safer keeping the external hard disk in a physically safe place when not in use.

  • Sub Bank accounts mapping with main Bank account

    Bank accounts
    Hi
    How can we will map with main bank account to sub bank accounts.
    Example; My main bank account: 1111, and
                              Sub bank account :  2222 ( Deposit account)
                              Sub bank account: 3333 (Cheque issue account)
    Regards
    PVC

    Hi
    Bank account-  This is the G/L account that you provide at the Housebank level configuration in FBZP.
    Sub account - This is the G/L account which you provide in the Bank Determination level in FBZP
    Now conceptually there are many transactions which need to be routed through clearing accounts. This is where the sub accounts come handy and are used for clearing purposes. they are open item managed accounts. So clearing is possible. In the end the main bank account tallies with your bank balance and moreover the clearing accounts become zero after all clearing has happened.
    Moreover the best way to maintain the G/L in SAP would be
    XXXX0 as the Main account
    XXXX1 say outgoing checks
    XXXX2 say outgoing wires
    Hope this clarifies
    Rgds

  • Quality of India map in Here Drive

    Hi,
    I just wanted to know the quality of the maps of Here Drive from users in India.  I currently use a MapMyIndia device to navigate while driving.  Are the Here Drive maps as detailed as the maps of MapMyIndia?  In other words, once i buy the Nokia Lumia 820, will i be able to substitute my current navigation device with the Here Drive app of Nokia for regulat navigation.
    More importantly, how often are the maps in Here Drive updaed?  MapMyIndia updates it maps every 6 months.
    Thank you for your help.
    Solved!
    Go to Solution.

    Hi,
    Thank you for replying.  Can you help me with answering the following additional questions:
    1. Is there deep integration between Contact and Here Drive i.e. If i have the complete address of one of my business contacts in my phone book and i want to drive to that place, is there an option in the Contact card itself which does something to the efect of "Navigate to this address".  In other words, if i have to drive to some contact's place, will i have to manually enter the destination or can it be picked up from the Contacts address details?
    2. Is there deep integration between address mentioned in Calendar and Here Drive i.e.If i have the complete address of one of my business contacts in the body of an Calendar entry and i want to drive to that place, then can the address be picked up by Here Drive automatically.
    3. If i use multiple applications simultaneously such as Navigation (Here Drive) and listening to music (Bluetooth connection - via the car's AUX system) and the phone rings, then do things work absolutely smooth and fine or are there problems of the phone hanging.
    Thank you.

  • LabVIEW for Mapping of Network Drives with Error Handling

    Is there a way to do the following easily in LabVIEW?
    - List drive letters and network paths of existing mapped drives on host PC
    - Check if a desired mapped drive is connected and if its disconnected reconnect to it
    - Receive related errors that may occur during attempting a connection to a mapped drive (i.e. path cannot be found, etc...)
    I know how to do most of this in VBScript but I'd like to avoid having ANY code for the work I'm doing be "non-G"!
    Thanks for your time!

    Hello Ray,
    You may want to take a look at the following Knowledgbase articles on NI.com
    How Does LabVIEW Find Which Disk Drives Are in My Computer?
    http://digital.ni.com/public.nsf/websearch/9DFF8F1788A7171A86256D10003776C0?OpenDocument
    How Can I Programmatically Map a Network Drive in LabVIEW on a Windows 2000/XP Machine?
    http://digital.ni.com/public.nsf/websearch/313C5E597B48652F86256D2700674EDB?OpenDocument
    Best Regards,
    Chris J

  • How to map lookup main table field in another main table using MDM 7.1?

    We created a new SAP MDM 7.1 repository with multiple main tables.  The first main table is called ProductMaster table which contains Products information.  The ProductCode is the primary key and the only display field for the table during data loading process. The second main table is ProductByRegion table which has a main table lookup field ProductCode and a RegionId field.  These two fields (ProductCode and RegionId) combine as the PK for this main table.  Both main tables have key mapping enabled. 
    I was able to load ProductMaster table using Import Manager.  But Iu2019m having trouble to load data into ProductByRegion table using MDM Import Manager.  Although I have met all the 5 requirements below (excerpted from MDM Import Manager Reference Guide P.222), the ProductCode wonu2019t show up on the destination value pane.  If I mapped all productCode to NULL field, ProductCode wonu2019t load.  If I u2018Addu2019 all ProductCode to Destination Value pane, the Import Manager added duplicated rows to Product Master table while only loading 1 record to ProductByRegion table.  I canu2019t get ProductCode show up in Matching Destination Field list.  When I checked ProductMaster records in MDM Data Manager, I right-clicked on one of records, chose Edit Key Mappings, it didnu2019t show anything.  However, if I right-clicked on one of those duplicated rows, Edit Key Mapping shows remote system and key correctly.
    Where did I do wrong?  How can I fix the problem?
    Thank you for help in advance.
    From: SAP MDM Import Manager Reference Guide:
    Mapping to Main Table Lookup Destination Fields
    Import Manager handles main table lookup fields (Lookup [Main])
    differently than other MDM lookup fields. Specifically, Import Manager
    does not display the complete set of display field values of the records
    of the underlying lookup table. Instead, the values it displays for a main
    table lookup field are limited by both the key mappings for the lookup
    table and the values in the source file.
    Also, Import Manager does not automatically display the values of a
    Lookup [Main] destination field in the Destination Values grid when you
    select the field in the Destination Fields grid. Instead, for a main table
    lookup field value to appear in the Destination Values grid, all of the
    following conditions must be met:
    u2022 The lookup table must have key mapping enabled
    u2022 The lookup field must be mapped to a source field
    u2022 The source field must contain key values for the lookup table
    u2022 The destination value must have a key on the current remote system
    u2022 The destination valueu2019s key must match a source field value
    NOTE ►► The current remote system is the remote system that was
    selected in Import Manageru2019s Connect to Source dialog (see
    u201CConnecting to a Remote Systemu201D on page 416 for more information).
    Vicky

    Hi Michael,
    Thank you very much for your response.  I'm new to SAP MDM, I need some clarification and help regarding your solution. 
    I did use two maps to load ProductMaster and ProductByRegion separately.  Here were my steps:
    1. create main table ProductMaster with key mapping enabled at the table level and set ProductCode as unique and writable once (primary key).
    2. create a map to load ProductMaster record from a staging table located an oracle database.  But Key mapping didn't show anything when I looked at them using Data Manager.
    3. create main table ProductByRegion with a lookup field looking at ProductMaster table.  This field and RegionId combines as a unique field for ProductByRegion table. 
    4. create a map to load ProductByRegion table.  But ProductCode records only shows on the source pane not destination pane and can't be mapped properly.
    My questions:
    1. How can I "Ensure that you add key mapping info for all ProductMaster records" besides enabling Key Mapping on the table level?
    2. How can I define a concatenation of ProductCode and RegionId as a REMOTE KEY"?
    Thanks a lot for your help!
    Vicky

  • Can somebody post link to How to Use ABAP-Mapping in XI 3.0?

    Hello,
    can somebody post a real link to the document How to Use ABAP-Mapping in XI 3.0. All the links to this documnet in the existing posts are not valid.
    Thanks for your information
    Jayson

    Hi
    Following weblog might help you.
    Testing ABAP Mapping - Testing ABAP Mapping
    XML DOM Processing in ABAP part I -  Convert an ABAP table into XML file using SAP DOM Approach.
    /people/r.eijpe/blog/2006/02/19/xml-dom-processing-in-abap-part-iiia150-xml-dom-within-sap-xi-abap-mapping
    SDN TV demo to create and test ABAP mapiing - https://media.sdn.sap.com/SDNTV/main.asp?mediaId=128
    How to guide for ABAP mapping.
    https://websmp106.sap-ag.de/~form/sapnet?_SHORTKEY=01200252310000071155&
    Also check these links,
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm
    Testing ABAP Mapping
    Using ABAP XSLT Extensions for XI Mapping
    Thanks
    Gaurav
    Edited by: Gaurav Bhargava on Oct 9, 2008 6:27 AM

  • How to call a mapping in a PL/SQL proc ?

    Hi all,
    I want to create a PL/SQL proc to call my mappings in the right order, and to make other operations the mapping don't do.
    The mapping I want to call is located in the packages.
    How can I call it ?
    Thanks,
    Nico

    Hi Carsten,
    Thank you for trying to help me.
    I do have the "Main" method you are talking about, but this method need a parameter (called "p_status") that I don't know how to implement...
    The mapping I create and I want to call needs no parameter, that's why I don't understand...
    This is the beginning of the main proc of my mapping package :
    PROCEDURE Main(p_status OUT VARCHAR2,
    p_max_no_of_errors IN VARCHAR2 DEFAULT NULL,
    p_commit_frequency IN VARCHAR2 DEFAULT NULL,
    p_operating_mode IN VARCHAR2 DEFAULT NULL,
    p_bulk_size IN VARCHAR2 DEFAULT NULL,
    p_audit_level IN VARCHAR2 DEFAULT NULL,
    p_purge_group IN VARCHAR2 DEFAULT NULL) IS
    x_schema VARCHAR2(30);
    x_audit_id NUMBER;
    x_object_id NUMBER;
    x_env wb_rt_mapaudit.wb_rt_name_values;
    x_param wb_rt_mapaudit.wb_rt_name_value;
    x_result NUMBER;
    x_return_code NUMBER;
    BEGIN
    etc, etc....
    ----------------------------------------------------------------------------------------------------------------------

Maybe you are looking for