XCode 3.2.4 - issue after filename or path change

steps to reproduce:
this code use to work, it is designed to display a random image in a UIImage field in my app.
Trying to troubleshoot an issue where I was getting "all black" displaying occasionally, instead of a random.jpg type image, I changed the filenames to make a folder full of random image's filenames even shorter, and changed the relative code to reflect the change:  now it NEVER works, although either version builds with no errors. The arc4random number (in blue) matches the item count in my folder full of random images.
Is XCode having trouble clearning out the cruft or perhaps this is a bug ?
-(IBAction)RANDOMPRINT
     //this is the old code which used to work
          int randomInt = (arc4random()%89) +1;
  //convert INT to string
          NSString *fileName = [NSString stringWithFormat: @"fingerprint%d.jpg", randomInt];
  //load UIImage from the filename
          UIImage *image = [UIImage imageNamed:fileName];
  //display UIImage in UIImageView
          [imageView2 setImage:image];
-(IBAction)RANDOMPRINT
     //this is the new code which never works
  int randomInt = (arc4random()%89) +1;
  //convert INT to string
  NSString *fileName = [NSString stringWithFormat: @"print%d.jpg", randomInt];
  //load UIImage from the filename
  UIImage *image = [UIImage imageNamed:fileName];
  //display UIImage in UIImageView
  [imageView2 setImage:image];
Tried:
1. I checked the IB file and even rebuilt the "wiring", its done correctly, same way my other image fields work and they are operating correctly.
2. tried doing the "clean all targets" thing but that didnt get it
3. tried restarting laptop
4. ran Repair Permissions ....
Any other suggestion would be most welcome. Perhaps this is a bug ?

ok circling back to my  original issue, I may have figured out the problem:
my folder full of images had 3 char padding, ie:
filename001.jpg
filename002.jpg
filename003.jpg
filename061.jpg
and as you can see from my code below that was not reflected in the code statement ala:
(arc4random()%61) +1;
  //convert INT to string
          NSString *fileName = [NSString stringWithFormat: @"print%d.jpg", randomInt3];
apparently you have to have it like this:@"print0%d.jpg"
This doesnt strictly make sense to me since the "d" should just be a wildcard for anything that follows.
But somehow adding a zero makes my code work again. 
As far as the renaming of Actions and Outlets it would appear under certain circumstances this is a known issue. Research it yourself, if you dont believe it.
In my case, renaming an Action in my code, saving the Project, then renaming it back, disabled the Action. The expected result is that it would "work" again. That didnt happen. This was a rename of one action in the .h file, nothing more.

