One Model, Two Trees, Two Different Views

Here is what I need to do:
- Maintain 1 and only 1 model for tree data
- Display two different JTrees, each using the same model, but one showing all the data, and the other only showing a subset.
Example:
My Tree Data model is a file system containing all drives and folders below them.
One tree needs to show all the drives and folders below them.
The other tree needs to only show one drive and the folders below it.
I am open to any suggestions, even if you are just brainstorming.

My abstract adapter for my experimantal GEDCOM editor - still being worked on
abstract public class AbstractTreeViewAdapter implements TreeModel
    private String rootElementName_;
    private Model m_model;
    private Element rootElement_;
    public AbstractTreeViewAdapter(Model model, String rootElementName)
        m_model = model;
        rootElementName_ = rootElementName;
        Element root = m_model.getGEDCOMDocument().getRootElement();
        rootElement_ = root.getChild(rootElementName, root.getNamespace());
        m_model.addPropertyChangeListener(new PropertyChangeListener()
            public void propertyChange(PropertyChangeEvent event)
                if (rootElement_ != null)
                    removeAllChildNodesFromRoot();
                Element root = m_model.getGEDCOMDocument().getRootElement();
                rootElement_ = root.getChild(rootElementName_, root.getNamespace());
                addAllChildNodes();
    //  Methods to edit the tree /////////////////////////////////////
    public void removeChild(Object parent, int childIndex)
    public void removeChild(Object parent, Element child)
        int childIndex = getIndexOfChild(parent, child);
        if (childIndex < 0)
            throw new IllegalArgumentException("Cannot find child");
        removeChild(parent, childIndex);
    public void insertChild(Object parent, Element child, int index)
        int numberOfChildren = getChildCount(parent);
        if ((index < 0) || (index > numberOfChildren))
            throw new IllegalArgumentException("Index out of range");
        Object[] path = getPath((Element)parent);
        Object[] childToInsert = {child};
        int[] indexToInsert = {index};
        TreeModelEvent event = new TreeModelEvent(this, path, indexToInsert, childToInsert);
        Iterator it = m_listeners.iterator();
        while (it.hasNext())
            TreeModelListener listener = (TreeModelListener)it.next();
            listener.treeNodesInserted(event);
    private Object[] getPath(Element element)
        LinkedList result = new LinkedList();
        while ((element != null) && !element.getName().equals(rootElementName_))
            result.addFirst(element);
            element = element.getParent();
        result.addFirst(getRoot());
        return result.toArray();
    public Object getChild(Object obj, int index)
        if (obj instanceof Element)
            return ((Element)obj).getChildren().get(index);
        else if (obj instanceof Model)
            return getChild(rootElement_, index);
        else
            return null;
    public int getChildCount(Object obj)
        if (obj instanceof Element)
            return ((Element)obj).getChildren().size();
        else if (obj instanceof Model)
            int childCount = (rootElement_ == null)?0:rootElement_.getChildren().size();
            return childCount;
        else
            return 0;
    public int getIndexOfChild(Object obj, Object child)
        if (obj instanceof Element)
            Iterator it = ((Element)obj).getChildren().iterator();
            for( int index = 0; it.hasNext(); index++)
                if (it.next() == child)
                    return index;
            return -1;
        else if (obj instanceof Model)
            return getIndexOfChild(rootElement_, child);
        else
            return -1;
    public Object getRoot()
        return m_model;
    public boolean isLeaf(Object obj)
        if (obj instanceof Element)
            return !((Element)obj).hasChildren();
        else if (obj instanceof Model)
            return false;
        else
            return true;
    public void removeTreeModelListener(javax.swing.event.TreeModelListener treeModelListener)
        m_listeners.remove(treeModelListener);
    public void valueForPathChanged(javax.swing.tree.TreePath treePath, Object obj)
        System.out.println("VFPC"+obj);
    public void addTreeModelListener(javax.swing.event.TreeModelListener treeModelListener)
        m_listeners.remove(treeModelListener);
        m_listeners.add(treeModelListener);
    public void removeAllChildNodesFromRoot()
        Object[] path =
        {getRoot()};
        removeAllChildNodes(path);
    public void removeAllChildNodes(Object[] path)
        ChildrenOf children = new ChildrenOf(path[path.length-1]);
        if (children.size() == 0)
            return;
        TreeModelEvent event = new TreeModelEvent(this, path, children.getIndexSet(), children.getChildren());
        Iterator it = m_listeners.iterator();
        while (it.hasNext())
            TreeModelListener listener = (TreeModelListener)it.next();
            listener.treeNodesRemoved(event);
    public void addAllChildNodes()
        Object[] path =
        {getRoot()};
        addAllChildNodes(path);
    public void addAllChildNodes(Object[] path)
        ChildrenOf children = new ChildrenOf(path[path.length-1]);
        if (children.size() == 0)
            return;
        TreeModelEvent event = new TreeModelEvent(this, path, children.getIndexSet(), children.getChildren());
        Iterator it = m_listeners.iterator();
        while (it.hasNext())
            TreeModelListener listener = (TreeModelListener)it.next();
            listener.treeNodesInserted(event);
    private class ChildrenOf
        ChildrenOf(Object parent)
            if (parent instanceof Element)
                children_ = ((Element)parent).getChildren().toArray();
            else if (parent instanceof Model)
                if (rootElement_ == null)
                    children_ = new Object[0];
                else
                    children_ = rootElement_.getChildren().toArray();
            else
                children_ = new Object[0];
        int[] getIndexSet()
            int[] indexes = new int[children_.length];
            for (int i = 0; i < children_.length; i++)
                indexes[i] = i;
            return indexes;
        Object[] getChildren()
            return children_;
        int size()
            return children_.length;
        private Object[] children_;
    public void notifyAllChanged(TreeModelEvent event)
        Iterator it = m_listeners.iterator();
        while (it.hasNext())
            TreeModelListener listener = (TreeModelListener)it.next();
            listener.treeStructureChanged(event);
    public void notifyStructureChanged(TreeModelEvent event)
        Iterator it = m_listeners.iterator();
        while (it.hasNext())
            TreeModelListener listener = (TreeModelListener)it.next();
            listener.treeStructureChanged(event);
     * The set of listeners that will be notifed when the tree changes
    private Vector m_listeners = new Vector();
}

