External calender Issue

user is getting external calendar invite but it’s not showing in her calendar. If she accept then it shows in her calendar.Exchange 2007sp3 rollup
12 outlook 2010 . We are migrating users in Ex2013

Hi,
What's the behavior in Outlook Web APP? And have you set "ProcessExternalMeetingMessages" to true on Exchange side?
More reference about Set-CalendarProcessing cmdlet for Exchange Server 2013, Exchange Online:
http://technet.microsoft.com/en-us/library/dd335046.aspx
Regards,
Ethan Hua
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Essbase 6.5 External Authentication Issue!! Urgent Please!!

    Hi all,
    I am great trouble over an external authentication issue in Essbase 6.5. I request you all to please give me your feedback on the same as soon as possible.
    I am in a situation where I need to get my Essbase 6.5 external Authentication converted from LDAP to Active Directory services.
    I suppose there has been necessary changes done to the .cfg file for the same. However, I think I am getting an error
    "User [vikc]'c external authentication protocol [MSEX]'s password check module is not loaded".
    Please let me know if you have come across such an issue earlier and can anybody to able to help me with the same.
    Its kinda Urgent. so any replies for the same will be appreciated.
    Thanks and Regards,
    Vikram

    Vikram,
    Yes you will have to reconfigure the CSS.xml and cfg file for external auth.
    Here is the Sample CSS
    <spi>
              <provider>
                   <msad name="full360">
                        <trusted>false</trusted>
                        <url>ldap://192.168.1.100:389/DC=full360,DC=com</url>
                        <userDN>CN=Ravinder Singh,DC=full360,DC=com</userDN>
                        <password>full@360</password>
                        <authType>simple</authType>
                        <identityAttribute>dn</identityAttribute>
                        <maxSize>1000</maxSize>
                        <user>
                             <loginAttribute>sAMAccountName</loginAttribute>
                             <nameAttribute>dn</nameAttribute>
                        </user>
                        <group>
                             <nameAttribute>cn</nameAttribute>
                             <objectclass>
                                  <entry>group?member</entry>
                             </objectclass>
                        </group>
                   </msad>
    Download this toll "http://www.ldapbrowser.com/download.htm"
    LDAP browser to get the perfact DN information.
    Let me know the status
    Ravikant

  • Oracle 11g - External Table Issue SQL - PL/SQL?

    Oracle 11g - External Table Issue?
    =====================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
    It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.
    Edited by: qwe16235 on Jun 11, 2011 11:31 AM

    I'm not sure, but maybe you should get rid of the redundancy that you have in your CREATE TABLE statement.
    This line covers all fields:
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
    {code}
    So I would change the field list to:
    {code}
    DATE1 CHAR (10),
    DATE2 CHAR (10),
    POL_PRTY CHAR (30),
    P_NAME CHAR (30),
    P_ROLE CHAR (5)
    {code}
    It worked on my installation.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Oracle 11g - External Table Issue?

    Oracle 11g - External Table Issue?
    =====================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ------ ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
         It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)     
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.
    Edited by: qwe16235 on Jun 10, 2011 2:16 PM

    The following worked for me:
    drop table p_load;
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY scott_def_dir1
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    badfile scott_def_dir2:'p_load_%a_%p.bad'
    logfile scott_def_dir2:'p_load_%a_%p.log'
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
    Note that I had to interchange the two lines:
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    Just to get the access parameters to parse correctly.
    I added two empty lines, one in the middle and one at the end - both were rejected.
    In the log file, you will see the rejectiions:
    $ cat p_load_000_9219.log
    LOG file opened at 07/08/11 19:47:23
    Field Definitions for table P_LOAD
    Record format DELIMITED BY NEWLINE
    Data in file has same endianness as the platform
    Reject rows with all null fields
    Fields in Data Source:
    DATE1 CHAR (10)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    DATE2 CHAR (10)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    POL_PRTY CHAR (30)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    P_NAME CHAR (30)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    P_ROLE CHAR (5)
    Terminated by ","
    Enclosed by """ and """
    Trim whitespace same as SQL Loader
    KUP-04073: record ignored because all referenced fields are null for a record
    KUP-04073: record ignored because all referenced fields are null for a record
    Input Data:
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    4-Aug-70,20-Jan-75,Independent
    Result:
    SQL> select * from p_load;
    DATE1 DATE2 POL_PRTY P_NAME P_ROL
    20-Jan-66 22-Nov-69 Democratic John MMM
    22-Nov-70 20-Jan-71 Democratic John Jr. MMM
    20-Jan-68 9-Aug-70 Republican Rick Ford Sr. MMM
    9-Aug-72 20-Jan-75 Republican Henry MMM
    Regards,
    - Allen

  • 10.4.3 External Keyboard Issue

    Greetings,
    I seem to be having an external keyboard issue. To give some background, I am on a fresh install of OSX, completely patched up to 10.4.3 via software update. I just purchased an Apple USB Keyboard and after plugging in the keyboard I noticed something funny with the keyboard layout. The HOME key doesn't work and the END key is page down, plus delete doesn't work at all. I tried plugging in this keyboard to my PC and it works beautifully.
    Now I believe this issue is being caused by the iBook using the cramped keyboard layout and not the full key layout of the external one I just installed. Every piece of help information I find on the subject either points me to menu options that don't exist (my Keyboard & Mouse -> Keyboard menu is quite clean with only 3 options to adjust typing speed) and some of the topics on these forums don't seem to cover it, any suggestions?
    -Pixelmartini
    Apple iBook G$ 1.33GHZ   Mac OS X (10.4.3)   Apple USB Keyboard

    I just installed the 10.4.3 combo update and still no effect on the keyboard. A few help topics I found on this issue point me to changing the keyboard layout in international, but that isn't working at all. Some of the keyboard & mouse options the other help documents point to are missing as well. I have only 4 options for the keyboard options pane and none of them are about configuring an external keyboard so something must be wrong here.
    I checked all the keys and it appears the iBook is recognizing the keyboard, however instead of modifying the input layout of the keyboard to the full size of the keyboard, it is applying the same key shortcuts that are on the iBook 12". So this means forward delete doesn't work, home and end are the same as page up and down. When I use control and any of the arrow keys I get the iBook key layout shortcuts such as page up/down and home/end.
    Somewhere, I hope there is some kind of driver I can install to force the iBook to change the keyboard layout on my apple keyboard to a regular one instead of a shortcut version on the iBook.
    Apple iBook G$ 1.33GHZ   Mac OS X (10.4.3)  

  • 10.5.6 Update USELESS!!! External Display Issues Still remain!

    The external display issues remain, even after installing the update.
    I'm sick of this!
    Is it a hardware issue or software related?
    Are the 9600 graphics chips defective?
    Come on Apple and be honest to your customers, we all paid a lot of money for these systems!
    Does anyone out there know where can I complain to?
    I need an email address or something that is not directed at iphones or ipods!
    Cheers.
    <Edited by Moderator>

    I'm not sure what to make of this at this point. I ordered a CTO 2.8GHz with 4GB RAM and 320GB HD the day they were announced. First week or so, few if any problems. Then the "UHF" like bands of static began to appear randomly. I use my computer 90% of the time driving an external monitor. I use a separate set up at home and work with duplicates of all cables. The problem occurs on both. I spoke with Apple Care - they patched me over to support and moved me up to Tier one pretty quick, even had me send in my System Profiler information for every combination of screen and graphics card. Then they emailed me a program to capture my monitor info again with every combination of screen and graphics card. No solution. They finally asked to "capture" my computer for their labs and sent me a new one.
    Once again, about 2 1/2 weeks of smooth sailing and bam, same issues now occurring. If it's a driver issue, why is everything fine for so long? Also, 10.5.6 and the new firmware have failed to address. Given my above exchanges with Apple, they certainly can't claim they don't know about it.
    I've been using Apple Products for a long time. I've seen some real buggy stuff - like when File Vault first came out but this is the worst I've experienced. Seems like poor quality control. If it's a select few machines, I appear to have won the lottery as I've had two of them.
    I'm sure this issue is much more wide spread as it is a non-issue if you only use the internal display. Only people consistently driving an external display will even know there is a problem.

  • External HD issue

    I'm working on a MacBook Pro mid-2010 17 in. Running Mac OS Lion 10.7.4
    This issue is a self inflicted issue.  I purchased a Seagate Backup Plus 3 TB external drive.
    Everything was cool, I bought it to backup recordings made using EyeTV to free up hard drive space so I didn't use it as a time machine backup.
    I has only one connection type and that is USB 3 which is backwards compatible to the MBP USB 2. 
    Had no problems backing up my files.  Till one time I was transferring a file and accidently walked by and caught the USB cord with my foot thus unplugging it while in the process of coppying files. Of course on screen I got the warning that the drive was not put away propperly and may result in data loss, etc.   Upon plugging it back in the drive would not mount on the desktop.  Instead it would say the drive is unreadable and that I could either eject, ignore, or initiallize.  I tried ignoring and then using Data Rescue 3 external drive recovery and it wouldn't scan it because it wasn't formated.  So I tried to initiallize with just a standard erase.  Thinking maybe once formatted I could see if I could recover anything.  But got the error that it couldn't erase because it couldn't write to the last block.  So I can't mount it, can't scan it, can't repair it using disk utility, can't erase using disk utility.  On the bright side is that even though the files on there are not on my computer anymore (no I don't have a time machine backup setup on this mac), there is nothing on the drive that is criticaly important that the world will end if I dont' get them back.  It's mostly random shows and such.  However I've just tried the different levels of erase with security and nothing will format this drive.  Oddly in the capacity under disk utility it lists as 4.14 GB not 3 TB  Smart status reads as Not supported, and Partition Map reads Unformatted. 
    Is there any way or any utility that may let me format this drive.  I don't care about what's on it but I want to be able to use it again. 
    Thanks!

    Thanks Pat,
    So will this have anything to do with the transferre being smaller in size?
    And how can i solve this? if i change the HD over to OS journaled will i lose all the files on the original HD?
    Dave

  • Mid 2013 Macbook Air External Monitor Issues

    I am running on 10.8.4 and am using a fully upgraded 2013 macbook air. i7, 8gb of ram, 512 ssd. Recently, I have been having issues connecting my computer to external displays. I have reset the PRAM, and the SMC multiple time with no luck. I have also deleted the windowserver plist files and that did not seem to do anything as well. The issue is as follows: when I plug in my laptop through the thunderbold port to the hdmi on my tv, the screen on my laptop goes blue, as normal, but then nothing shows up on my tv. I have used the same cable with my roomates macbook and it works just fine, on multiple tv's. Mine is not able to connect to any of those tv's. When looking at the display settings in system preferences, I do not see that it ahs detected any external displays. I am not sure what to do at this point.

    I think I have fixed it somehow. I reset the PRAM while the tv was plugged in and it worked, but it seems that something may be wrong with my video card, because there was a bunch of fuzziness and weird colors on my computer's monitor for a few seconds before everything went to normal

  • MacBook Pro 13" Early 2011 - External display issues

    I have an early 2011 MacBook Pro 13" (2.7GHz version) that I am using with an external non-Apple display.  I am having issues when MBP goes to sleep or trys to sleep the display.  The external display exibits one of a number of problems:  goes dark but does not power off the backlight or freezes up and requires being powered off then back on.  My display is an ASUS VW266H but it seems like this problem, or other similar problems, are happening with other non-Apple displays.
    In calling Apple tech support of 5/27/11 they indicated that this is a known bug and they are working on a fix.  There was software update released 5/4/11 to  "improve graphics stability, address issues with external display" named MacBook Pro Software Update 1.4 (http://support.apple.com/kb/DL1382).  I downloaded this and applied it but it made no difference.
    I experienced these problems with three different video adapters:  Apple's own mini DP to DVI, Belkin mini DP to HDMI and another brand of mini DP to HDMI also sold by the Apple store.
    So the questions are:
    1) Will Apple release another updated to address this incompatability or are they done with the issue given that they released the update mentioned above?
    2) Has anyone compiled a list of monitors that are know to work with these most recent MacBook Pros (the early 2011 versions with the Thunderbolt/mini DP combined ports)?
    If you have used the MacBook Pro 13" early 2011 with an external monitor please respond to this post with your experiences so we can all know what works.

    With my new 2011 13" MBP I'm having no latency issues using my '08 Samsung SyncMaster 2253BW DVI (digital) monitor. Sleep function awakens fine, goes to sleep 3-4 sec.
    I'm using a cheapie model Syba MDP to DVI connector; here on Amazon:
    http://www.amazon.com/Syba-High-Quality-DisplayPort-Adapter/dp/B00342UT02/ref=sr _1_1?ie=UTF8&s=electronics&qid=1307389450&sr=8-1
    I bought 2 in case one craps out on me...knock on wood. Good luck hope you find a solution.

  • Timeline and External Video issues

    Have an issue with output. My external video is not showing up to play from the timeline. I am getting neither audio or video. Have checked all firewire ports, used 2 different monitors, 2 different decks, 2 different firewire cable and even tried it without the external hard drive. It shows in the view menu that all frames are checked and the output is set to the correct monitor. Refreshing the external devices does not work either. Ran FCP Rescue. Still did not fix the problem. The Canvas window is sized to fit in the window. Capturing video and audio works great. Just output and monitoring it while editing. Can I get an answer. It is the latest FCP, 6.0.2. Is this a problem with the new quicktime 7.3.1?
    This is an emergency. Any help would be appreciated.

    You can't monitor SD without a 3rd party card.
    Perhaps you mean the material is DV?
    You don't send DV material directly to a monitor - you send it out via firewire to some sort of DV/analog conversion then to a monitor.
    Perhaps your post was not clear?
    x

  • Mavericks and unmounting external drive issues upon sleep

    Greetings fellow Mavericks users,
    I'm hoping someone here can provide some insight as to how to correct the issue I'm experiencing.
    Little background:
    I was using 10.6.8 for years on a 2008 Mac Pro.  I saw no reason to update the OS until I recently acquired a USB 3.0 PCI card and an external drive.  In order to use my new hardware, I had no choice but to upgrade to a new version of OSX.  Rather than spend money, I took advantage of the free 10.9.2 upgrade available for my machine.  The upgrade went surprisingly well with no major hiccups or problems encountered.  Yes, a few apps and programs I had running prior to the upgrade were no longer compatible but in the grand scheme of things, my Mac Pro was still alive and kicking along with my most important programs and data.  In fact, the upgrade to 10.9.2 fixed a sleep issue I had with 10.6.8 which required the use of an app called PleaseSleep.  I don't need that app anymore as the machine goes to sleep and wakes up fine.
    Now, on to my dilemma.  Prior to the upgrade, I was using an external USB 2.0 drive to house media that I'd share between multiple network devices around the house via SMB (AFP stinks in this regard, hence my refusal to use it); i.e. BoxeeBox.  I had run out of space on the USB2 drive hence the need to move everything to my new external USB3 drive that's connected to an internal USB3 PCI controller. The first problem I ran into was that Mavericks now uses Apple's own iteration of Samba (SMB2).  After a bit of head scratching and research, I used an application called SMBUp as a replacement to Apple's SMB implementation.  That's one problem solved.  The next thing that I kept running into was that whenever the machine would sleep then wake up again, I'd get an annoying "Disk was not properly ejected" error message.  After more head scratching and research, I've discovered that this appears to be a bug in OSX and how the OS interfaces with 3rd party USB controllers.  Fine.  I purchased a small app called Jettison which for all intents and purposes unmounts any external drives automatically before allowing the system to sleep.  This is where my long-winded (apologies) description above starts to come into play.  Now that I have the SMB issue figured out and am using Jettison to eject this USB3 drive when the machine sleeps, I've discovered that I'll still get the "Disk did not properly eject" error message despite Jettison IF there are users connected to the USB3 media drive.  Is there a work around this where I can either get Jettison or Mavericks to kill the network connection to the share drive before it's unmounted prior to the machine sleeping?
    TL:DR?
    Using Jettison with Mavericks, I'm still getting "Disk did not eject properly" when waking the machine from sleep mode.  Any way to fix this?
    Thanks in advance for any help/suggestions provided.

    I had the same problem with Time Machine and solved it by enabling "Enable Power Nap" in Energy Saver:
    System Preferences...
    Energy Saver
    Restore Defaults
    Check "Enable Power Nap: While sleeping, your Mac can back up using Time Machine and periodically check for new email, calendar, and other iCloud updates."
    2013 21.5 iMac
    OSX Mavericks
    Seagate 1 TB slim USB 3.0 (power is drawn from USB port), formatted to Mac Journaling File System

  • ITunes media folder on external HD issue...

    So I have a quick question...
    I've been using my external HD to house my iTunes library for over a year now. No issues, it's been working great. When I add new music to my library on my computer, it copies the files to my HD, or just reorganizes the files that are there.
    Now.. suddenly.. it's having issues.
    I tried clearing out the library on my computer to reimport some key albums I wanted. I notice now that my iTunes is creating a second Music folder inside my already designated Music folder to place the folders... it's now moving all the albums I import from one directory to the other, and I can't figure out how to make it stop.
    I've already made sure the iTunes Music folder on my computer is empty, and I've changed the designated iTunes Media folder several times, working fine, then putting it back to External HD > Music .... and it decides no music shall be placed here.
    For easy reference, it's creating a path like this: External HD > Music > Music
    Eh? Help is appreciated... Thank you guys.

    I've been using my external HD to house my iTunes library for over a year now.
    I tried clearing out the library on my computer
    I thought you just said the library was on your external drive.  What's iTunes doing putting things on your computer?
    How exactly did you do this move in the first place a year ago?  What was it you did recently as part of this cleaning?  I strongly suspect that's where things went wrong (maybe at both stages).
    iTunes: How to move [or copy] your music to a new computer [or another drive] - http://support.apple.com/kb/HT4527
    Quick procedure if you use iTunes' default preferences settings:  Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive.  Open iTunes and immediately hold down the Option (alt) key (shift on Windows), then guide it to the new location of the library.
    Do not confuse moving your whole folder and library with moving just media files as in
    iTunes for Mac: Moving your iTunes Media folder - http://support.apple.com/kb/HT1449
    If you did the move using just preferences settings then you did not move the whole library, you only told iTunes where to start storing future media.

  • Depreciation for 53 weeks in the weekly Calender Issue

    Hello
    We are currently facing an issue with caliculation of depreciation in AA for FY 2011. At the company GL follows the 4-4-5 weeks pattern.The depreciation follows the weekly calander whichtypically have 52 weeks. Every 6 years we are going to have 53 weeks. Next FY 2011 is going have 53 weeks (4-4-6 weeks for 4th QTR For FY2011 only)...the FY is going to start from 26th Dec 2010 - 31st december 2011.Due to this depreciation needs to be
    caliculated for 6 weeks for period 12,2011 instead of 5 weeks done in previous year.
         i have tried various approaches like changing the weekly calander to 53 weeks, this
    is forcing us to change the past year calander also to 53 weeks.
    Another approach i tried is
    1) Created a seperate FY variant and created calender for FY2011 in that.
    2) when tried to assign the new FY variant for Asset accouting, it giving me error message
    as FY 2010 is not maintained in the new FY variant....
    Can any one please let me know how can we address the 53 weeks issue... Any responses will
    highly appreciated...
    Thanks in Advance...
    Regards
    NN

    Hello eashwar
    Thanks for your reply...the depreciation in 4th qtr ,2011 should have more depreciation compared to any quaters as its got 6 weeks... having the depreciation base method as "percentage from Useful life" is not giving the expected results...
    Please let me know if their is any other thing we can check in the system...
    Regards
    NN

  • My external display issue is driving me nuts!

    I am ready to scream! I have a newish MBP and an external SyncMaster225bw that was working for awhile nicely. Then I upgraded to 10.5.2 including the graphics update. Then it no longer worked. Next I did an Archive and Install and it was working again but in the last week it back to not working. It used to be that I would boot up my MBP (external monitor not plugged in) and then plug in the external monitor. That was after the 10.5.2 + graphics update. Then I did the Archive and Install and I could leave the external monitor plugged in. Oh, I did not install the graphics update after doing the A&I. Now, it doesn't matter when I plug in the external monitor, it just doesn't work right! Up in the Menu Bar where the Displays icon is, it sometimes isn't called SyncMaster- sometimes it's called Display. So it's not even identified correctly. Then none of the resolution choices that I have in the window display it so that it's not distorted. I click on Detect Displays and it doesn't make any difference. I unplug it and plug it in and it doesn't make any difference. And it will change the background picture on MBP also! So then I have to find the picture I want again..... The background picture for the external monitor would sometimes display but today it is the Time Machine background. Also in the Display Preferences pane, under Arrangement, it looks like the external monitor is the smaller of the 2 and square in shape which it is not. So as you can tell there are lots of issues going on and it's giving me a headache!!! I know there are others out there with the same issue or close to mine but I just had to rant. I am very frustrated as you can tell. When I get back from vacation, I can call Apple to see if they can help me but since it's not an Apple external monitor, I am not sure how much they can/will help me..... Judy

    The issue was resolved ages ago but I don't remember how....... sorry.

  • External Monitor Issues

    Whenever I connect my external monitor (Dell 1600x12000) My laptop gets really slow and my internet connection plummets, please help!!

    Hi@Illumenated
    Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your HP Pavilion G6 Notebook PC and issues with performance. Here is a document to help with performance being slow.
    Here is a link to the HP Support Assistant. Just download and run the application and it will help with the software and drivers on your system, as this could be an issue.
    Hope this helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for