Similar Messages

  • Goods Issue after STO warning "Price change of  % in month / for mater"

    Dear all,
    This is my process for Inter-co plant stock transfer:
    1. Create STO via ME21N
    2. Raise Goods Issue from source plant via MIGO_GI
    3. I get this warning message "Price change of  % in month / for mater", details as below:
    Price change of  % in month / for material
    Message no. M7306
    Due to action taken the quantity and value of the material  are changed. This leads to calculation of a new moving average price: The new price deviates from the old one by .
    Procedure
    Before you carry out the posting, you should determine the reason for this difference.
    You could check the material line items to find out which postings have led to the current moving average price. If the action taken refers to a purchase order, you could contact Purchasing to find out whether a mistake was made when entering the order price.
    Has anyone seen this before and what should be the cause of action? Well, I was still able to proceed with the GI successfully but I'd like to know what has caused the message?
    Thanks.
    Steven

    Hi Manohar,
    My previous stock was 0.
    So i received material  100 qty at 20 INR.
    Total stock value = 2000
    Now as per you:
    2000 / ( 0 *6) * 100   =    33.33
    I am not getting 390,17 %
    Utsav

  • DataGridColumn renderer issues after headerShift and state change

    I have an mx:DataGrid component that is exhibiting some odd behavior.  I have defined two states in the containing parent.  I have also defined itemRenderers and text values for each of the DataGridColumns based on the state of the parent container, as follows:
    <s:Panel>
         <s:states>
              <s:State name="state1"/>
              <s:State name="state2"/>
              </s:states>
         <mx:DataGrid id="myGrid" width="100%" height="100%">
              <mx:columns>
                   <mx:DataGridColumn id="dgc1"
                      dataField="value1"
                      headerText="Static Header Text"
                      itemRenderer="com.renderers.StaticRenderer"/>
                   <mx:DataGridColumn id="dgc2"
                      dataField="value2"
                      headerText.state1="DGC2 State1 Header Text"
                     headerText.state2="DGC2 State2 Header Text"
                      itemRenderer.state1="com.renderers.value2.State1Renderer"
                     itemRenderer.state2="com.renderers.value2.State2Renderer"
                     excludeFrom="state1"/>
                   <mx:DataGridColumn id="dgc3"
                      dataField="value3"
                      headerText.state1="DGC3 State1 Header Text"
                     headerText.state2="DGC3 State2 Header Text"
                      itemRenderer.state1="com.renderers.value3.State1Renderer"
                     itemRenderer.state2="com.renderers.value3.State2Renderer"/>
                   <mx:DataGridColumn id="dgc4"
                      dataField="value4"
                      headerText.state1="DGC4 State1 Header Text"
                     headerText.state2="DGC4 State2 Header Text"
                      itemRenderer.state1="com.renderers.value4.State1Renderer"
                     itemRenderer.state2="com.renderers.value4.State2Renderer"
                     excludeFrom="state1"/>
              </mx:columns>
         </mx:DataGrid>
    </s:Panel>
    This all seems to work fine.  As the parent's 'currentState' property changes, the proper columns are included in the layout and the proper text and items are rendered properly.
    The issues seem to come in once the user starts to shuffle the columns around. More specifically when the user is in state2 (which has more columns visible) and begins to mix things up. Once the user re-arranges the columns (by dragging) and THEN tries to start flipping back and forth between states, odd things happen:
    1. columns that should be excluded seem to be visible (at least the header text would lead you to believe this)
    2. empty columns appear (header text value and no item data)
    3. columns header text values dissappear (no header values displayed)
    4. even columns (like dgc1) which have 'static' values are affected by this (blank values, not visible, etc).
    Has anyone experienced this problem, or does anyone have feedback on using this technique to hide/unhide columns in a DataGrid based on a components 'state' property?
    Thanks,
    Muad'Dib

    I have an mx:DataGrid component that is exhibiting some odd behavior.  I have defined two states in the containing parent.  I have also defined itemRenderers and text values for each of the DataGridColumns based on the state of the parent container, as follows:
    <s:Panel>
         <s:states>
              <s:State name="state1"/>
              <s:State name="state2"/>
              </s:states>
         <mx:DataGrid id="myGrid" width="100%" height="100%">
              <mx:columns>
                   <mx:DataGridColumn id="dgc1"
                      dataField="value1"
                      headerText="Static Header Text"
                      itemRenderer="com.renderers.StaticRenderer"/>
                   <mx:DataGridColumn id="dgc2"
                      dataField="value2"
                      headerText.state1="DGC2 State1 Header Text"
                     headerText.state2="DGC2 State2 Header Text"
                      itemRenderer.state1="com.renderers.value2.State1Renderer"
                     itemRenderer.state2="com.renderers.value2.State2Renderer"
                     excludeFrom="state1"/>
                   <mx:DataGridColumn id="dgc3"
                      dataField="value3"
                      headerText.state1="DGC3 State1 Header Text"
                     headerText.state2="DGC3 State2 Header Text"
                      itemRenderer.state1="com.renderers.value3.State1Renderer"
                     itemRenderer.state2="com.renderers.value3.State2Renderer"/>
                   <mx:DataGridColumn id="dgc4"
                      dataField="value4"
                      headerText.state1="DGC4 State1 Header Text"
                     headerText.state2="DGC4 State2 Header Text"
                      itemRenderer.state1="com.renderers.value4.State1Renderer"
                     itemRenderer.state2="com.renderers.value4.State2Renderer"
                     excludeFrom="state1"/>
              </mx:columns>
         </mx:DataGrid>
    </s:Panel>
    This all seems to work fine.  As the parent's 'currentState' property changes, the proper columns are included in the layout and the proper text and items are rendered properly.
    The issues seem to come in once the user starts to shuffle the columns around. More specifically when the user is in state2 (which has more columns visible) and begins to mix things up. Once the user re-arranges the columns (by dragging) and THEN tries to start flipping back and forth between states, odd things happen:
    1. columns that should be excluded seem to be visible (at least the header text would lead you to believe this)
    2. empty columns appear (header text value and no item data)
    3. columns header text values dissappear (no header values displayed)
    4. even columns (like dgc1) which have 'static' values are affected by this (blank values, not visible, etc).
    Has anyone experienced this problem, or does anyone have feedback on using this technique to hide/unhide columns in a DataGrid based on a components 'state' property?
    Thanks,
    Muad'Dib

  • Iphone 5 issues after IOS 8.2 update: my husband's phone and my phone get the same phone calls ONLY when we are home.  Any suggestions on where to look to fix this?

    Iphone 5 issues after IOS 8.2 update: all the iphones in the house receive the same phone calls ONLY while we are at home.  Any ideas on how to fix this?

    That is a new "feature" described in Connect your iPhone, iPad, and iPod touch using Continuity
    You can turn it off by going to Settings > FaceTime and changing "iPhone Cellular Calls" to off

  • Authorization issue after the Support packs upgrade

    We're having problem on authorization issue after the SP upgrade.
    One issue if "You are not authorized to call up line item display" using FCH1 and FS10N tcodes.
    And the SU53 showing problem on S_TCODE FAGLL03.
    How are we going to solve this issue? We dont want to add this missing auth object on all our finance roles.
    Thank you in advance.

    How can i send you the trace file? What is your email address?
    If I were you, I won't do that. Did you not ever sign some confidentiality agreement? I wonder.
    Anyhoo... (copy right @ David)
    What are the objects been caught in category RC=4, RC=12?
    Relate them with functional aspect of the transaction (error screen)
    Edited : You can paste RC=4, RC=12 objects here without customer specific value if you want to.
    Regards,
    Arpan Paik
    Edited by: P Arpan on Aug 23, 2011 2:36 PM

  • WiFi issue after 6.1.2 upgrade

    I upgraded my OS to 6.1.2 and now I'm having troubles connecting to the internet at work.  I did reset my network settings and inputted the appropriate password and still having issues.  It identifies the network but when open safari or an app requiring internet connection it goes nowhere.  Is anyone else having this issue.  Does anyone know how to fix this problem.  Keep in mind my connection works fine at home.

    Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Lumia 1520 Battery Discharge Issue After Updating ...

    After updating to Denim, my Nokia Lumia 1520 started to experience the following symptoms:
    Phone charges to 100%, I disconnect and use an app like Instagram BETA, Internet Explorer, Lumia Camera, or any game--after no more than 5 minutes of use, the phone gives a "Critical Low Battery" alert and shuts down. If I try to restart phone immediately, it makes it to the AT&T splash screen or lockscreen and then same battery message appears and shuts down. If I wait 10-15 minutes after the shutdown to restart phone (without recharging) the phone will stay on, but battery level will report to be in the low 20s or 10s (whereas no more than 20 minutes ago, it was 100%).
    When phone is at 100% battery: I take 2-5 photos or record mere seconds of video and I get the same "Critical Low Battery" alert. Upon restarting, some of the photos or video are nonexistent or corrupt files and battery level is reported at 2-5%.
    However, if my phone is plugged in to charger, none of these "Critical Low Battery" alerts come up and I am able to use phone as usual. Considering that I cannot take a vacation and capture nature's beauty with an AC adapter always connected, this is a serious drawback.
    Steps I've Taken:
    Soft-reset
    Full factory-reset
    Moved all apps off microSD card (this improved situation maybe 5%)
    Disabled almost all background app use in Battery Saver
    Replaced microSD card when I thought this was a memory write/read issue
    Installed "Battery" app to monitor battery use. After 750 data points were logged, my average battery life is reported at "16 minutes," which sounds about right.
    My warranty should be expired since I purchased the phone December 2013, so I'm checking in here if anybody has had any luck with battery replacements or with a solution to this issue? At the same time, this issue arose strictly after updating to Denim and I've seen other users report this EXACT scenario. Is there any hope for Lumia 1520 users on this?
    Other reported cases:
    Battery Issue after Denim update: http://forums.windowscentral.com/nokia-lumia-1520/347112-battery-issue-after-denim-update.html
    Battery critically low and shutdown: http://forums.windowscentral.com/nokia-lumia-1520/342343-battery-critically-low-shutdown.html

    Hi albertico, TeJazz, and Samgh. Welcome to the Microsoft Mobile Community. We understand your situation and in response to this issue, we suggest that you perform the suggestions in the photo attached. If the issue persists, we recommend recovering your phone's software using the Windows Phone Recovery Tool. This link will work regardless of your location. If the same thing happens, it's best to take your phone to the nearest Care Point in your area for evaluation. Backup first to avoid data loss.
    Attachments:
    Battery drains fast.JPG ‏147 KB

  • Issue After Rating setting is enabled to the Discussion Board List in SharePoint 2013.

    Hi ,
    We are facing issues After Rating field is added to the Discussion Board List in SharePoint 2013. We are getting below error while adding a new item or editing a new item. Did anyone got this issue earlier and any solution for this.
    Ashish Kumar Baranwal

    Users which were getting issues actually getting below error:
    [COMException (0x81020014): One or more field types are not installed properly. Go to the list settings
    page to delete these fields.<nativehr>0x81020014</nativehr><nativestack></nativestack>]
       Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String
    bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames,
    Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter
    pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +0
       Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName,
    Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames,
    Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter
    pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +565
    [SPException: One or more field types are not installed properly. Go to the list settings page to delete
    these fields.]
       Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) +146
       Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName,
    Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames,
    Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration, Boolean bPublish, String bstrFil
    Ashish Kumar Baranwal

  • Issue After Rating field is added to the Discussion Board List in SharePoint 2013

    Hi ,
    We are facing issues After Rating field is added to the Discussion Board List in SharePoint 2013. We are getting below error while adding a new item or editing a new item. Please help on this.
    Ashish Kumar Baranwal

    Users which were getting issues actually getting below error:
    [COMException (0x81020014): One or more field types are not installed properly. Go to the list settings page to delete these fields.<nativehr>0x81020014</nativehr><nativestack></nativestack>]
       Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID,
    String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress,
    Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +0
       Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String&
    pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration,
    Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +565
    [SPException: One or more field types are not installed properly. Go to the list settings page to delete these fields.]
       Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) +146
       Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String&
    pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration,
    Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +2336
    Ashish Kumar Baranwal

  • IPhone syncing issues after iTunes upgrade

    Hi
    I just upgraded to iTunes 8.1.1 for Mac. During the install I got a kernel panic and had to restart. iTunes seems to be installed fine. When I connect my iPhone I get messages like "some content will not be copied to the iPhone as this computer is not authorized" or such like. So now several apps, videos and music has been wiped from the iPhone.
    I tried authorizing the computer but I just get "This computer is already authorized".
    there does not seem to be any particular link between the erased content. Some was purchased on the Mac and some on the iPhone, all from the iTunes store. Before I updated iTunes everything synced fine.
    I can d/l the apps again direct to the iPhone but I can't find a way to get the missing music and videos back on the iPhone. Very annoying.
    Would re-installing iTunes help?
    Any ideas?
    Thanks
    Chris

    Hi Chris,
    Try highlighting the one of the songs that will not sync in iTunes> cilck File> Get Info, check the account name and verifying you are authorizing the computer with correct account.
    If the issue persists, try removing the SC Info folder as shown here: http://support.apple.com/kb/TS1389
    If you still see the issue after removing the SC Info folder, try reinstalling iTunes as shown here: http://support.apple.com/kb/HT1224
    -Jason

  • Syncing issues after updating to 10.3.1.55

    After upgrading to itunes 10.3.1.55, today, it no longer recognizes my iPhone 4. I plug it in, the iPhone makes its normal syncing noice. I get a prompt, like always about it recognizing the camera and how i want to handle it. I cancel it, as usual, and then it never shows up in iTunes. I close itunes, connect my phone and it does not start itunes as it normally should. No error messages, just no response. Can anyone help with ideas?

    I had the same issue, after updating to 10.3.1.55 it would error out saying something along the lines of not being able to read the catalog or something.  I think the error even states do a restore to fix it.  Last night that is what I did, clicked restore and then had it transfer all my items back.  I'm glad I had just synced my phone prior to the update so the restore was really current.

  • Issues After Disabling IPv6 on Your NIC on SBS 2008

    If you uncheck the IPv6 protocol from your network interface card on your Windows SBS 2008 server you may see the following issues after a reboot:
    Microsoft Exchange services fail to start
    Server hangs at “Applying Computer Settings…” (can eventually logon after 30 – 60 minutes)
    Network icons show as offline
    Some or all of the following events
    Application Log Events
    Source: MSExchange ADAccess
    Event ID: 2114
    Task Category: Topology
    Level: Error
    Description:
    Process MAD.EXE (PID=2088). Topology discovery failed, error 0x80040a02 (DSC_E_NO_SUITABLE_CDC). Look up the Lightweight Directory Access Protocol (LDAP) error code specified in the event description. To do this, use Microsoft Knowledge Base article 218185,
    “Microsoft LDAP Error Codes.” Use the information in that article to learn more about the cause and resolution to this error. Use the Ping or PathPing command-line tools to test network connectivity to local domain controllers.
    Source: MSExchange ADAccess
    Event ID: 2601
    Task Category: General
    Level: Warning
    Description:
    Process MSEXCHANGEADTOPOLOGY (PID=952). When initializing a remote procedure call (RPC) to the Microsoft Exchange Active Directory Topology service, Exchange could not retrieve the SID for account <WKGUID=DC1301662F547445B9C490A52961F8FC,CN=Microsoft Exchange,CN=Services,CN=Configuration,…>
    – Error code=80040a01.
    The Microsoft Exchange Active Directory Topology service will continue starting with limited permissions.
    Source: MSExchange ADAccess
    Event ID: 2102
    Task Category: Topology
    Level: Error
    Description:
    Process MAD.EXE (PID=2088). All Domain Controller Servers in use are not responding: SBS.sbs2008.local
    Source: MSExchange ADAccess
    Event ID: 2105
    Task Category: Topology
    Level: Warning
    Description:
    Process MAD.EXE (PID=2088). Exchange Active Directory Provider failed to obtain DNS records for domain sbs2008.local. DNS Priority and Weight for the Domain Controllers in this domain will be set to the default values 0 (priority) and 100 (weight).
    Source: MSExchange ADAccess
    Event ID: 2114
    Task Category: Topology
    Level: Error
    Description:
    Process MSEXCHANGEADTOPOLOGYSERVICE.EXE (PID=952). Topology discovery failed, error 0x80040a02 (DSC_E_NO_SUITABLE_CDC). Look up the Lightweight Directory Access Protocol (LDAP) error code specified in the event description. To do this, use Microsoft Knowledge
    Base article 218185, “Microsoft LDAP Error Codes.” Use the information in that article to learn more about the cause and resolution to this error. Use the Ping or PathPing command-line tools to test network connectivity to local domain controllers.
    Source: MSExchangeFBPublish
    Event ID: 8197
    Task Category: General
    Level: Error
    Description:
    Error initializing session for virtual machine SBS. The error number is 0x80040a01. Make sure Microsoft Exchange Store is running. Also, make sure that there is a valid public folder database on the Exchange server.
    Source: MSExchangeTransportLogSearch
    Event ID: 7005
    Task Category: General
    Level: Error
    Description:
    Microsoft Exchange couldn’t read the configuration from the Active Directory directory service because of error: Failed to load config due to exception: Microsoft.Exchange.Data.Directory.NoSuitableServerFoundException: The Exchange Topology service on server
    localhost did not return a suitable domain controller.
    System Log Events
    Source: Service Control Manager
    Event ID: 7044
    Task Category: None
    Level: Warning
    Description:
    The following service is taking more than 16 minutes to start and may have stopped responding: Microsoft Exchange System Attendant
    Source: Service Control Manager
    Event ID: 7022
    Task Category: None
    Level: Error
    Description:
    The Microsoft Exchange Transport service hung on starting.
    Source: Service Control Manager
    Event ID: 7024
    Task Category: None
    Level: Error
    Description:
    The Microsoft Exchange Information Store service terminated with service-specific error 0 (0×0).

    Hi,
    Based on your description, it seems to be the same as the following blog.
    Issues
    After Disabling IPv6 on Your NIC on SBS 2008
    Did you mean that encounter the same issue? If so, there is a resolution in that blog, please check if can
    help you solve the issue.
    If any other issue exists or any update, please don’t hesitate to let me know and provide more details. It
    will help me understand clearly.
    Best regards,
    Justin Gu

  • Performance issue after Upgrade from 4.7 to ECC 6.0 with a select query

    Hi All,
    There is a Performance issue after Upgrade from 4.7 to ECC 6.0 with a select query in a report painter.
    This query is working fine when executed in 4.7 system where as it is running for more time in ECC6.0.
    Select query is on the table COSP.
    SELECT (FIELD_LIST)
            INTO CORRESPONDING FIELDS OF TABLE I_COSP PACKAGE SIZE 1000
            FROM  COSP CLIENT SPECIFIED
            WHERE GJAHR IN SELR_GJAHR
              AND KSTAR IN SELR_KSTAR
              AND LEDNR EQ '00'
              AND OBJNR IN SELR_OBJNR
              AND PERBL IN SELR_PERBL
              AND VERSN IN SELR_VERSN
              AND WRTTP IN SELR_WRTTP
              AND MANDT IN MANDTTAB
            GROUP BY (GROUP_LIST).
       LOOP AT I_COSP      .
         COSP                           = I_COSP      .
         PERFORM PCOSP       USING I_COSP-_COUNTER.
         CLEAR: $RWTAB, COSP                          .
         CLEAR CCR1S                         .
       ENDLOOP.
    ENDSELECT.
    I have checked with the table indexes, they were same as in 4.7 system.
    What can be the reson for the difference in execution time. How can this be reduced without adjusting the select query.
    Thanks in advance for the responses.
    Regards,
    Dedeepya.

    Hi,
    ohhhhh....... lots of problems in select query......this is not the way you should write it.
    Some generic comments:
    1. never use SELECT
                       endselect.
       SELECT
      into table
       for all entries in table
      where.
       use perform statment after this selection.
    2. Do not use into corresponding fields. use exact structure type.
    3. use proper sequence of fields in the where condition so that it helps table go according to indexes.
        e.g in your case
              sequence should be
    LEDNR
    OBJNR
    GJAHR
    WRTTP
    VERSN
    KSTAR
    HRKFT
    VRGNG
    VBUND
    PARGB
    BEKNZ
    TWAER
    PERBL
    sequence should be same as defined in table.
    Always keep select query as simple as possible and perform all other calculations etc. afterwords.
    I hope it helps.
    Regards,
    Pranaya

  • Issue after upgrade the ASA5520 from 7.2.4 to 8.2.5,

    i  am having issue after upgrade the ASA5520 from 7.2.4 to 8.2.5, the LMI  remote session getting disconnect in between in one of the outside  interface
    i  am having issue after upgrade the ASA5520 from 7.2.4 to 8.2.5, the LMI  remote session getting disconnect in between the session at one of the  interface but working fine with another interface,
    i have outside  and backup interface which work on internet failover when internet  routed through backup interface the issue getting started but working  fine if traffic is going via outsid

    i  am having issue after upgrade the ASA5520 from 7.2.4 to 8.2.5, the LMI  remote session getting disconnect in between in one of the outside  interface
    i  am having issue after upgrade the ASA5520 from 7.2.4 to 8.2.5, the LMI  remote session getting disconnect in between the session at one of the  interface but working fine with another interface,
    i have outside  and backup interface which work on internet failover when internet  routed through backup interface the issue getting started but working  fine if traffic is going via outsid

  • I am facing wifi and mobile 2G signal issue after upgrading to IOS 6 from IOS 5 in IPhone 3GS. Please help, restoring setting even didn't helped.

    I am facing wifi and mobile 2G signal issue after upgrading to IOS 6 from IOS 5 in IPhone 3GS. The mobile carrier signal as well as WIFI suddenly drops zero and are then restored automatically. Sometimes i cannot conenct to WIFI even standing infront of WIFI router. Please help, restoring setting even didn't helped.

    Update: my phone's connecting to the WiFi again. I don't know what did the trick. I did nothing since reinstalling the software. It hadn't worked then, it is now. I tried connecting to my dad's phone's hotspot( he uses a Moto G), and it worked. I then tried connecting to the WiFi at a friend's house, and when I came back home, my phone was able to connect to my WiFi! Is it of any significance that my friend's router doesn't require a password? My issue has been resolved( for now; I hope I'm not counting my chickens before they've hatched). For anyone facing a similar issue, I suggest you try everything I did:
    1. Turn your router off for a minimum of 30 seconds, turn it back on and try connecting.
    2. Click on the WiFi network you are connected to, scroll to the bottom, tap "Renew Lease".
    3. Do a soft and hard reset.
    4. Reset network settings.
    5. Back your data up, erase all content from settings menu, restore from backup.
    6. Reinstall your software( put it in recovery mode).
    I am not sure which of the above worked for me. Make sure you try everything. If none of the above works, take it to a genius bar or an authorised service provider. Good luck! :)

