SMP3.0 SP05 register process and reconnect in native iOS app

Hi,
we do this steps Getting started with SMP3 Native OData iOS apps to get a native iOS application functioning through the SAP Mobility platform version 3.0 SP05 and retrieving data from OData services.
But we do not understand the register process completely.
If we install the app and do the register process and retrieve the data everything is ok. A user with the ApplicationConnectionID is registered in in SMP. But if we start the app again (without a new installation) we do not register the user again an set the connection id we get in the registration process:
[self.clientConn setApplicationConnectionID:[selfreadInPlistMitKey:@"appConnectionID"]];
we set the encryptionKey in the manager and initialize the Cache once for the application launch.
[EncryptionKeyManager setEncryptionKey:key withError:nil];
But if we want to retrieve the data we get a Request Failed.
2015-01-15 18:13:31.885 AuthTest[12663:5b07] Firing requests from DB...
2015-01-15 18:13:31.886 AuthTest[12663:4c07] UrlString:   http://smpServerAdress:8080
2015-01-15 18:13:31.889 AuthTest[12663:4c07] Connectivity changed...
2015-01-15 18:13:31.889 AuthTest[12663:4c07] Detected network...
2015-01-15 18:13:31.889 AuthTest[12663:4c07] Start queue...
2015-01-15 18:13:31.900 AuthTest[12663:4c07] UrlString:   http://smpServerAdress:8080
2015-01-15 18:13:31.906 AuthTest[12663:907] Request Failed
What do we wrong? Where is the different between the request with registration an without.
Thanks,
André

