HT1206 I have a computer with 2 users and each of us have I tunes authorized but only one of us can cloud sync our purchases what can I do I need more than one ID available

Help please I need to have more than one Itunes Id

Well you need to understand the behavior of h-reap or what it's called now, FlexConnect. In this mode, the clients are still remembers on the WLC until the session timer/idle timer expires. So switching between SSID's in h-reap will not be the same when switching when the AP's are in local mode.
Take a look at the client when connected in FlexConnect in the WLC GUI monitor tab. Thus will show you what ssid and vlan the client is on. Now switch to a different ssid and compare this. It's probably the same because the client has not timed out. Now go back to the other ssid and look again. Now on the WLC, remove or delete the client and then switch to the other ssid at the same time. Or switch SSID's and then remove the client. The client will join the new ssid and in the monitor tab, you should see the info.
There is no need to have clients have multiple SSID's unless your testing. Devices should only have one ssid profile configured to eliminate any connectivity issues from the device wanting to switch SSID's.
Sent from Cisco Technical Support iPhone App

Similar Messages

  • How can I apply text position attributes (e.g. lower third) to more than one title at a time?

    How can I apply text position attributes (e.g. lower third) to more than one title at a time?

    jhb3243
    What version of Premiere Elements are you using and on what computer operating system is it running?
    In the case of this theoretical lower third to be applied to more than one title at a time
    a. Is there text in the lower third besides a graphic of some kind?
    b. Are all the titles to which this lower third is to be applied all together on the Timeline or scattered?
    If no text in lower third and titles all together, then, with text titles on Video 1 and lower third on Video 2, drag out the lower third to cover the length of the text titles on Video 1.
    I do not find "lower third" title files to be in the same category as certain effects where the Copy and "Paste Attributes" or "Paste Effects and Adjustments" lend themselves so well.
    Let us see what others have to say about all this. I will continue to experiment with what you seek and how you would prefer to get there. I am not optimistic but I will try.
    Thanks.
    ATR

  • Why do we need more than one retained earnings accounts & what is the use?

    Hi FI Experts,
    Why do we need more than one retained earnings accounts, what is the precise use of two?
    I know the retained earnings account is used to carry forward the balances during the year end to the balance sheet and there by making the p&L A/cs balances as zero.
    I guess the second one is used for different valueations for example  as depreciation accounts for different valuations will have different retained earnings accounts.
    Kindly correct me if I am wrong and eloborate on the use having more than one retained earnings accounts.
    with regards
    Ramesh Y

    Hi,
    Well, separate retained earnings accounts are used for parallel financial reporting, it means when you need to report in accordance with, for example, local GAAP and IFRS or US GAAP at the same time. Several retained earnings accounts  are necessary when the company chooses account based approach for parallel reporting. (GL accounts are broken down into several groups, for example you use different accounts for IFRS valuation, for local GAAP and they are also shared accounts common for both principles.)
    m.

  • Business graphics need more than one category

    Dear All,
         We have a issue for business graphics need more than one category about web dynpro abap.
       Our data:
       plant   month   qty
      1000   201101  10
      1000   201102  30
      2000   201101  30
      2000  201103   40
    Now we need one category for "plant" and other category  for "month", Data is qty.

    Hello Bill,
    could you explain bit more about your requirement? How would you like the graph to be renderded with two categories. Can't you club Plant and Month into one single category (1000-201101) and display it?
    BR, Saravanan

  • Can i run the free version of Adobe Acrobat DC across more than one of my laptops during this test run

    Can i run the free version of Adobe Acrobat DC across more than one of my laptops during this test run

    You mean the trial version?  Yes, you can run it on as many devices you want.  Each device will have its own 30-day trial limit.

  • I'm paying for my creative cloud (student version) and my after fx trial version is over but it keeps asking me for the serial number. What can i do?

    I'm paying for my creative cloud (student version) and my after fx trial version is over but it keeps asking me for the serial number. What can i do?

    Moving this discussion to the Creative Cloud Download & Install forum.
    Anebz I would recommend fixing the connection error preventing the applications from contacting our activation server.  You can find details on how to resolve the connection error at Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html.

  • What's the point of having more than one computer "Authorized"?

    Why must it delete all my data just because i want to sync one song from either of my computers. this is stupid and i cannot stand Apple. why can't i sync between both of my computers? <Edited by Moderator>

    Sorry, but I have no clear idea what your problem is or what it is you are trying to accomplish. I know you're frustrated and update; if you calm down and post your situation and goals clearly and calmly, I'm sure someone here can help you sort things out.
    If you're referring to synching to an iPod (my crystal ball is in the shop so I'm guessing) and are trying to put content onto the iPod from more than one computer, you have to set it to manual management.
    Managing content manually on iPod

  • What if i need more than one prepareStatements per connection

    hi all!!
    Please take some time to look into this scenario.
    On the front end: User enters/ updates his/her records and submits. An ArrayList of object goes to backend.
    On back end: i have to loop for the size of the ArrayList submitted and see if some record is to be updated or inserted.
    Now at back end i do following steps:
    I have only one Connection object named connection.
    Step 1:
    query (say query1 )to see if the record in DB exists for the primary key as extracted from the element from ArrayList. So one prepareStatment ( say prepareStatement1) for this. I write a query and execute :
    prepareStatment1= connection.prepareStatement(query1);
    Step2 :
    A query ( say query2) to update Data in DB. And i have a separtae prepareStatement for this and i execute
    prepareStatment2 = connection.prepareStatement(query2);
    Sep3
    A query (say query3 )to insert Data in DB. And i have a separtae prepareStatement for this and i execute
    prepareStatment3 = connection.prepareStatement(query3);
    Step4:
    for: size of arraylist:
    1. take out the element at ith index from the list.
    2. see if the record exists i.e execute step1 and see if resultSet.next() is true.
    3. if record exists step2 applies so execute update query
    4. if record doesnot exist then go to step3 and execute insert query
    A weird thing happened .. insert was running fine but update was not. May be i was not checking appropriately. BUT the error that occurrd was that
    [Microsoft][ODBC SQL Server Driver]Connection is busy with
    results for another hstmt.
    So i changed my path and in loop i prepareStatement and execute query to see if record exists or not and store the result in some boolean variable and then close this prepareStatement. and if the result existed again prepare a statement for update or else prepare a statement for insert and execute the respective.
    and then again close this prepareStatement and go for next iteration of loop
    so each iteration i am preparing statement and then closing it BECAUSE Connection doesnot allow more than one statement per connection at one time. Am i right.??
    what should i do.? Although i have solved problem by closing and preparing in loop but that is so inefficient. Is there some elegant way???
    please reply.
    PS: I am using ms sql server 8.0 as my DBMS. I am developing web application using Sun Creator.

    No, you can use as many PreparedStatements as you like, all from one Connection, and you can keep them open as long as you like. (I do this with no problems.) Where you will run into problems is when you are trying to use two ResultSets at the same time. That's what the error message means, it just doesn't use JDBC terminology.

  • What is the exception for finding more than one row?

    What is the exception if you do a select and get more than one row? no_data_found is the exception for not finding any, what is the exception for finding "too much". Thx

    Funnily enough there is a complete list of predefined exceptions in the documentation .
    Cheers, APC

  • If you have a computer with iTunes and you want to sync do you need your iTunes library opened on the computer?

    For ios 5 I noticed that if I wanted to iTunes sync I had to have the the library opened and running on my computer plus it takes a long time to find my iPod. Do I need to have the iTunes library up in running on my computer to wifi sync or is there something wrong wIth my iPod or computer. I run on a pc

    I, too, hoped that you could buy a film for less having rented it from iTunes. Like a "try-before-you-buy".
    Do it Apple - I'd buy more movies!

  • What are the consequences of having more than one iphone connected to the same itunes on 1 computer?

    I'm wondering if there are any weird problems or glitches to be expected when 2 iphones are connected to the same itunes on a single computer.  My wife and I both have iphone 5's with separate apple IDs.  We only have one computer with one user account so both iphones are signed in to the same itunes.  This seems to be a totally normal thing to do.  Both phones appear when I open itunes and itunes lets me choose which phone I want to look at the information for, sync, etc.  However I have noticed some unusual behavior.  For example, sometimes when I am checking apps or installing new apps on my iphone, even when I am away from home and our computer, her apple ID will show up.  I have never entered her ID into my phone.  Are there any other quirks I should know about and is there anything else to watch out for when we both have our phones connected to one computer in this way?

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • I have created video with music and pictures.  I have exported it. But all that shows is the music no pictures.  I have done this before and it worked ok.  Am I missing something?

    I have created a video with pictures and music.  When i export it, it goes into a MP4 video.  which I have done before and it worked ok.  Now the only thing on the MP4 video is music but not my pictures.
    I am very new to this and have taught myself everything so far.  I have no technical understanding.  So please make any answers as basic as you can.
    Many thanks.

    I am using standard photoshop cs6.
    Regards
    Clifford Marker
    Director – Clifford Marker Associates.
    Email :  <mailto:[email protected]> [email protected]
    Tel : 0208 504 2570
    Tel : 07539 833852
    9 Warners Close, Woodford Green, IG8 0TF
    Web :  <http://www.cliffordmarkerassociates.com/> www.cliffordmarkerassociates.com
    CMA Logo
    This communication and any attachments are confidential and may be protected from disclosure. We endorse no advice or opinion contained in this communication that is not the subject of a contract between the recipient and ourselves. If you have received it in error please notify us immediately and note that any storage, use of disclosure is strictly prohibited and maybe unlawful.
    Whilst we check the communications we send for virus infection, we accept no responsibility for any loss or damage caused to your systems by this communication.
    Those communicating with us by electronic mail will be deemed to have accepted the risks associated with interception, amendment, loss and late or incomplete delivery. They will also be deemed to have consented to you intercepting and monitoring such communications.

  • Should I return this laptop? Ebay purchase. Please help - need more than one opinion! College student here

    First, it was an amazing deal of $525 for a 2011, 6gb RAM, 640 GB hard drive.
    BUT, i took it to the apple store and they said I should return it because...
    1) the screws on the bottom meant the seller refurbished it because they arent apple screws
    2) the hard drive failed their test which was sad for me to see
    3) the RAM sticks are two different sticks, one apple stick and one something else
    4) the keyboard only lights up in the middle which the apple people think is water damage but they cant really tell without opening it. they wont open it because of the screws.
    The reasons I dont think I should return it are....
    1) I can get a squaretrade warranty so if it does break I can return it
    2) $525 for a 2011 mac laptop is sooo good and unheard of, but I may be able to find another similar deal on craigslist so this might not be a valid reason
    3) i've been heavily using it for a week without any issues
    4) i dont want to spend more new hours searching for a laptop
    5) i might not be able to find one on time for when school starts
    BACKROUND INFO #1: it has ZERO dents, scratches, or dings - nothing else except whats listed above is wrong with it
    BACKGROUND INFO #2: I am a college student who has had 7 PC's crash in the past 5 years. I gave up on PC and invested in this mac. I'm tired of losing my files and forgetting to back it up into my emails every week.
    so looking at all that, what do you think I should do? AKA if you were in my shoes you would do what?

    Now you know why it was $525.  Also realize you are getting a computer that isn't a warranty computer.  How much did you save?
    Read the fine print on the Squaretrade warranty.  Make sure they won't turn it away for the same reason Apple does.
    Can you live without the light?  Even if it got wet in the past it boots now.  If I buy a used car and the radio doesn't work but I get it for a really good price then I figure that's part of it if I can live with it and it doesn't interfer with day to day use.
    It would be nice to know why the hard drive failed their test. Obviously if the computer boots it isn't total toast.  Clearly somebody has been inside the computer to add RAM and maybe change the drive?  That doesn't freak me in a used computer.
    Maybe somebody can comment on non idential RAM but with some computers with RAM from a reputable upgrade source it doesn't matter.  Post the exact specs of the second chip.
    My only question is, how up-front was the person from whom you bought the computer?  Did they tell you about the light?  It isn't a critical part but it is something you can assume to be working unless they tell you it isn't.  If they didn't, what else didn't they tell you?
    Screws will freak Apple Service because they only look at stuff where they know 100% what's been done to it and nobody not-certified has messed with it.  I have done all kinds of things to my computer that would have voided the original warranty 20x over but it long ago went out of warranty.  It purrs.

  • Why does it need more than one click to follow a link on my friend's laptop?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/824689]</blockquote><br>
    I sometimes uses my friend's laptop when in room.
    but when I use the laptop, I always have to click numerous times before it follows the clicked link.
    On facebook, google, yahoo.. just everything as long as it is a web page.
    But it does not happened when I use my pc in the office. so it must be the laptop..
    any setting needed? I tried to reinstall FF 3.6.15 and windows xp professional sp.2 but nothing solve the problem.
    Like following the email confirmation link from this forum as I register, I need to open and close new tab more than 7x before it says 'email confirmed'.
    Please help...

    It isn't, something has gone awry. Hold the power button for about 10 seconds to perform a forced shutdown. Then restart as normal. When you turn to the System Preferences, Users and Groups tab you will probably find that the account was deleted. But it may not be. If you chose the option to delete the user's folder, make sure that it is indeed deleted. It will probably be a good idea to start in recovery mode - restart holding the command R key - and use Disk Utility to repair the hard drive, just in case.

  • Do I need more than one email address?

    My Internet provider is comcast.net. My emails from there are referred to apple mail. I also have an email address of me.com that seems to exist for me to purchase things from the Apple Store. It has a different address and password than my apple mail account and password. Furthermore, I have a different iCloud email account. And apple has advised me that they have reserved yet another iCloud email account for me with another name.
    Can someone help me understand how many of these accounts do I need or that I must have in order to synch up my desktop iMac, iPhone and iPad?also, do the iCloud email accounts cost more through my wireless provider AT&amp;T?
    Thank you.

    Welcome to Apple Support Communities
    Your @me.com address is enough to use iCloud. Furthermore, even the @comcast.net mail address works except for Notes and Mail.
    What Apple was referring with "they have reserved yet another iCloud email account" is that you can create a @icloud.com address if you want, but if you want to keep the @me.com email address, continue using this email address.
    JFB3978 wrote:
    do the iCloud email accounts cost more through my wireless provider AT&amp;T?
    Mail is free, so you don't have to pay for iCloud mail addresses. Note that some carriers may charge you for using their mobile networks

Maybe you are looking for