Purchasing Lisence Problem.

Hey,
I came accross this annoying problem before the lisence page loaded fine but today when I tried it came up with..
"Operation Failed:
Connection Failed. Please try again later."
So I assumed it was one of those problems that just go away after being left 5 minutes but still didn't work tried a few things left it for a couple of hours and it still displays the same error.
Anyone have an idea?
Thanks.
Solved!
Go to Solution.

Does '3' offer you both WAP and Internet access points to choose from? Did you try both? Which country are you in (as '3', Hutchison 3G, operates networks in many countries)? Did you call '3' customer service, and ask them, if there are any connectivity issues? You could also call Nokia customer service, and ask them, if they know of any problems with Maps licensing in your country.

Similar Messages

  • Sales order -  automatic creation of purchase order - problem on Credit Che

    Hello,
    We have a problem in sales order.
    For one item, we have an automatic creation of Purchase requisation, but we have to give manually the price in the purchase requisition.
    The problem is when we have give the price, the automatic credit check is executed, and the purchase requisition is not created if we block on this credit check.
    When the credit controller, released the Sales order (VKM1), the purchase is not created automatically because the field for the price in purchase requisition is empty and required.
    And when we come back to the sales order, we need to fill the value and the credit check is running a new time. .....
    and we have a loop.
    I have check in OSS Notes, and I not find a solution.
    How can we solve this problem
    Regards
    Jean-Claude Onderbeke

    Hello Buddi,
    It's impossible to change the price in PO, because the PO is not created.
    The problem is on the creation on the PR in the Sales Order.
    I'm not able to create the Purchase Requisition due to Credit Check, and I'm not able to make an automatic credit check because the value price in the PR is not filled automaticaly, and it's required.
    It's a loop known by SAP, but not solve.
    I hope that someone has found a solution to this strange behaviour.
    Regards
    Jean-Claude

  • Purchase Order Problem

    HI Experts,
      I have copied a purchase order form ZMEDRUCK from Medruck.  Modified according to the requirements of functional consultant without deleting a single element.  I have commented everything in the windows except /E - element lines.  Used subroutines to fetch some data and displayed.  Its working normally, but when enduser is trying to generate a PO with some JPY currency, it is not giving print preview nor print. 
    In the subroutine pool for calculating grand total I have used the following code.
    FORM freight TABLES   TA_INPUT STRUCTURE ITCSY
                            TA_OUTPUT STRUCTURE ITCSY.      "Structure
      DATA: TP_FREIGHT LIKE KONV-KAWRT,  " freight charges
            TP_CUSTOMS LIKE KONV-KAWRT,  " customs charges
            TP_EBELN   LIKE EKKO-EBELN,  " PO number
            TP_KNUMV   LIKE EKKO-KNUMV,  " document condition number
            TP_GTOTAL  TYPE P DECIMALS 2,  " grand total
            TP_TOTAL   LIKE KONV-KAWRT. " like konv-kawrt  " total before freight and customs.
      DATA: lv_grandtot(16),             " TYPE P DECIMALS 2,
                                       " lv_grandtot type konv-kawrt,
            tp_total1(16),
            tp_waers like ekko-waers.
      DATA : IT_KONV LIKE KONV OCCURS 0 WITH HEADER LINE. " for condition values.
      read table TA_INPUT with key 'EKKO-EBELN'.
      TP_EBELN = TA_INPUT-VALUE.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          INPUT  = TP_EBELN
        IMPORTING
          OUTPUT = TP_EBELN.
      READ TABLE TA_INPUT WITH KEY 'KOMK-FKWRT'.
    **without this function module, getting short dump while adding for grand total.
    **CONDENSE TA_INPUT-VALUE.
    *MOVE TA_INPUT-VALUE TO TP_TOTAL.
      CALL FUNCTION 'CATS_ITS_MAKE_STRING_NUMERICAL'
        EXPORTING
          INPUT_STRING  = TA_INPUT-VALUE
        IMPORTING
          VALUE         = TP_TOTAL
        EXCEPTIONS
          NOT_NUMERICAL = 1
          OTHERS        = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    READ TABLE TA_INPUT WITH KEY 'EKKO-WAERS'.
    tp_waers = ta_input-value.
    if tp_waers = 'JPY'.
    tp_total = tp_total * 10.
    endif.
    WRITE: TP_TOTAL TO TP_TOTAL1 CURRENCY 'JPY' LEFT-JUSTIFIED.
      SELECT SINGLE KNUMV FROM EKKO INTO TP_KNUMV WHERE EBELN = tp_ebeln.
      SELECT * FROM KONV INTO TABLE IT_KONV WHERE KNUMV = TP_KNUMV
                                          AND KSCHL IN ('FRB1' , 'ZOB1').
    *BREAK-POINT.
      LOOP AT IT_KONV.
        CASE IT_KONV-KSCHL.
          WHEN 'FRB1'.
            TP_FREIGHT = TP_FREIGHT + IT_KONV-KBETR.
          WHEN 'ZOB1'.
            TP_CUSTOMS = TP_CUSTOMS + IT_KONV-KBETR.
        ENDCASE.
      ENDLOOP.
    *******grand total.
    ***here if don't use function module CATS_ITS_MAKE_STRING_NUMERICAL, I get short dump.
      TP_GTOTAL = TP_TOTAL + TP_FREIGHT + TP_CUSTOMS.
    *WRITE TP_GTOTAL TO lv_grandtot CURRENCY tp_waers DECIMALS 2 LEFT-JUSTIFIED.
    WRITE TP_GTOTAL TO lv_grandtot CURRENCY tp_waers LEFT-JUSTIFIED.
    *move tp_gtotal to lv_grandtot.
      loop at TA_OUTPUT.
        case TA_OUTPUT-NAME.
          when 'TP_FREIGHT'.
            MOVE TP_FREIGHT TO TA_OUTPUT-VALUE  .
            CONDENSE TA_OUTPUT-VALUE.
            modify TA_OUTPUT.
          when 'TP_CUSTOMS'.
            MOVE TP_CUSTOMS TO TA_OUTPUT-VALUE  .
            CONDENSE TA_OUTPUT-VALUE.
            modify TA_OUTPUT.
          when 'TP_GTOTAL'.
            MOVE lv_grandtot TO TA_OUTPUT-VALUE  .
            CONDENSE TA_OUTPUT-VALUE.
            modify TA_OUTPUT.
        endcase.
      endloop.
    endform.                    "freight
    It is working well even with JPY currency, but this time when she was entering a material with JPY currency, neither preview is coming nor print.  In the status bar(in me21n) it shows error that a certain include is not available, but when I enter into script debugging mode, print preview is coming and grand total is 0, because of error in function module.  In the ABAP debugging mode, in the function module I have used, the sy-subrc is 1.  This is go-live issue and this problem has occurred in Prod server.  We could not stimulate the scene in Dev server.
    In Dev, I noticed that when ever I tick off in 'Ret PO' check box, the same problem is coming.
    Can any one help me with this problem.

    The table PO_AGENTS stores the buyers .
    To define a buyer, you need to define an employee (Purchasing super user > Setup > Personnel > Employees), then a Buyer (Purchasing super user > Setup>Personnel > Buyers)

  • Restore Purchases feature Problem

    Hello,
    We've got the problem during apple approve process. The app is Multifolio with newsstand subscription.
    They said "We found that your app offers In-App Purchase(s) that can be restored but does not include a “Restore Purchases" feature to allow users to restore the previously purchased In-App Purchase(s), as specified in the “Restoring Purchase Products” section of the In-App Purchase Programming Guide"
    The app include subscription and it works. Even the start dialog to restore purchases presented.
    But there are no button on the right to restore purchases.
    Shared secret is ok.
    It is not the first our app. In previous apps this button presented from the beginning.
    We can't understand the reason. Please help

    And what has this to do with Adobe? If you're talking about e-pub or whatever, ask in the relevant forums.
    Mylenium

  • ITunes having purchasing processing problems? or is it me?

    Is anyone else experiencing problems with downloading albums? I am getting an error message everytime that iTunes cannot process credit card purchases at this time. Please try back later."  It's been all day!

    Welcome to the Apple Community.
    It's most likely your network.
    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first.

  • Purchased music problem

    okay so here is my problem. for some reason my itunes just would not open up i kept getting the message, "itunes has encountered an error blah blah blah". i spent weeks trying to get my itunes working again. finally after several installs and uninstalls i just had to get rid of everything in my computer that had anything to do with quicktime, itunes, and ipod and wallah my itunes is back. the only problem is my whole library is gone and the only trail of my library is still on my ipod itself. i havent updated my ipod for fear of losing all of my purchased music (which i stupidly didn't back up of course). does anyone have any idea of how to get my purchased music off my ipod and into my new library. help is greatly appreciated, thanx

    thanx alot katrina that solved my problem...partially but now that i have my whole ipod including songs i purchased into my library for some reason those songs that i purchased will not go onto my ipod when i hit uppdate my ipod. any suggestions

  • No link to report purchased app problems

    I just got another iTunes email that confirmed my purchase. It was for an App Add on that was supposed to be Free. The title in the app add-on also uses the words FREE TODAY but I was charged 99 cents. So I followed the link which opened iTunes and followed the REPORT A PROBLEM link.
    From there I have spent nearly 45 min going round and round on the Apple Support Site. If I click somewhere and then select NO to the question of "Did this solve your problem?" the window closes but offers no form to report the problem.
    Does anyone know of a direct link to report an App Purchase problem to Apple? Even if the App was misleading and was really $0.99 instead of Free, it would be nice to know whether or not Apple has a means to be contacted regarding errors in App purchases, or if I will just be hung out to dry.
    Sandi in MT

    "t NO to the question of "Did this solve your problem?" the window closes but offers no form to report the problem. "
    You should see the Express lane button. You can contact them from there.

  • Validating purchase date problem?

    I have a problem with my new mbp retina 15,when I go to http://selfsolve.apple.com/ and enter serial number for my new retina 15, get message:
    Please validate your product's purchase date
    when go to CONTINUE to enter date and when enter my apple id and password, page takes me back to again enter serial number, and when enter serial again same thing, get message to validate purchase date, and when go to continue again must to enter serial number and round and round we???

    I'm no expert... but this appears to be a bug in the website. I've been finding a lot of bugs in the apple website lately... Not the same quality workmanship that attracted me to the company to begin with...

  • Problems with purchased items, Problems with purchased items

    I have problems with my purchased itens displayed in iPhone.
    When I access "iTunes > Purchased" (on iPhone) it does not show one of the albums that I purchased. When i acess "Purchased items" in iTunes (MacBook) this album is showed.
    because of this I purchased two times the same album.
    How to solve this?

    I just called the 1-800-My-Apple and the said there is really nothing they can do about it. They said I had an outstanding payment of $8.54 (or something like that), I said I know b/c of the problem I am having with my bank, but NO previous completed purchases should have anything to do with this outstanding payment . It should not keep me from being able to update or download previously completely paid apps, TV Shows, or movies - they are mine, and I paid for them. I submitted a complaint.. that just isn't right!

  • Shopping cart having purchase organization problem

    Dear Experts,
    We are working on classic sceanario with SRM 5.0 integrated with ECC 6.0.
    While creating shopping cart for direct material we are having an error message as "System SRDCLNT110 (SRM system) of purch. organization Central Purchasing (purchase org defined) differs from doc. reference SRDCLNT110 (SRM system)". The error message is displayed whenever we are clicking on "Order as Direct Material".
    The message no is BBP_PD540 and support pack we are having SAPKIBKT03 on SRM.
    Kindly suggest solution.
    Thanks
    Dinesh Singh

    Hi,
    The problem may be definately due to the SP level you are on currently.
    For config settings,see the foll threads for pointers:
    Re: Direct Material Procurement scenario
    Catalog item shopping cart error
    Re: SAPKIBKT10 Problems
    Re: System RD2CLNT400 of pur. org. DOI differs from doc reference SD2CLNT400
    Error in 'bbp_extreq_transfer'(plan driven procurement)
    System RD2CLNT400 of pur. org. DOI differs from doc reference SD2CLNT400
    See these related notes(for SP higher then SP03);
    Note 913831 - SRM 5.0: BBP_PD 540 blocks ECS with back-end POrgs
    Note 832097 - EBP 5.0: Purchasing organization check (Message 540)
    Note 823852 - Creating shopping carts: Express message no BBP_PD(540)
    750247 - EBP 5.0: Express documents when changing EKORG
    624172 - Purchase order not created due to missing purchasing group
    816867 - Resetting the purchase organization after express message
    BR,
    Disha.
    Do reward points for  useful answers.

  • New Touch Missing Movie Rental/Game "In-App Purchase" Sync Problems.

    just picked up the new iPod Touch 4G (64GB) and am syncing to Win7 Starter (32bit).
    I rented a few movies before I bought the Touch. They all seemed to download fine. the "Move" sync process seemed like it worked perfectly. When I looked back at my movies on my touch, some of them were missing. When I double checked my rental section in iTunes the movies were missing. I remember a dialogue later, saying that the file couldn't be found. I ran a quick windows search with no results.
    So it seems like I could "Move" the movie fine, but after the sync finished, the files were gone from both the computer and the touch.
    Could someone please explain this, and what I may do to recover those files? I did pay for them after all, and would still like to watch them. I just don't want to pay for them twice.
    Also (another similar issue):
    I downloaded and played the game "FieldRunners" fine, but then decided to do an "in-app purchase" for the next level. I clicked download/entered my info/ and it seemed to download correctly, but when I re-entered the app, the level was not available to play. just weird.
    FYI: this is my first iOS device, so please don't flame me for newbie ignorance.
    Any advice/suggestions are welcome!
    Thanks.
    Overall, Here is my experience with the new touch:
    First Connection: Installation did not work. Unplugged / Replugged USB worked correctly. (no restart necessary).
    Selecting content to sync: Did not detect Outlook 2010 (FULL/NOT BETA) for Contacts/Calendar/etc.
    I chose not to sync this through iTunes, and instead setup an "Exchange" account on my iPod Touch through google (m.google.com). Works perfectly.
    I have my other email addresses forwarded through gmail to take care of push notifications. I still don't have Outlook 2010 calendars synced with google yet, but I'll figure that out.
    Then I noticed the other sync problems mentioned above.
    Again, any help would be appreciated!

    Hi Epski
    Let us know how you go as i'm having the same issue also. I upgraded to yosemite and itunes 12 at the same time and thought the OS upgrade was the issue. I downgraded back to Mavericks again (for lots of reasons i won't go in to here) thinking this would fix the problem but it didn't.
    When i play any video content from itunes 12 in full screen goes dark once the controls fade away. QT, appletv or anything else plays them perfectly, as per itunes 11!
    You don't have a Samsung TV by any chance do you?

  • ITunes re-downloading purchased songs problem

    Hi all, now it's unlike me to post a problem as i'm normally pretty good at search the web for the anwser but I can't on this one and need a little help also I know i'm not alone on this problem.
    Since yesterday evening I am unable to load my purchased songs on my iPhone 4 running iOS 6, If I go to iTunes > More > Purchased > Music > All Songs
    all my songs will not load it just hangs loading, yet if I select just one artist I can download it fine but as I have over 800+ tracks thats not ideal.
    Does anyone else running iOS 6 on iPhone 4 have the same problem? Three of my friends are having the same problem.
    Thanks in advance!

    I'm having the same issue... But it even happens on some artist with a lot of music listed. It just stays stuck on the loading screen on my iPhone 5. I would like to download my music please! 

  • Apps won't sync to phone- not is previous purchases. Problem with apple id?

    Previously purchased apps show up in itunes but not in itunes store. They were deleted from phone during upgrade and say not authorized during attempt to sync. I'm using same Apple ID but still can't sync apps. I think this may be somehow the problem as I tried to change the email address associated with my account. I changed it back but now all record of my apps (and giftcard balance) is gone except for the fact that they show up in itunes. Any ideas on how to get my apps back on my phone? Can I somehow check what apple id my apps are authorized for?

    Transfer purchase from iPad to computer
    http://support.apple.com/kb/ht1848

  • Downloading purchased music problem

    Easier to show problem with pictures. I wiped computer and iphone when i noticed that itunes in the cloud was working for music and didnt back up music as i could see i was able to download it all again ( i know what i did was stupid ). Now i have not hidden any purchased music (i checked 3 times). All songs in picture shows 559 yet when i click the tab it shows  Total 539 items at bottom so need help to find out why 20 songs missing, also in bottom picture  it shows elton  john and 3 next to it and only displays 2 songs, the  third song i downloaded twice now and deleted it just to see if it would show up and it didnt.

    Contact the iTunes Music Store customer support department through the form at the bottom of this web page and explain the problem to them.
    Good luck.

  • Playing purchased music problem

    i have been using denon program using itunes as my music library for some time now with no problems.
    well since i have downloaded the latest version of itunes all my purchased songs will not play on the denon program,they will play in itunes only.
    when i try and use in denon program it says the computer is not authorised to play.so i connect to itunes and request authourisation and it says it has been sucessful but when i select track through the denon program it says "no authorisation" please can anyone help me ????

    No Sorry. And don't bother update to 5.0. It only does you louse all your extra information and rating etc.
    The authorization problem is however not about versions. Yesterday I got a new pc (win xp) and tried to play the songs there after copying over, managed to authorize it, but again it fails. There must be a problem at the authorization server I think.
    I suspect it has something to do with me not having a complete email-address as AppleID when I first bought the files, and then changing it later.
    Anybody recognize the changing of AppleID issue?
    Regards,
    Asle

Maybe you are looking for