Similar Messages

  • How can I use sysnonym to hide two different views?

    hi,
    My question is how can I use 2 different users to login and they point to different views. However, in the program level, the view name always stand for "Test_View".
    I try to meet the requirements and do the followings:
    Step 1: In user A account, it creates two different views and also grant select to User B and User C respectively.
    Step 2: Login User B and create public synonym called "Test_View".
    Step 3: Login User C and create public synonym called "Test_View".
    I encounter the problem in Step 3 which is public synonym called "Test_View" is already exist. So, anyone can tell me once login and it will depend on which view you can see on program level.
    Thanks
    Amy

    As 399811 told you, you have to create private synonyms.
    "CREATE SYNONYM ...." instead of "CREATE PUBLIC SYNONYM ...."
    the private synonym has to created in each user.
    Joel Pérez

  • One app, two different Apple Dev accounts ... Will it work?

    Building a standalone/single-issue viewer app for a client. We've asked to be invited to join their Apple Dev team, but the client proposes this workflow instead:
    Scenario 1
    • We use OUR iOS Provisioning Portal/Apple Dev account to generate all the certificates, provisioning profiles and the app ID needed to bake out the app.
    • We deliver the final binary (.zip file) to the client.
    • Client uses ITS iTunes Connect/Apple Dev account to deliver the binary to Apple, so that the client will be the publisher of record in iTunes.
    WOULD THIS EVEN WORK? Can you really create an app using one Apple Dev account, then publish/manage it w/ iTunes Connect using another Apple Dev account?
    We've also heard this scenario:
    Scenario 2
    • Using our Apple Dev account, we generate: Development Certificate (.p12) and Development Provisioning Profile 
    • Using, their Apple Dev account, the client generates: Distribution Certificate (.p12) and Distribution Provisioning Profile
    THEN …
    1.) … WHO generates the App ID, considering that our dev and their dist provisioning profiles need to be tethered to the same App ID?
    2.) If it's the client, how do we tether OUR dev provisioning profile to THEIR App ID?
    Big thanks in advance.

    My only experience with publishing is to create both the dev and distribution apps, so I haven't tested that workflow yet. But I've heard of publishers who need to do what you're proposing. As I understand it, you would basically create the required cert files from two different Apple accounts. With your Apple account, you would create a dummy App ID (such as com.publisher.publication.test), and create the dev .p12 cert, the dev mobileprovision file, and the dev push cert. Your client would create the real App ID (such as com.publisher.publication) along with the distribution .p12 cert, dist mobileprovision, and dist push cert. Once you get these certs, you use Viewer Builder to create the app using the cert files from the combined Apple accounts. You would publish and test the development ipa file. If it all works properly, your client would sign in to Viewer Builder, download the distribution .zip file and submit it to Apple.
    As I said, I haven't tested this workflow yet, but we're currently setting up a similar split environment.

  • One query two different Group By

    In My parameter two option one and two.
    if i select one, need to come this group by:-
    GROUP BY
    Name1,
    Name2,
    Country,
    MCC || '/' | MNC
    One Output:
    Name1 -  Name2 - Country  - PNR
    if i select two, need to come this group by
    GROUP BY
    Name1,
    Country,
    MCC || '/' | MNC
    two output :
    Name1 - Country - PNR
    I have only one sql query But i have two different group by
    Please advise me, m not using subreport option.
    whether any formulas or any other options for group by.

    Try inserting the groups statically that are common for both the parameaters like this
    GROUP BY
    Name1,
    Country,
    MCC || '/' | MNC
    and now create a formula like this
    whilereadingrecords;
    if =1 then
    {Name2 field}
    else
    Now insert one more group using this formula and move the group to second level by using group options.
    Hope this helps!
    Raghavendra

  • One Interface - Two different maps - How to define which mapping to execute

    Hi all,
    I have created a SalesOrderCreate soap interface to BAPI_SALESORDER_CREATE to create SalesOrders on ECC600 from a legacy application. Now I have another legacy app that needs to create SalesOrders, but with some different mapping rules, using the same bapi.
    The first think I thought was to create another soap interface. But the principle of Enterprise Services is to use only one interface for each service (so, I was supposed to use the same soap interface). Then I have one soap interface and two different message mappings to the same BAPI.
    The question is how can I define that when the message comes from legacy "A" the mapping "A" would be executed, and when the message comes from legacy "B", the mapping "B" would be executed.
    Thanks!
    roberti

    Hi,
    >>>> But the principle of Enterprise Services is to use only one interface for each service (so, I was supposed to use the same soap interface).
    the concept of Enterprise Services is as you say
    but in your case it means that you need to use the same mapping... <-- as it's a part of your WS!
    you need to use the same soap interface without any changed inside it
    (in your case inside your mappings)
    if you want to reuse your first interface you can do this:
    - create another soap interface from second legacy to first soap interface
    (there you can use another mapping)
    this way you will reuse your previous work
    this is Enterprise Services concept and not changing
    web service logic (in this case mapping) for every new system
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • One computer, two different ipods, one shared library?

    Is there a way to setup two different ipods on one computer. I currently have my ipod library setup on an external drive. I setup a separate user profile for my husband. I pointed the library to my external drive, but no music files show up on his account. I also tried setting up home sharing....don't see library files under home sharing.....help please!

    *How to use multiple iPods with one computer*
    The Apple support document How to use multiple iPods with one computer suggests a number of ways. I use method two (Sync with selected playlists) with a slight twist. Rather than regular playlists I set the grouping field to indicate which users should receive which tracks and create smart playlists based on the content of this field.
    e.g.
    "Alice's Tracks" is "Grouping contains Alice" + "Kind contains audio"
    "Bob's Videos" is "Grouping contains Bob" + "Kind does not contain audio"
    Tracks that both Alice & Bob want on their iPods have the grouping set to "Alice/Bob"
    etc.
    I currently manage our family's five iPods using this system, each getting a different selection to suit their tastes and the capacity of their iPod. An advantage of using the grouping field is that it is stored in file tags (for non-wav audio files anyway) so that it is relatively easy to recreate the playlists should the iTunes library get trashed. Also useful if you move files about manually as playlist membership is preserved when you delete & re-import the tracks.
    tt2

  • Project Web App (PWA)/Sharepoint 2013: is there any way to display two different views of the Project Center PWA web part to the same user in a site collection?

    i want some of my users to see all the projects in the Project Center at my top-level site, and those same users to see only the projects they own at a subsite level in Project Center. that way they could see an 'all project' view on the homepage and only
    their projects on their dashboard pages (which also have an instance of Project Center web part on them). i have searched and searched but cannot find a solution to this. is there any way to acheive this functionality? thanks in advance for your assistance!

    I have tried this in the past, but was not successful, as far as I can recall. Once you access the project center webpart in one page, the view will be retained regardless where you see it again. (until you apply a different view or clear your browser cache). 
    May be an easier solution is to display a 'report' on the home page with ALL projects (much easier to do), and use the Project Center webpart for the My projects view as it is easier to achieve via Project Server Security, than a report.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Passing two values in two different views using view criteria in adf bc

    I have two tables. Message and MessageProperties. Message table is connected with itself as same as Employee table of HR. Means a Message can have various child message. MessageProperties contains the message properties. A message can have various properties. I want to show the message only if it has a particular value in MessageProperties,then its properties,its child message. If its child message have the same value in MessageProperties,then it shows that. Likewise it should give me a tree structure with its all properties.
    When I am hardcode the value then its shows fine.
    SELECT Message.MESSAGE_ID,
    Message.MSG_CONTENT_ID,
    FROM MESSAGE Message, MESSAGE_PROP MessageProp
    WHERE (MessageProp.Message_Id=Message.Message_Id) AND ((MessageProp.Key='From' OR MessageProp.Key='To') AND (MessageProp.value='B'))
    But when I use the Bind variable in view criteria then I am not able to achieve this.
    1. How to do that in adf bc and how to link message and messageprop with this condition?
    2. How to pass two parameters in serviceinterface FIndViewCriteria method i.e. messageId and value so that it will show only that message having that value?

    Thanks Timo,
    It helps me a little bit.
    It only shows me the parent message id and its properties. But it is not showing its child message id and its properties.
    Let me explain you step by step what I have done.
    1> I have created a view MessageView with two entities i.e Message and MessageProp and include the value attribute of MessageProp in it.
    2> I have created the default MessagePropView from MessageProp Entity.
    3> In MessageView I have modified the query which you have given.
    4> I have created the Bind variables.
    5> I have created a view criteria and in that view criteria I have included Message_Id=:Bind_MessageId and Value=:Bind_Value.
    6> I have created an association connecting Message.Message_Id and Message.Parent_Id(1 to * cardinality) because a message can be a parent of many messages.
    7> I have created a viewlink between Message and MessageProp using Message_Id.
    8> I have created a view link between Message and Message using the association which I have created in step 6.
    9> I have created the Application Module. In that,my Data Model looks like
    ---MessagePropView2
    ---MessageView1
    ---------MessagePropView1
    ---------MessageView2
    10> Then I have created the service interface. In service interface view instances,I include these two view and select the GetByKey operation from basic operations.
    11> From View Criteria find operations I have included the view criteria which I have created in message view in step 5.
    12> Then I run the AppModuleServiceImpl.java and select the view criteria operation which I have created in step 11.
    13> There I find two bind variables i.e. Bind_MessageId and Bind_Value. I give the values there.
    But it checks whether that message Id(Bind_MessageId) which I have given have that value(Bind_Value) or not. If it has then it shows only that message along with its properties but it is not showing me its childs and their properties.
    I want to show only those child message who have the MessageProp.value as (Bind_Value).
    I hope you understand with the scenario.
    I'll be very thankfull to you if you help me to do this.
    Rohit.

  • What can I do if not one but two different supervisors have promised to call me back but have not?

    We had 4 lines and shared 6Gb/1Gb promotional of data.  Bill was appoximately $290 after receiving an employee discount through my employer of
    22% on the plan (does not apply to the individual lines).
    To make a long story short my wife called early in September about adding our oldest daughter back to our plan.  She spoke with a representative by the name of Devin who told her that our bill would NOT go up but instead would go down automatically once we moved to a plan with 10Gb and that the bill would be approximately $225-235 per month for the 5 lines.
    September 15th before adding my daughter we called again to verify the charges and finding out what we had to do to add her back.  This representative also told me the bill would be $235 per month but couldn't explain why - she did see that it was in the notes.   I was also was told that it was best to add her the night after her employer plan stopped covering her phone.
    September 18th before adding her we called to find out what we had to do to add her back.   This rep repeated what the others had said about the upcoming monthly charges.
    The following Monday or Tuesday I called and talked with yet another representative trying to discover what was the reason for the bill dropping so significantly.  The lady I spoke with indicated that we were to get a $22 (NOT $25) discount per line.  I know its an odd figure thats why I remember it.
    Sep 26th - called and spoke with representative who told me that we woud NOT be getting any discounts.  I then spoke with a supervisor (Derrick) who explained that we should have already been getting $25 off for two of the lines and gave us credit for 1 month charges but nothing else.   I asked him to pull the recordings - he said give him a week to investigate and make it right.
    Oct 3rd - a week later - Derrick missed the callback.
    Oct 4th - called and was advised that they had no way to get in touch with Derrick other than sending a message (I have to admit the gentleman was extremely pleasant - one of the better reps I've encountered) - said as much to his supervisor.
    Oct 11th - talked with Priscilla and then her supervisor who said that one of the reps was her employee - would talk with her/pull the recording and call me back in an hour.  She never called back.
    We never asked for any discount - it was a Verizon employee that told my wife that the bill would go down to $230.  Not once but 4 different times.  Two supervisors promised they would pull the recordings and call us back but never did.
    I'm not stupid - If the recordings proved that we made this up or that Verizon had NOT told us that the bill would go down to $230 then they 
    would have called back and rubbed it in my face.   By them not calling back I know that they have discovered that we have stated the facts as
    accurately as we can remember and have not made this up.
    Is there anyone at Verizon that can resolve this situation to our satisfaction?  There's a lot of difference between the promised $110 discount and the $50 indicated by Derrick.

    Don't worry you will not hear back if it's anything like my last few interaction with this company good luck. Oh you may have one of these online CSR tell you they are here to help but that just a smoke screen.

  • One article two different price?

    Hi Experts
                  Can we mention two prices for One Article for same Sales organization ,distribution channel , site division ?
    (e.g. in store there is two article one article they want to sale at one price say $ 1 and another article they want to sale at $1.5 )
    Is it possible ?
    thanks in Advance

    Hi,
    usually all conditions get saved in the A-Table specified by your key. E.G. Application, Condition, Sales Org, DC, Site, Article will be stored in A071.
    If you actually  do not want to change anything - I am sorry - no, not possible.
    Now... if you are flexible enough, try to setup a promotion (VKA0). Your POS outbound will then send  both prices to the POS, the VKA0 and the VKP0.
    Using the promotion planning workbench, you might be able to find some fields and populate the data to the Interface to get the 1 for 1 CUR and the other 1 for 1,50 CUR. But even here, this would more likely be some sort of abuse of a BBY rather than standard functionallity in SAP.
    Last but not least..... the POS can determine the price by themselves without getting the prices from SAP...
    Feel free to be creative
      Christian

  • Safari won't load new web sites after one or two are viewed

    I open Safari, view my homepage, go to another website, then when I try to go to another site after that, Safari won't load it. The curser is still a black arrow, the new address in the address bar has the blue loading stripe on it that only fills the address 1/4 of the way and no further. I have to quit Safari and then reopen it to go to another site. Also, it won't quit. I click quit and get the spinning ball for a long time so I have to Force Quit.
    Today I updated Safari to 3.2.3 I was running 3.2.1. I am on Mac OS 10.4.11. I thought maybe the update would fix this problem. But it didn't.
    Any help for this pretty computer illiterate user would be most appreciated!!

    Hey Hawaiian Starman! Aloha!
    Thanks so much for trying to help. I looked at Joe's problem and your reply to go to OnyX. I clicked on the link. Am I supposed to download something, or just work off that site? I clicked on the icon that said maintenance. It opened a window that had the following boxes and the Xs are the ones that were preselected.
    Maintenance: (X) Repair Permissions
    Execute Maintenance Scripts
    Cleaning: (X) System Cache
    (X) Application Cache
    (X) Fonts Cache
    (X) Logs and CrashReporter
    (X) Temporary items
    Rebuild:
    (X) Launch Services
    dlyd's shared cache
    Display of folders content
    Spotlight Index
    Mail-mailboxes Index
    The Xs are the defaults I guess. But I wasn't able to deselect any and choose another?
    Hey Hawaiian Starman, I think Apple should have you on their payroll! You are sweet to help!
    Many thanks for your help and patience.
    Cat

  • Two computers, One AXbs, two different speeds

    I have 2 computers: a Dual 2.3 GHz PPC with 4.5 GB of RAM, and a 1.83 GHz Intel Core Duo Mac Mini all running from the same Airport Extreme with 802.11g.
    The Mini gets around 13 MBps almost all the time. I can not get the PPC G5 over 4 MBps. the mini is right next to the AEbs and the PPC is 30 feet away with two walls between them. I also have an AEX in the living room (about 60 feet from the AEbs). the system is set up using WDS so I can hook up my Blue Ray player to the internet. I am on Channel 2 on the AEbs.
    Any thoughts on why the PPC is so slow? This wouldn't be an AEbs problem would it? Should I look into the PPC?
    bob

    1shotbob wrote:
    On the PPC the RSSI is -61 (Transmit rate of 36), on the Mini it is -65 Transmit rate of 54).
    I just set up a 2GHz Intel Core Duo next to the PPC (right above the actual tower itself) and it is getting 12.61 MBps with an RSSI of -64 (Transmit rate of 54).
    How good those signal strength values are can depend a lot on the noise of each connection. Put AirPort Utility into "manual setup" mode, then pull down the "Base Station" menu and select "Logs and Statistics". Click on the "Wireless Clients" tab. This discussion post
    http://discussions.apple.com/thread.jspa?messageID=10329543&start=1
    can help you evaluate the signal-to-noise ratio (the difference between the signal and noise values) that you see.
    What is the transmit rate?
    According to the electronic book "Take Control of Your 802.11n AirPort Network v1.6" (http://www.takecontrolbooks.com/airport-n), it's "the raw data transmit rate" of the connection.
    I have no relationship with Take Control Books other than that of a customer.
    My transmit rate is bouncing around. It was 36, then 54, then 48, now back to 36. Is this an indication of my airport card going south on me?
    It may just reflect a varying amount of noise.

  • Two different views...

    Hi,
    Could someone tell me if this is possible with iCal. I would like to schedule some jobs who are divided in different steps. So, for example, Job#123 has Step A, B, C and D and Job #234 has Step B and C. Is it possible to see the different steps of a job at a time, and is it possible to see all the Step A's, or B's at a time. After reading on iCal, I personally it is not possible. My understanding is that I have to make a choice; either I choose to go by Job# (each Job# having a different color) or I decide to go by Steps # (each step# having a different color). Hoping my question is clear enough.
    If not possible would you have a recommendation of a Web application that would accomplish this?
    Thank you very much,
    Alain

    Hi,
    please have a look at the documentation here for why this is and how to handle it
    http://docs.oracle.com/cd/E24382_01/web.1112/e16182/bcadvvo.htm#ADFFD1167
    Frank

  • One iPad two different users. Can I switch between apple ids frequently.

    I share an iPad with my bf and we have all the apps we need on here but the only thing I would like is too have my music transferred to the iPad. Can I change the Apple ID without running everything.? And is it possible to keep changeling it back to his if necessary ? I started the process but I didn't understand the statement it fave about the 90 day thing.something about not changing it

    No. The iPad is not meant for multiple users. You can change the Apple ID, but if you download a previous purchase with the second ID you will disable the first one for 90 days.
    That means you won't be able to use it for that period of time.
    So no, you should not be changing ID's all willy nilly.
    If you transfer your music from iTunes on a computer unless the library on the computer contains both sets of music (yours and bf's) you will delete the music that's in the iPad and replace it with yours.

  • One iphone Two Different Computers

    I just bought the iphone and have a PC with my outlook contacts and my power book G4 for my music. I connected the iphone to the PC when I first openend it up, loaded the outlook contacts, activated the iphone and went throught the whole process. Then, later I connected the phone to my power book and tried to load my music and I can not get itunes on my power book to see my iphone? Any suggestions I would be grateful!!!

    I would first say ensure you have the latest iTunes on your Powerbook.
    But also note, you can only sync to 1 PC (just like with an iPOD). If you go to sync to another PC, it will remove all previous data from other sync first. You have to pick one to use.
    If all your contacts are just on one, either network and map the drive/share of the other to get access to music or bring contact info over to other.

Maybe you are looking for

  • Parameters that do not show up on default parameter form

    Reports upgraded to 6/6i from SQL*ReportWriter/Oracle Reports 2.5 contain parameters that both do and do not show up on the default parameter form. Is there any property that can be set in the Object Navigator to disable or enable a parameter on the

  • Receiver server for Receiver file system

    Hi, I am trying to create a scenario where the data from SAP system goes to XI through ABAP proxy and has to write the data in the file. My Question... In the Integration directory my sender system is ABAP Proxy and receiver system is File adapter. W

  • What is cannot be resolved to a type error?

    When i run jsp programs, am getting : org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: 6 in the jsp file: /dbcoffee.jsp Generated servlet error: CoffeeQBean cannot be resolved to a type org.apache.jasper.c

  • Oracle apps 11.5.10 QU 3.0 represents which version

    Dear Members : "oracle EBS certified config rel. 11.5.10 QU 3.0 ", available from e-delivery represents 11.5.10.0 or 11.5.10 CU2 ? I mean which version can I consider this to be, could you please tell. I am looking for 11.5.10 CU2. Thanks in advance.

  • Supplier Portal X SUS

    Dear all I would like to know if Supplier portal and SUS are the same  thing or there are diferences. Thanks Nilson Fonseca