Hi Ali,
thank you but this was not realy what we need. But we can now register without to use the MAFLogonScren but when we whant to open the Online Store we get this error: "OpenStore failed with network error: 401 unauthorized" Do you know what we cvan do against this error or what the reason of this error is?
Here is the code snipped what we use:
    MAFLogonUIViewManager *logonUIViewManager = [[MAFLogonUIViewManager alloc] init];
    NSObject<MAFLogonNGPublicAPI> *logonManager= logonUIViewManager.logonManager;
    HttpConversationManager* httpConvManager = [[HttpConversationManager alloc] init];
    [[logonManager logonConfigurator] configureManager:httpConvManager];
    MAFLogonCore *lc = self.appDelegate.lc;
    MAFLogonContext *context;
    if ([lc unlockSecureStore:@"abcd1234" error:&error]) {
        context = [lc getContext:&error];
    MAFLogonRegistrationContext *regContext = context.registrationContext;
    SODataOnlineStore *onlineStore = [[SODataOnlineStore alloc]
                                      initWithURL:[NSURL URLWithString:regContext.applicationEndpointURL]
                          httpConversationManager:httpConvManager];
    [onlineStore setOnlineStoreDelegate:self];
    [onlineStore openStoreWithError:&error];

Similar Messages

  • Python and PyObjC, developing native Cocoa apps rapidly!

    Python is all grown up it seems for developing native OS X applications. For those who want to check out how to rapidly put together native Cocoa apps in less than half the lines of code and none of the manual memory management of the C derivative languages, Apple now has some articles on the developer site to inspire and to help point the way.
    Although my personal preference is wxPython for making GUI's that will look like native Windows/OSX/Unix applications no matter what platform the python app is run on I still will give PyObjC a go.
    wxPython - http://www.wxpython.org/
    MacPython - http://wiki.python.org/moin/MacPython/
    Using PyObjC - http://developer.apple.com/cocoa/pyobjc.html
    Python/PyObjC Inspiration - http://developer.apple.com/business/macmarket/checkout.html
    Mac Mini (Home), Dell Laptop [removed Windows, installed Ubuntu Linux] (Work)   Mac OS X (10.4.10)   badvista.fsf.org

    Note: Fixed omission of link to checkout
    Quicktime Tour of the Python/PyObjC Application in action:
    http://www.checkoutapp.com/show/quicktours#

  • Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box.

    Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box. Thanks! Olga

    If the clips are not actually missing, you could try to refresh the timeline by using cmd-0 and then going to the timeline options tab. Then select name only where it says "thumbnail display". Press ok to accept the change, then repeat the process to add thumbnails back to your timeline.

  • Have an iMac 2008/09 on starting today I have a white screen, an apple icon and a constant rotating sun, nothing else. I've tried turning off and disconnecting and reconnecting the power lead with the same results. Any thoughts? Many thanks Matt

    Have a 2008/9 iMac on starting up today I have only a white screen, apple icon and a continuous  revolving sun. Have tried turning off and on and disconnecting and reconnecting the power with no affect - any thoughts or advice please. Thanks Matt

    If your iMac came w/system DVDs, do the following:
    Disconnect all devices from the computer then do the following:
    Boot up from your DVD that originally came w/the iMac while holding down the "c" key.
    Select the language you wish to use, and then choose "Disk Utility" from the menu bar.
    Your HD should appear in a panel on the left hand side of the window which opens. Select it and then click on the "repair disk" button in the right hand section of the window.
    Once this process has been completed restart your computer and repair permissions directly from Disk Utility.
    If Disk Utility is unable to complete the repair, you will need to use a stronger 3rd party utility like DiskWarrior, Techtool PRO (not Deluxe) or Drive Genius.

  • Error registering Process Flow Location

    Hi
    I've installed OWB 9.0.4 and successfully registered
    Process Flow Location.
    Then i've added russian lang to Oracle Workflow Repository
    After that when i try to register Process Flow Location
    i get error: RTC-5327 Schema OWF_MGR does not contain an
    Oracle Workflow Repository.
    But i still able to deploy Process Flow Packages
    using earlier created Process Flow Location.
    Thanks

    Vasily,
    This sounds like the known bug 2836447: OWB REPORTS OWF REPOS NOT INSTALLED IF MULTIPLE LANGUAGES ENABLED. The bug was fixed in 9.2 and also should be in the next 9.0.4 patch (9.0.4.11).
    The workaround for now is to run the following in Workflow Schema (owf_mgr):
    update
    WF_RESOURCES
    set
    NAME = NAME || '_' || LANGUAGE
    where
    TYPE = 'WFTKN' and
    NAME = 'WF_VERSION' and
    LANGUAGE &lt;&gt; 'US';
    commit;
    The following removes the workaround and restores the WF_RESOURCES table to their original state. This should be applied when the fixed OWB client has been installed.
    update
    WF_RESOURCES
    set
    NAME = 'WF_VERSION'
    where
    TYPE = 'WFTKN' and
    NAME LIKE 'WF_VERSION_%' and
    LANGUAGE &lt;&gt; 'US';
    commit;
    Nikolai

  • Exchange 2010 disconnect AD user from mailbox and reconnect the mailbox to a new copy of the same user with a different username

    How can i get the following done:
    Exchange 2010 disconnect AD user from mailbox and reconnect the mailbox to a new copy of the same user with a different username?
    i nmust do this for 16 users TODAY, SO PLEASE HELP ME OUT HERE.
    Thanks in advance!!
    kind regards,
    Rene Veldman
    System Administrator Teidem bv, The Netherlands.

    Rene,
    Why are you not changing the username of the existing account, instead of deleting the existing one and creating a new one?
    If you truly need to delete and create new, you can save the GUID for the mailbox (Get-MailboxStatistics <mailbox alias> | Fl MailboxGuid), mail disable the existing account (Disable-Mailbox <mailbox alias>
    will work), clean the mailbox database it was hosted on (Clean-MailboxDatabase
    <database name>), then create your new account and recover the existing mailbox to that new account (Connect-Mailbox -Identity <Guid from before> -Database <Database name> -User <SAM account name of new account> -Alias
    <what you wish to set the alias to>).  In PowerShell, for all steps, you would do the following:
    $MbxAlias = <mailbox alias>
    $NewMbxAcct = <SAM Account Name for new account>
    $NewMbxAlias = <new alias for mailbox>
    $DomCtrl = (dir env:\LOGONSERVER).Value.Substring(2)
    $MbxGuid = (Get-MailboxStatistics $MbxAlias -DomainController $DomCtrl).MailboxGuid
    $MbxDb = (Get-Mailbox $MbxAlias -DomainController $DomCtrl).Database
    Disable-Mailbox $MbxAlias
    Clean-MailboxDatabase $MbxDb
    Connect-Mailbox -Identity $MbxGuid -Database $MbxDb -User $NewMbxAcct -Alias $NewMbxAlias -DomainController $DomCtrl
    You will need to supply the information in bold in the above commands, and you will need to create the new account before you run the above commands.  I include direct use of a specific domain controller so you won't need to worry about replication. 
    If you are changing the account from one domain to another, this will not help, and you will need to wait for replication throughout the process, running the commands individually.

  • I'm asked for my registered phone # and PIN

    Why am I asked to enter my registered phone # and PIN?
    When you call your Skype To Go numbers, you are identified by your registered phone’s caller ID and won’t need to enter your registered phone number and PIN for authentication purposes.
    There are several reasons why you could be asked for your registered phone number and PIN:
    You are calling your Skype To Go number from a phone which is not registered in your account yet. You can register more phones anytime in your Skype To Go account overview.
    You are calling from your registered phone, but you may have made a mistake when entering your phone number in your Skype To Go account. Please check that you entered the correct phone number.
    Your phone does not submit its caller ID. In your phone’s settings, ensure your caller ID is enabled. Your phone may also submit a caller ID different from your actual phone number (e.g. when using an office phone).
    You may be calling an old Skype To Go number which you previously deleted. Please sigh in to your Skype To Go account to ensure you are calling the right number.
    If you are still experiencing problems, then please submit a ticket with customer service, including your Skype To Go number and the time & date you tried calling.
    Why does my verification fail after entering my registered phone # and PIN?
    If you call your Skype To Go numbers from a phone not registered in your Skype To Go account, then we will ask you to enter one of your registered phone numbers along with your PIN for authentication purposes. Should you experience problems during this verification process then please check the following:
    Please ensure you are entering the phone number of one of your registered phones, not the number of the unregistered phone you are actually calling from. You can register more phones in your Skype To Go account.
    When prompted, enter your registered phone number in this format:
    Country code + phone number + the “#” key
    Example 1: You live in the US and your registered phone number is 333-444-5555, then enter:
    0013334445555#
    Example 2: You live in the UK and your registered phone number is 07777-888-999, then you enter:
    00447777888999#
    Please check your registered phone in your Skype To Go account. You may have made a mistake when entering your phone number.
    If you are unsure whether you entered the correct PIN then create a new one
    You may be calling an old Skype To Go number which you previously deleted. Please sigh in to your Skype To Go account to ensure you are calling the right number.
    If your selected PIN starts with a "0" then verification may fail. This is due to technical issues which we are in the process of fixing. Please change your PIN to another one which doesn't start with a "0".
    If you are still experiencing problems, then please submit a ticket with customer service, including your Skype To Go number and the time & date you tried calling.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

    If you have forgotten then these links are the only way to resolve
    http://www.apple.com/support/appleid/
    As long as you have owned the iPhone from new and your Apple id is the one used to activate when new
    OR have you recently purchased the iPhone secondhand ?

  • You purchase properties in Arab game (Sultan desert), while the procurement process and the discount amount lost contact wrote the running game has been cooperation from them but the problem!  I can't buy any properties in the game itself and the science

    You purchase properties in Arab game (Sultan desert), while the procurement process and the discount amount lost contact wrote the running game has been cooperation from them but the problem! 
    I can't buy any properties in the game itself and the science I don't use jailbreak and two free jailbreak is there a program hindered the procurement process so that I can buy anything from the store

    Hello milkisoo,
    Wow! Purchasing a new computer and monitor should be a fun and exciting experience, and instead, it sounds like it’s turned into a complete nightmare. I can only imagine your disappointment when you found two charges relating to its purchase on your debit card account, and I’m sorry for any aggravation this caused. 
    As I want to provide you some piece of mind, I pulled up your order number using your email address attached to the forum. After review of its payment information, I found we collected only one payment.  However, when orders are first placed on BestBuy.com, a pending authorization should show up on your bank card to make sure funds are available for the order until it is fulfilled. From there, the authorization should drop off and the collection charge should appear.  This is the case for your one charge of $1,051.69.
    It also sounds like an error may have occurred when you initially attempted to place your order,  resulting in one of your gift cards not registering properly and the order not being completed.  Your card’s issuing bank doesn’t appear to have recognized this and pushed through the pending authorization. This occurred a second time when your account information didn’t quite match up with what we had on file. Please know that we haven’t ordered a collection of these funds and your issuing bank should release the two pending authorizations within 5 to 7 business days.
    Thank you for posting.
    Alex|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Always have to go through registering process for my ipod's...

    Hey Cats,
    Since upgrading to OS X (10.4.11), every time i plug in my ipod Nano and/or my ipod shuffle, iTunes treats them both as if they are brand new ipod's and tries to get me to register my "new" ipod. I have obliged while online and gone through the process and still, when I plug either ipod in itunes acts as if it is seeing the ipod for the first time. If anyone can offer any guidance on this topic I would appreciate it. Thanks for your time

    Contact iTS Customer Support from this link - http://www.apple.com/support/itunes/
    MJ

  • Renewal process and solicitations

    OK, since there seems to be no real people engaged in customer facing dialog these days I'll take the long shot at resolution by posting in here.
    Two isssues:
    I am primarily concerned with my skype-in number but the problems appear to be system wide.
    1)  I do not want automated renewals to charge any of my credit or debit cards.  Never ever.  Not only with Skype but everywhere.  If I am happy with the service anf still have need of it at renewal time I will happily renew with the payment mechanism of my choice.  It is I who must manage my account balances, not some unknown automated money grabbing machine.
    2)  My account here and most all of my financial accounts are registered to my legal USA address.  My Skype-in number uses the area code for that address.  Therefore most all of my communication is done using American English.  However I spend most of my time living in Latin America and connecting through Latin American services (Mexico and present, Central America at other times).
    Why do you keep sending renewal announcements and solicitations in Spanish?  Just because I'm connecting through an international ISP does not imply that I want or will respond to messages in my non-native language.

    Hi.
    As far as I understand, process and initiate are just naming conventions. What really makes the difference is that, for sync processes you have a single portType with an input/output operation, and for async processes you have two portType definitions, each one containing an input only operation.
    For sync processes, the requestor makes the call and waits for the response, using the same channel (same port).
    For async processes, the requestor makes the call in one port and forget about it. Later on, a callback can be generated through the other port type as a means of notifying the requestor back in an async way.
    Regards.
    Denis

  • Airport disconnects and reconnects

    My WiFi disconnect from the network and reconnects, I know this is not a router/internet provider problem simply because my brother's PC does not disconnect from our internet. Can anyone help me? Is there a way to possibly reset all network settings back to default (if there is even settings)?

    As a test, try creating a new admin user account in System Preferences Accounts pane.
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8235.html
    Log out and log in to the new account. You will be using default user preference settings in the new account and only standard processes will be running in the background (unless you installed third-party software that runs at the system level). Try the same things that caused the problems.
    So this is a test to see if some user settings or processes that run in your pre-existing pre- Snow Leopard user account is interfering with Snow Leopard's AirPort networking.

  • When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.

    Problem:
    When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.
    Any help that you can provide in helping my iPhone accurately sync with iPhoto and iTunes will be greatly appreciated.
    Symptoms:
    1)   Sync:  It’s not completing the sync.  Below, I’ve provided all of my settings from the iTunes Summary tab so that you might tell me if I’ve selected any incorrect options.  I prefer to sync the “old school” way – by connecting to the computer – as opposed to syncing over the cloud. Perhaps this is what’s causing the problem? Here is a list of the steps displayed in the iTunes window as the sync progresses:
    waiting for sync to start (step 1 of 7)
    backing up (step 2 of 7)
    preparing to sync (step 3 of 7)
    determining apps to sync (step 4 of 7)
    preparing apps to sync (step 5 of 7)
    importing photos (step 6 of 7)
    waiting for changes to be applied (step 7 of 7)
    syncing apps / copying 1 of 4 (App name) (step 7 of 7)
    canceling sync
    apple icon
    2)   Photos: I've selected only certain of my iPhoto albums to sync to my iPhone.  All of the albums are correct/complete in iPhoto.  All of the albums are listed on my iPhone, both before and after the sync, but the albums are empty (no actual photos) before and after the sync. Perhaps this is tied to the fact that the sync isn’t completing, but because “importing photos” is one of the steps that the incomplete sync displays, I don’t know.
    3)   Apps: When I launch iTunes and click on the Apps folder under the Library listing, then click on the Updates tab, iTunes searches for any Apps needing to be updated and provides a list.  If I click on Update All, the Apps are successfully updated in iTunes.  But, when I plug in my iPhone so that the updates will transfer to the apps on my iPhone, the updates don’t transfer to the apps on my iPhone and those apps still reflect that they need updating on the iPhone.
    Other Potential Pertinent Info:
    The flash memory hard drive on my MacBook Air recently died (perhaps a month or two ago).  Apple had emailed me about a known issue and literally the next day, my MacBook Air crashed.  I installed a new flash memory drive and re-installed everything from a backup off of an external hard drive.  Everything seems to be working fine; it recreated accurately all of my software and data, including iPhoto and iTunes, the pictures and songs (respectively) for which are stored on that hard drive, as opposed to being on the flash memory in the MacBook Air itself.  However, I don’t recall if the start of the sync problem described herein started happening at the same time that I replaced the flash memory drive.  All I know is that the computer is working perfectly in all respects and that even as the sync is failing, it at least says that it’s doing the right things and looking in the right places (e.g., the list of albums on my iPhone matches the list of albums in iTunes, etc.).
    Settings/Status:
    MacBook Air
    OSX v. 10.9
    iPhoto ’11 v. 9.5 (902.7)
    iPhone iOS 7.0.4
    iTunes v. 11.1.3 (8)
    Summary Tab
    Backups (This Computer)
    Options
    Automatically sync when this iPhone is connected
    Sync only checked songs and videos
    Photos Tab
    Sync Photos from iPhoto (429 Photos)
    Selected albums, Events, and Faces, and automatically include (no Events)
    Albums – 9 are selected

    You need to download iTunes on your computer. iOS 6 requires the latest version of iTunes which is 10.7.

  • I recently ran monolingual and removed all but the intel-64 bit architectures.  Now my iphoto will not open.  Here's the message  that I get. Process:         iPhoto [3543] Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto Identifier:

    I recently ran monolingual and removed all but the intel-64 bit architectures.  Now my iphoto (along with Idvd, garage band, imovie) will not open.  Here is the message that I get.
    Process:         iPhoto [3543]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         ??? (???)
    Build Info:      iPhotoProject-4750000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [109]
    Date/Time:       2011-06-10 21:48:59.821 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          -4164908 sec
    Crashes Since Last Report:           8
    Per-App Crashes Since Last Report:   11
    Anonymous UUID:                      45357CCD-011B-482E-A2EA-CF42096F1321
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: no suitable image found.  Did find:
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.53f13
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST31000528ASQ, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0x24300000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x0901, 0x26400000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000

    Please let me know when you find a fix. I did the same thing and have tried every suggestion I can find online. The message I get is...
    Process:         iPhoto [4991]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         ??? (???)
    Build Info:      iPhotoProject-6070000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [142]
    Date/Time:       2011-06-13 23:39:38.485 +1200
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          -1643976 sec
    Crashes Since Last Report:           35
    Per-App Crashes Since Last Report:   12
    Anonymous UUID:                      D4811036-EA8D-479D-8D9F-11E2FC8F6D4C
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: no suitable image found.  Did find:
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 232.89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898, 3.5 GB
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06610000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x06500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000
    I have reinstalled Mac OSX 10.6.3 and done the updates from there.
    I have reinstalled ilife 11 from disk and done the updates.
    I have deleted all the suggested files and then redone install and updates.
    I have tried just reinstalling iphoto and doing updates.
    Is there any way to get a replacement -  /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
    file with the right architecture?

  • When leave I nano 4th gen connected to either of my cars it no longer restarts playing when car is restarted. Instead it shows 'no entry' in the song title on the car audio display and won't play until disconnected and reconnected.

    Nano has worked fine for a couple of years being left connected to either one of our cars. However, every time car is restarted it won't play without being disconnected and reconnected. I have done a full restore.
    Current cars are Range Rover Sport 2011 and Jaguar XK 2011.
    Has anyone else experienced this issue?
    Thanks,

    I had a similar problem. Try resetting and erasing the phone and restoring from a known good backup.

  • Third Party Process and Inventory

    We are using the SAP function "Third-Party Processing". We are using the function in it's standard (SAP R/3 4.7).
    The auditor now has the following issue: Shipping the goods starts after paying the goods. Out of this, while shipping the goods, we are the owner of them. In this circumstance the ship is our warehouse.
    SAP does not allow an Inventory Management within Third-Party Processing:
    "Since a third-party order involves a movement from the vendor direct to the customer, Inventory Management is not in any way affected. If you wish to document the movement in the system, however, you can create a goods receipt for the third-party order."
    With the SAP functions in this scenario it is correct that the warehouse stock is not being impacted. This is a conflict with the opinion of the auditor.
    Let me explain in detail what is wrong out of the view of our auditor:
    For example we initiated the order of a customer in June and we have paid the goods in June. The shipment starts in June and the goods will arive in July. Due to the fact, that we are the owner of the goods on the ship, we have to increase the stock. This is the opinion of our auditor.
    Does any body know, how to solve the issue? How do you manage Third Party Processing & Inventory?

    Some auditors just dont understand the SAP process. Instead of talking to weak users, they should talk to SAP directly.
    What about shipments from standard sales orders that are shipped end of June and do arrive at the customer in July?
    When do you bill your customer? when the goods arrives there, or earlier? Depending on the Incoterms you may still be the owner until the truck is unloaded.
    If you change your process and post goods receipt to your warehouse, then you show inventory where no physical inventory is, you posted a goods receipt without a physical receipt. I am sure the next auditor will not allow such therotical process.
    Get together, IT consultants of FI and MM and SD, strong business people for the same modules and the auditor, and discuss and find an optimal solution.And let the auidor sign the decision paper!!! Very important, I recently had to convice German auditors because they had different opinion than the Australian and US auditors of the same auditing company (and the issue had nothing to do with local legal requirements).

Maybe you are looking for

  • Send Aknowledge Back

    Hi All, I have a requirement on Invoice interface. for this Interface i need to send Aknowledge back to my source system. Existing process : FILE--->XI---->IDOC At present my IDOC is IDoc is asynchronous in nature only. Here I need to send Acknowledg

  • Need help with ending a game

    i'm making a game at the moment....... i need help with a way to check all the hashmaps of enimies in a class called room......i need to check if they all == 0...when they all equal zero the game ends...... i know i can check the size of a hash map w

  • Opening/Start Up Screen: Size of Sign On Field

    The screen which shows after start/wake up where the password is entered, how to increase in size ?

  • Accessing my home-based iMac through the internet?

    The Goal: Wake up a sleeping Intel-iMac, running Tiger 10.4.11 with a MacBook laptop running Leopard 10.5.4. And then, using the MacBook, I want to gain access to all the files in the iMac and be able to read/write/copy the files on to the MacBook. T

  • Strange rendering all the time - not only on Firefox.

    The image has strange strypes all over it and they look a little like normal screen for a short time. It happend after I sent my laptop Acer Aspire 4745 Z - 4754. Thanks for your attention.