Suggestion on more then one people when using internet...

hi, first off all, sorry for my bad english... so, my suggestion... on my notebook, I and my wife are using internet... my wife uses firefox, and I must use other browser, because of we use same websites, such as facebook or gmail. we save passwords and users. and if we use one browser, we must change user, write passwords... my seggestion... can be created user profiles... egzample... i turn on firefox, and on main screen view a list of firefox user, such as my and my wife... i turn my acount, i just click facebook and i get where... later my wife turn on firefox and she see this list of user, she get her's user, and gets to facebook without my facebook turn off and write her's name and password... it like be as too firefox instaed on notebook... these acount have their own tabs, start pages... and if to next computer one person uses firefox, just on install, he turn off this feature...

Create a new profile for the other users and create a desktop shortcut with -P "profile" appended to the target to launch each profile.
* http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
* http://kb.mozillazine.org/Shortcut_to_a_specific_profile
* http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

Similar Messages

  • HT1495 More then one iPad being used.

    We have more then one iPad. Can we use one iTunes account so I do not have to buy games and songs more then once? Also, 3 people are on one iTunes account. How do we avoid our iMessages being shown on each device?
    Thanks.

    Yes, you can run as many devices as you want from one iTunes account.  To avoid having messages sync across all devices, use different email addresses for iMessage.

  • Creating more then one JMS Destination using MBeans

    Hi all,
    I am trying to create 2(or more) JMS Destinations (Topics and Queues) in a JMS Server.
    The code looks like:
    MBeanHome home = (MBeanHome) ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);
    ServerMBean srvrMBean = (ServerMBean) home.getMBean("examplesServer", "Server",
    "examples");
    JMSServerMBean jmsServer = (JMSServerMBean)home.findOrCreateAdminMBean("examplesServer",
    "JMSServer", "examples");
    jmsServer.setStore(jmsStore);//jmsStore is JMSJDBCStoreMBean obj
    jmsServer.setTargets(srvrMBean);
    JMSDestinationMBean jmsTopic1 = (JMSTopicMBean)home.findOrCreateAdminMBean("tempTopic1",
    "JMSTopic", "examples", jmsServer);
    jmsTopic1.setJNDIName("com.temp.topic1");
    jmsServer.addDestination(jmsTopic1);
    and the second one is added as:
    JMSDestinationMBean jmsTopic2 = (JMSTopicMBean)home.findOrCreateAdminMBean("tempTopic2",
    "JMSTopic", "examples", jmsServer);
    jmsTopic2.setJNDIName("com.temp.topic2");
    jmsServer.addDestination(jmsTopic2);
    (Actually, the Topics are added to the jmsServer in a method)
    I can see in the console that the first topic is added to the JMS server and to the
    JNDItree of the server instance,
    But for some reason, the second topic is not added to the JNDI tree(but it is added
    to the JMS Server).
    and I can not look up the second object in JNDI.
    Does anybody come across this problem??
    what is the right way to add the destinations??
    thanks for any help
    -Vijay

    Hi Mihir,
    thanks....I tried the same program, but the only difference is i am setting the targets
    to the jms server (i.e. jmsServer.setTarget(tm);) before adding second destination
    to it(i tried both setDestinations and addDestination).
    Because, (according to my requirements) after adding the first destination i have
    to set the target for the jmsserver (which eventually starts the JMSserver).
    So, is there any way to add the destinations to the jmsserver after setting the targets??
    thanks for any help
    -Vijay
    "Mihir Kulkarni" <[email protected]> wrote:
    The following code works for me.
    Btw, I use setDestinations and pass it an array of JMSDestinationMBeans
    instead of using addDestinations()
    Hope this helps...
    mihir
    import java.util.Set;
    import java.util.Iterator;
    import java.rmi.RemoteException;
    import javax.naming.*;
    import weblogic.jndi.Environment;
    import weblogic.management.MBeanHome;
    import javax.management.ObjectName;
    import weblogic.management.WebLogicMBean;
    import weblogic.management.MBeanCreationException;
    import weblogic.management.configuration.ServerMBean;
    import weblogic.management.runtime.ServerRuntimeMBean;
    import weblogic.management.WebLogicObjectName;
    import weblogic.management.configuration.*;
    import javax.management.InvalidAttributeValueException;
    /* Running this program will create a JMS Server and a JMS Connection
    * Factory targetted to the Admin server. It will also add a JMS Topic
    * and a JMS Queue to the JMSServer.
    * This will create the following entries in the config.xml:
    * <JMSServer Name="myJMSServer" Targets="MyServer">
    * <JMSQueue JNDIName="jmx.jms.myJMSQueue" Name="myJMSQueue"/>
    * <JMSTopic JNDIName="jmx.jms.myJMSTopic" Name="myJMSTopic"/>
    * </JMSServer>
    * <JMSConnectionFactory JNDIName="jmx.jms.myJMSConnectionFactory"
    * Name="myJMSConnectionFactory" Targets="MyServer"/>
    public class createJMS {
    public createJMS() {
    public static void main(String[] args) {
    JMSServerMBean jmsServer = null;
    JMSDestinationMBean jmsQueue = null;
    JMSDestinationMBean jmsTopic = null;
    JMSConnectionFactoryMBean jmsConnectionFactory = null;
    JMSSessionPoolMBean jmsSessionPool = null;
    JMSConnectionConsumerMBean jmsConnectionConsumer = null;
    ServerMBean srvrMBean = null;
    MBeanHome home = null;
    JMSServerMBean jmsServerConfig = null;
    file://domain variables
    String url = "t3://localhost:7001";
    String username = "system";
    String password = "mihirk00";
    file://variable Names
    String DOMAIN = "mihirDomain";
    String ADMINSERVERNAME = "MyServer";
    String JMSSERVER = "myJMSServer";
    String JMSCONNECTIONFACTORY = "myJMSConnectionFactory";
    String JMSQUEUE = "myJMSQueue";
    String JMSTOPIC = "myJMSTopic";
    log("Creating AdminMBeans for JMS queue and JMS connection
    factory");
    try
    Environment env = new Environment();
    env.setProviderUrl(url);
    env.setSecurityPrincipal(username);
    env.setSecurityCredentials(password);
    Context ctx = env.getInitialContext();
    home = (MBeanHome)ctx.lookup("weblogic.management.adminhome");
    log("Got AdminHome: " + home);
    String name = DOMAIN + ":,Name=" + ADMINSERVERNAME + ",Type=Server"
    WebLogicObjectName objName = new WebLogicObjectName(name);
    srvrMBean = (ServerMBean)home.getMBean(objName);
    file://srvrMBean =
    (ServerMBean)home.getMBean(ADMINSERVERNAME,"Server",DOMAIN);
    log("Got the serverMBean: " + srvrMBean);
    } catch (Exception e) {
    log("Exception in getting Admin home & srvrMBean: " + e);
    /* the findOrCreateAdminMBean method of the MBeanHome is used to
    create
    * the Admin MBeans for all the JMS stuff needed for this utility
    * the method takes 3 parameters - Name, Type, Domain
    * the type Parameter is the name of the MBean you want to create
    * minus the MBean prefix
    * eg) JMSServer, JMSConnectionFactory, JMSQueue etc..
    * It also takes an addition parameter which is the parent
    AdminMbean
    * if one needs to create a child node in the xml tree.
    * Once the MBean is created you can set attributes on it using
    the
    * exposed API of that MBean
    * Its always better to use the findOrCreateAdminMBean method compared
    * to createAdminMBean method .
    file://use findOrCreateAdminMBean to create JMSConnectionFactory
    try {
    jmsConnectionFactory =
    (JMSConnectionFactoryMBean)home.findOrCreateAdminMBean(JMSCONNECTIONFACTORY,
    "JMSConnectionFactory", DOMAIN);
    if( jmsConnectionFactory.getJNDIName() == null) {
    jmsConnectionFactory.setJNDIName("jmx.jms.myJMSConnectionFactory");
    log("Created a JMSConnectionFactory");
    else
    log("looked up JMS ConnectionFactory: " +
    jmsConnectionFactory.getJNDIName());
    } catch (MBeanCreationException e) {
    log("MBeanCreationException: " + e);
    catch(InvalidAttributeValueException e) {
    log("InvalidAttributeValueException: " + e);
    file://create the JMSServerMBean
    try {
    jmsServer = (JMSServerMBean)home.findOrCreateAdminMBean(JMSSERVER,
    "JMSServer", DOMAIN);
    log("Found or Created a JMSServer");
    } catch (MBeanCreationException e) {
    log("MBeanCreationException: " + e);
    file://create the JMSQueueMBean - use methods of
    JMSDestinationMBean
    file://here we pass the jmsServer as the parent MBean so that the
    file://JMSQueueMBean is created as the child of the JMSServerMBean
    try {
    jmsQueue =
    (JMSDestinationMBean)home.findOrCreateAdminMBean(JMSQUEUE, "JMSQueue",
    DOMAIN, jmsServer);
    if( jmsQueue.getJNDIName() == null) {
    jmsQueue.setJNDIName("jmx.jms.myJMSQueue");
    log("Created a JMSQueue");
    else {
    log("looked up JMS Queue: " + jmsQueue.getJNDIName());
    } catch (MBeanCreationException e) {
    log("MBeanCreationException: " + e);
    catch(InvalidAttributeValueException e) {
    log("InvalidAttributeValueException: " + e);
    file://create the JMSTopicMBean - use methods of
    JMSDestinationMBean
    file://here we pass the jmsServer as the parent MBean so that the
    file://JMSTopicMBean is created as the child of the JMSServerMBean
    try {
    jmsTopic =
    (JMSDestinationMBean)home.findOrCreateAdminMBean(JMSTOPIC, "JMSTopic",
    DOMAIN, jmsServer);
    if( jmsTopic.getJNDIName() == null) {
    jmsTopic.setJNDIName("jmx.jms.myJMSTopic");
    log("Created a JMSTopic");
    else {
    log("looked up JMS Topic: " + jmsTopic.getJNDIName());
    } catch (MBeanCreationException e) {
    log("MBeanCreationException: " + e);
    catch(InvalidAttributeValueException e) {
    log("InvalidAttributeValueException: " + e);
    file://create the target Arrays
    JMSDestinationMBean[] jdm = {jmsQueue,jmsTopic};
    TargetMBean[] tm = {srvrMBean};
    file://set the Destinations for the jms Server
    try {
    jmsServer.setDestinations(jdm);
    log("Added Destination to the jmsServer");
    } catch(Exception e) {
    log("Excpn in setting the property for jmsServer:" + e);
    /* Now target the JMS Server to the appropriate Server
    * As the JMSServerMBean extends the DeploymentMBean, we can
    directly
    * use the addTarget method of the DeploymentMBean
    file://ordering is important
    file://Target the JMS ConnectionFactory
    try {
    jmsConnectionFactory.setTargets(tm);
    log("Targetted the Connection Factory to the admin Server");
    } catch (Exception e) {
    System.out.println("Exception in targetting the
    jmsConnectionFactory to the Admin server: " + e);
    file://Target the JMS Server
    try {
    jmsServer.setTargets(tm);
    log("Targetted the JMS Server to the admin Server");
    } catch (Exception e) {
    System.out.println("\nException in targetting the jmsServer to
    the Admin server: " + e);
    log("Done with registering AdminMBeans for JMS");
    private static void log(String s) {
    System.out.println("\n[createJMS]: " + s);
    "Vijay Bujula" <[email protected]> wrote in message
    news:[email protected]...
    Hi all,
    I am trying to create 2(or more) JMS Destinations (Topics and Queues)in a
    JMS Server.
    The code looks like:
    MBeanHome home = (MBeanHome) ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);
    ServerMBean srvrMBean = (ServerMBean) home.getMBean("examplesServer","Server",
    "examples");
    JMSServerMBean jmsServer =(JMSServerMBean)home.findOrCreateAdminMBean("examplesServer",
    "JMSServer", "examples");
    jmsServer.setStore(jmsStore);//jmsStore is JMSJDBCStoreMBean obj
    jmsServer.setTargets(srvrMBean);
    JMSDestinationMBean jmsTopic1 =(JMSTopicMBean)home.findOrCreateAdminMBean("tempTopic1",
    "JMSTopic", "examples", jmsServer);
    jmsTopic1.setJNDIName("com.temp.topic1");
    jmsServer.addDestination(jmsTopic1);
    and the second one is added as:
    JMSDestinationMBean jmsTopic2 =(JMSTopicMBean)home.findOrCreateAdminMBean("tempTopic2",
    "JMSTopic", "examples", jmsServer);
    jmsTopic2.setJNDIName("com.temp.topic2");
    jmsServer.addDestination(jmsTopic2);
    (Actually, the Topics are added to the jmsServer in a method)
    I can see in the console that the first topic is added to the JMS serverand to the
    JNDItree of the server instance,
    But for some reason, the second topic is not added to the JNDI tree(butit
    is added
    to the JMS Server).
    and I can not look up the second object in JNDI.
    Does anybody come across this problem??
    what is the right way to add the destinations??
    thanks for any help
    -Vijay

  • Why does firefox open up more then one page when I login

    After upgrading to Firefox 5, when I open Firefox it opens about 15 to 20 pages and I have to close the pages before it will let me continue. Why is this happening?

    But there aren't any symbols. It's just set to http://www.yahoo.com
    And every time I open Firefox, it opens with 3 Tabs, one of which IS Yahoo but the other 2 a regarding plug ins being successfully updated. I've even gone as far as to uninstall those plug ins and it still opens with 3. About ready to uninstall Firefox and stay with IE

  • Projects error out when loading more then 1500 projects, while using api

    Hello,
    I am haivng problem while loading more then 1500 projects, when using api, PA_PROJECT_PUB.CREATE_PROJECT.
    We are on 12.1.3.
    It throws error message ORA-6502 pl/sql numberic error.
    I have changed PA:Debug Mode to No at Resp level also
    FND:Debug Mode to No
    But still encountering same problem. Appreciate any help.
    Regards,
    Sanjay

    I was using a custom Application, which had a id other then 275 (which belongs to Oracle projects)

  • Can I use more then one apple ID on my computer/osx app store

    Hi,
    I use my MBP/iMac/ipad/iphone for both business and home.  Right now everything is setup to my home apple id (and I have made quite a few purchases with that).  With the release of the osx app store and FCPX,  my company wants to buy these for my computers.  But they want to do this on their apple id.  Can I run more then one id on a mac?  How can I make this work as I know they will want me to start getting more apps as they are released.

    You can have apps from multiple Apple IDs on one Mac. The issue will be that to update Mac apps bought with A ID #1 will require signing into A ID #1 in the MAS. And later when apps bought with A ID #2 need an update you will need to sign into A ID #2 in the MAS to update them. If you can keep that straight and can abide that requirement, there should be no issues.
    The same will be true to update iOS apps, but using iTunes.

  • Same variable "used in more then one InfoObject"

    I want to use the same user entered value as part of the definition of two different restricted key figures, restricting on two different characteristics.  Basically the user will enter a date, and one key figure includes only those with a "Calendar date" < the entered date, the other will have "Date1" less then the entered date and "Date2" greater the entered date.  When I try that, I get the error "Variable Select Date used in more then one infoObject".  How can I either use the same variable for more then one characteristic, or create a new variable that takes the value of the "Select Date" variable without prompting the user to enter the same date multiple times.
    thanks
    Val

    Hi Val,
    Hereunder an example of a routine extracting year from month, month inserted manually (year = anno in Italian):
    DATA: loc_var_range LIKE rrrangeexit.
    DATA: l_s_range TYPE rsr_s_rangesid. 
    DATA: v_anno(4) TYPE c.
    CASE i_vnam.
      WHEN 'VCE_ANNO'.
        IF i_step = 2.
          CLEAR l_s_range.
          LOOP AT i_t_var_range INTO loc_var_range
                  WHERE vnam = '0PCALMON'.
            CLEAR v_anno.
            v_anno = loc_var_range-low(4).
            l_s_range-low      = v_anno.
          L_S_RANGE-HIGH     =
            l_s_range-sign     = 'I'.
            l_s_range-opt      = 'EQ'.
          ENDLOOP.
          APPEND l_s_range TO e_t_range.
        ENDIF.
    endcase.
    Ciao.
    Riccardo.

  • Crashing - Freeze when trying to export more then one project in compressor

    when i set more then one final cut project to convert a DVCPRo HD project to DVD media or quicktime during the first batch project the system freezes. I used to be able to do multiple
    projects over night or the weekend and now i have to do one at a time.
    THOUGHTS???
    here is the error message received:
    panic(cpu 0 caller 0x0019A566): interlock timeout for mutex 0x806e808
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x4885bdb8 : 0x128d08 (0x3cb134 0x4885bddc 0x131de5 0x0)
    0x4885bdf8 : 0x19a566 (0x3d0020 0x806e808 0x257eef8 0x1d18a0)
    0x4885be28 : 0x197e97 (0x806e808 0x206 0x4885be58 0x32fd40)
    0x4885be38 : 0x32fd40 (0x806e808 0x1 0x7a2220c 0x7464ce4)
    0x4885be58 : 0x3319fa (0x7fca320 0x10 0x0 0x32cfd8)
    0x4885bea8 : 0x33bbb3 (0x85c5bb8 0x2 0x714c290 0x85c5d70)
    0x4885bef8 : 0x33be49 (0x85c5bb8 0x1 0x4885bf28 0x32d034)
    0x4885bf28 : 0x33bfd1 (0x85c5bb8 0x1 0x85c5bb8 0x1)
    0x4885bf58 : 0x379e23 (0x85c5bb8 0x7fc5e70 0x7fc5eb4 0x0)
    0x4885bfc8 : 0x19b17e (0x7d0e200 0x0 0x19e0b5 0x7d10b20) No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xb0638d68
    Kernel version:
    Darwin Kernel Version 8.9.1: Thu Feb 22 20:55:00 PST 2007; root:xnu-792.18.15~1/RELEASE_I386
    Model: MacPro1,1, BootROM MP11.005C.B04, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Memory Module: DIMM Riser A/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    Serial ATA Device: Hitachi HDS725050KLA360, 465.76 GB
    Parallel ATA Device: SONY DVD RW DW-D150A
    Fibre Channel Device: SCSI Target Device @ 0
    Fibre Channel Device: SCSI Target Device @ 0
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft Basic Optical Mouse v2.0, Microsoft, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: built-in_hub, unknown_value, Unknown

    no. I just tried compressing 2 HD projects to dvd last night and half way through the first it appears the system crashed.
    the crash report is as follows -
    I did the update - same issue PLEASE ANYONE HELP????????
    THANKS
    panic(cpu 3 caller 0x0019A566): interlock timeout for mutex 0x70dff78
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x487abce8 : 0x128d08 (0x3cb134 0x487abd0c 0x131de5 0x0)
    0x487abd28 : 0x19a566 (0x3d0020 0x70dff78 0x16 0x70defa4)
    0x487abd58 : 0x197e97 (0x70dff78 0x206 0x487abdf8 0x331d2f)
    0x487abd68 : 0x331d2f (0x70dff78 0x7ba1dac 0x12f572 0x0)
    0x487abdf8 : 0x331fad (0x7bd5920 0x70dff44 0x7ba1dac 0x320995)
    0x487abe38 : 0x339531 (0x7ba1dac 0x8 0x0 0x58b4a000)
    0x487abec8 : 0x13b4f4 (0x7ba1dac 0x1 0x487abef8 0x199ef1)
    0x487abef8 : 0x13cd1a (0xc26b360 0x0 0x487abf28 0x1a3010)
    0x487abf38 : 0x13cb77 (0xc26b380 0xc26b0d8 0xc3f269c 0xc3f2658)
    0x487abf78 : 0x127406 (0x1 0x0 0x1 0x14)
    0x487abfa8 : 0x1a2f8d (0xffffffff 0x1 0x0 0xc3eebc0)
    0x487abfc8 : 0x19ad06 (0x0 0x1 0x19e0b5 0xc3eebc0) Backtrace terminated-invalid frame pointer 0x487abf58
    Kernel version:
    Darwin Kernel Version 8.9.1: Thu Feb 22 20:55:00 PST 2007; root:xnu-792.18.15~1/RELEASE_I386
    Model: MacPro1,1, BootROM MP11.005C.B04, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Memory Module: DIMM Riser A/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    Serial ATA Device: Hitachi HDS725050KLA360, 465.76 GB
    Parallel ATA Device: SONY DVD RW DW-D150A
    Fibre Channel Device: SCSI Target Device @ 0
    Fibre Channel Device: SCSI Target Device @ 0
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft Basic Optical Mouse v2.0, Microsoft, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: built-in_hub, unknown_value, Unknown
    FireWire Device: unknown_device, unknown_value, Unknown

  • Using more then one table/view in same Report

    Hi,
    I am using Discoverer Plus Version 9.0.4.43.15.
    Is it possible to use more then one table/view in a report without the tables/views being joined in any way? It would be like using two different datasets in the same report without the datasets having anything to do with one another. Right now when I select items from the available tab I can only pick tables that relate to one another in some way.
    Or is it possible to use more the one table in the same report? Each table using a different query/view/table.
    Thanks

    Spence,
    try following type of query using set operator UNION / UNION ALL:
    select col1,col2
    from t1
    union all
    select col1,col2
    from t2
    If you don't have restrictions then this is the best way.

  • Using more then one null in a Set

    Hello Friends,
    Can any one throw some lights for using the null values in Set.
    Can a set cantains more then one null values? It worls fine if there is only one null element alone but throwing exception if there are any other element with one null.
    Thank you.
    Roshan

    So when you read the documentation for TreeSet.add(), which you obviously did because it's so obvious that you should read the relevant documentation before posting questions, what did you not understand?
    Adds the specified element to this set if it is not already present. More formally, adds the specified element e to this set if the set contains no element e2 such that (e==null ? e2==null : e.equals(e2)). If this set already contains the element, the call leaves the set unchanged and returns false.
    Throws:
    NullPointerException - if the specified element is null and this set uses natural ordering, or its comparator does not permit null elements
    Edit: By the way, there was a recent thread about the fact that it appears that Java 5 had a bug in which when you add the first null, it didn't throw an NPE, but in Java 6 it did. That may be relevant information depending on what JRE you're using.
    Edited by: endasil on 9-Dec-2009 1:31 PM
    Edit 2: Here's a (or the) bug report: [http://bugs.sun.com/view_bug.do?bug_id=5045147]
    Edited by: endasil on 9-Dec-2009 1:34 PM

  • Acrobat stop when open more then one document

    Hello
    when I try to open more then one PDF Acrobat hang.
    I must kill the process and then I can open one PDF again.
    It does not work independently I try to open the second PDF by double-click or with the menu inside Acrobat.
    I use Adobe Acrobat XI (11.0.0) on a Windows 7 64-Bit system.
    I try to deinstall Acrobat completly and reinstall it but without success.
    I could not really say until which time it works but I know that it is working in the near past.
    Can somenody tell me why it doesn´t work?
    What happen? What could be the reason?

    Please update the Acrobat 11 to 11.0.6 via Help -> 'Check for Updates' option  and then see if issue still exist.
    Regards,
    Anoop

  • HOW DO I USE MORE THEN ONE ITUNES WITH MY IPHONE WITHOUT ERASING MY MUSIC?

    I have two different laptops with iTunes on it. I use both of them but my iPhone only works with one iTunes. I plug it into the computer and it says that my iPhone cannot use more then one iTunes. Is there a way I can use both or no?
    YES I AM CLICKING MANUELLY ADD SONGS TO MY iPhone.
    I just bought my iPhone about a week or so ago.
    Please help ASAP.

    I clone my library to a portable drive using SyncToy 2.1, a free tool from MS. I run this both at home & work so that I essentially have three identical copies of my library for backup redundacy, any of which I can use to update my iPods and my iPhone. I use iTunes Folder Watch occasionaly in case I've managed to download, for example, a podcast at one location but overwrite the library with a newer copy updated at the other. It can be done but you need to take considerable care...
    tt2

  • Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File - Export - Album name with number).

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

  • I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect to my MacBook it erases everything on had on there. Can someone please help with this problem?

    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.

    dwgar1322 wrote:
    I have just started using WD external hard drives, I use it to save my movies and music on. On more than one occasion, when I connect it to my MacBook it erases everything I had save on the hard drive. Can someone please help me with this problem? I am super tired of having to put all of my movies and music on the hard drive just to have it erased again. The products I am using are WD 4TB My Book and 2 TB My Passport external hard drives. When it happens, there is always an icon that reads, EFI, along with the My Book icon. Thank you for your assisstance.
    Yes, you have WD software installed  REMOVE IT !! 
    WD has warned its customers about their huge mistake that their software doesnt work on Mavericks and causes data loss.
    (also dont use WD drives anymore)
    Read all about it here:
    https://discussions.apple.com/thread/5475136?start=255&tstart=0
    See their website on removing the destructive WD software here:
    http://community.wd.com/t5/External-Drives-for-Mac/External-Drives-for-Mac-Exper iencing-Data-Loss-with-Maverick-OS/td-p/613775
    Western Digital External Hard Drives Experiencing Data Loss On OS X Mavericks
    http://www.cultofmac.com/252826/western-digital-external-hard-drives-experiencin g-data-loss-on-os-x-mavericks/

  • How to use 'BAPI_GOODSMVT_CREATE'  for more then one row selected ???

    Hi,
    I am using bapi , BAPI_GOODSMVT_CREATE  ,  my requirement is that first perform ALV display with check boxes & then user can selsct any number of rows  & then on clicking execute button  this bapi is triggered , now my ques is that  if i am selecting rows one by one & executing , then am able to post data successfully, but if am selecting  more then one row at a time then its giving me error
    " exactly one serial no must be selected  (instead of more then two / three ) ."
    plz help me .
    this is how i am filling data in BAPi & bapi call
    FORM FILL_BAPIDATA .
      wa_GOODSMVT_HEADER-PSTNG_DATE = sy-datum.
      wa_GOODSMVT_HEADER-doc_DATE = sy-datum.
      wa_goodsmvt_code-gm_code = c_gmcode.
      LOOP AT it_final INTO wa_final.
        wa_GOODSMVT_ITEM-MOVE_TYPE = c_movtype.                 " '313'.
        wa_GOODSMVT_ITEM-material =  WA_final-MATNR.
        wa_GOODSMVT_ITEM-ENTRY_QNT = wa_final-verme.
        wa_GOODSMVT_ITEM-plant =  WA_final-WERKS.               "'DB10'.
        wa_GOODSMVT_ITEM-STGE_LOC =  WA_final-LGORT.
        wa_GOODSMVT_ITEM-BATCH = WA_final-CHARG.
    wa_GOODSMVT_ITEM-BATCH = l_charg.
        append wa_GOODSMVT_ITEM to IT_GOODSMVT_ITEM.
        clear: wa_GOODSMVT_ITEM.
      ENDLOOP.
      LOOP AT it_final INTO wa_final.
        wa_serialnumber-SERIALNO = wa_final-sernr.
        APPEND wa_serialnumber to it_serialnumber.
        CLEAR wa_serialnumber.
      ENDLOOP.
      LOOP AT it_position2 INTO wa_position2.
        wa_serialnumber-MATDOC_ITM = wa_position2-wepos .
        MODIFY it_serialnumber INDEX sy-tabix from wa_serialnumber TRANSPORTING MATDOC_ITM .
      ENDLOOP.,
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          GOODSMVT_HEADER               = wa_GOODSMVT_HEADER
          GOODSMVT_CODE                 = wa_GOODSMVT_CODE
       IMPORTING
          GOODSMVT_HEADRET              = mthead
        MATERIALDOCUMENT              = w_MATERIALDOCUMENT
        MATDOCUMENTYEAR               = w_MATDOCUMENTYEAR
        TABLES
          GOODSMVT_ITEM                 = IT_GOODSMVT_ITEM
          GOODSMVT_SERIALNUMBER         = IT_SERIALNUMBER
          RETURN                        = IT_RETURN
      GOODSMVT_SERV_PART_DATA       =
      EXTENSIONIN                   =
    APPEND w_MATERIALDOCUMENT to it_GOODSMVT1 .
    IF sy-subrc = 0 .
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *MESSAGE text-016 TYPE 'I'.
    PERFORM msg_log  .
    ENDIF.

    Hi,
    Did u check the serial numbers table before calling the BAPI. Might be the case tht same serial number is assigned for all items, in this case the goods movement may be possible with same serial number for all items.
    Reagrds,
    Aditya
    Edited by: aditya on Aug 11, 2009 11:46 AM

Maybe you are looking for

  • Configure WebSphere Portal Server to use LDAP (Oracle Internet Directory)

    I did configuration for WebSphere Portal to use security with LDAP Oracle Internet Directory (OID). The script for configuring works well (WPSConfig.bat action-secure-portal-ldap) But when i start Portal Server it cannot start successfully. I did che

  • 2 user accounts on iMac, want to share one iTunes library between the 2

    I saw some old discussions on this topic from 2006. But I wanted to ask users of the current versions of iTunes and Lion, how they are acomplishing this. We want to share the same music libray between 2 user accounts. Just think of it as an old schoo

  • How do I make corrections to a PDF of my resume?

    i have a resume on acrobat ,an i want to  make corrections to it an cant .So i was wandering how to convert the PDF to word so i can make my corrections

  • NOT WORKING PLZ HELP!!

    theres something wrong w/ my i pod nano 1st gen i can turn it on but nothing works, the buttons or the click wheel. i tried restoring it but it still didnt work what should i do?

  • Upgrade financials to 11i

    Hi, we are running the finincials on 10.7 NCA and plan on upgrading to 11i. Is it possible to upgrade to 11i with only AP, FA and PO and NOT having the GL module? This is because we already have GL from another application which is our main GL and wa