Maybe you are looking for

  • Samples for GarageBand and Logic.

    Quite a time ago, I mentioned Pete Thomas's samples. I play tenor sax and learnt about him from his own and the Sax on the Web site. Pete has played tenor with the Fats Domino Touring Band, written for Sound on Sound, taught sax and composing at Sout

  • Issue with OracleHelp loading HelpSet with space in file path

    Hi, I'm running into an issue where I cannot get OracleHelp to load a HelpSet correctly with RoboHelp contains when the file is in a directory with a file space in it. This will load successfully if the path does not contain any white spaces. It look

  • Erratic behaviour

    I am experiencing difficulties with MS Project 2010.  These refer to the following: 1.  I highligh with colors some task lines.  After saving the file, I try to highlight other tasks as and when there are changes.  In doing so, all colors disappear,

  • Partition option not enabled feature in oracle 10g

    Hi, I have installed Oracle 10g on Linux 32 bit. But when I am adding a table with Paritiion its showing Partition not enabled. How to enable the Partitioning option without dropping the database. Kindly any help will be needful for me

  • Converting mp4 files to mp3

    I'm trying to send a song which has been downloaded from i-tunes to my phone via bluetooth, but my phone doesn't have an mp4 player on it, and ive tried converting it but even when I thought I did, i still cant play it on my phone, therefore does any