When i'm trying to Download an app from app world with my BB-9360 curve , its showing an error like this--"there is an issue with the current sesion.please login to continue.(error id:30702).Does any body knows.............please help me....!!!

pp...!

Hello khamad,
The following article should help regarding the "Error ID: 30702" message you are receiving when attempting to log into your BlackBerry® ID account on your BlackBerry® Curve 9360 smartphone:
"Unable to login to your BlackBerry ID account" or "Unable to update your BlackBerry ID account information" error occurs on a BlackBerry smartphone running BlackBerry 7 - http://www.blackberry.com/btsc/KB28212
We hope this helps.
Thank you.
-FB
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.
Click "Accept as a Solution" for posts that have solved your issue(s)!

Similar Messages

  • I deleted my iMovie from computer and from my purchases list in AppStroe. When I'm trying to download it again from App Store a pop up window comes up and says: "These apps were already assigned to your Apple ID and are available in your Purchases list"

    I deleted my iMovie from computer and from my purchases list in AppStroe. When I'm trying to download it again from App Store a pop up window comes up and says: "These apps were already assigned to your Apple ID and are available in your Purchases list". Please help me to reinstall it.

    If new versions of iPhoto and the other iLife applications (iMovie and GarageBand) were purchased by the previous owner from the Mac App Store, then they will be locked to the previous owner's Apple ID and cannot be transferred to you. You will have to re-purchase them under your own Apple ID.
    If this is an older MBA that came with Snow Leopard or an earlier version of Mac OS X, though, the system would have come with an installation disk that included the iLife applications, a disk which the seller should have provided to you. Those iLife applications would be older versions, of course, and may or may not work in Lion depending on how old they are.
    Regards.

  • TS1702 when i am trying to download new game from app store it showing "to check the time and date settings"?

    when i am trying to download new game from app store it showing "to check the time and date settings"?

    planb77  The OP said he has iOS 3. The Automatic in Settings>General>Time and Date was introduced in iOS 5. The OP just has to see if the time and date, included time zone, are correct.

  • I am Greek. I downloaded a film from ipad but for the last days it has not been downloaded and the status is "waiting".the charge has been made to my credit card. Does any body knows?

    I am Greek. I purchased a film from ipad but for the last days it has not been downloaded and the status is "waiting".the charge has been made to my credit card. Does any body knows?

    something other is dowloading somewhere on ipad

  • I am trying to set my background setting to change when ever I log in, I clicked on both 'change picture' and 'random order' boxes as my settings, but when ever I log in it has the same background as before. Does any body know how to fix this?

    am trying to set my background setting to change when ever I log in, I clicked on both 'change picture' and 'random order' boxes as my settings, but when ever I log in it has the same background as before. Does any body know how to fix this?

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • TS1424 I get error code 1009 while trying to download an application from app stor

    I get error code 1009 while trying to download an application from app storp

    You will need to do what it says, contact iTunes support. Click the Support tab above, then the Get Started link in the Contact Apple Support area and you'll be guided.
    Regards.

  • What does the cloud with downward arrow mean when trying to download a game from app store?

    what does the cloud with downward arrow mean when trying to download a game from app store?

    Hey there ArmidaKers,
    Welcome to Apple Support Communities.
    This article provides information about accessing your past purchases from iTunes in the Cloud, and it should answer your question about the download icon that you’re seeing when browsing the App Store on your iPad.
    Download past purchases - Apple Support
    So long,
    -Jason

  • Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of g

    Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of great help..thanks .

    I think in your situation it would be worth trying the things listed under the event. It does have to do with FRS and it's easy to do. I've used it to fix journal errors after a server unexpectedly restarts and sysvol stops replicating.  I
    could see where it could fix your issue, and if it doesn't, you're out 5 minutes. :)
    The listed registry key does not exist
    Expand HKEY_LOCAL_MACHINE. 
    Click down the key path: 
       "System\CurrentControlSet\Services\NtFrs\Parameters" 
    Double click on the value name 
       "Enable Journal Wrap Automatic Restore" 
     

  • Does any body knows how to detect the resolution of an inserted image in word?

    Does any body knows how to detect the resolution of an inserted image in word?

    I'm not sure I understand your reply but when you insert images into Word that are larger than will fit on the page, they are automatically compressed. If you right click and select Size and Position you can restore it to 100% but you will not see all the image.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Does any body know how to download ios to your ipod

    does any body know how download ios  to your ipod

    You update the iOS on the iPod by following the instructions here:
    iTunes: Backing up, updating, and restoring your iPhone, iPad, or iPod touch software
    That is all the information I can provide without more details of what you are trying to do.

  • HT5429 For the new Map in ios 6 , for United Arab Emirates ... Directions Not Available , whenever you make route between 2 places .. Does any body know how we can get the Update work ??

    Does any Body know how we can solve this problem ...
    The new map in the ios 6 in the united Arab Emirates cant find all locations , and Route directions is not available ... does any body know how to solve this ??
    as the map before this was working ??

    Thanks for your interest.
    Excuse my ignorance as I'm not sure what you meant by "1 of 5" optimization. Did you mean median of 5 ?
    Regarding swapping pointers, yes it is common sense and rather common among programmers to swap pointers instead of swapping large data types, at the small price of indirect access to the actual data through the pointers.
    However, there is a rather unobvious and quite terrible side effect of using this trick. After the pointer array is sorted, sequential (sorted) access to the actual data throughout the remaining of the program will suffer heavily because of cache misses.
    Memory is being accessed randomly because the pointers still point to the unsorted data causing many many cache misses, which will render the program itself slow, although the sort was fast!!.
    Multi-threaded qsort is a good idea in principle and easy to implement obviously because qsort itself is recursive. The thing is Multi-threaded qsort is actually just stealing CPU time from other cores that might be busy running other apps, this might slow
    down other apps, which might not be ideal for servers. The thing researchers usually try to do is to do the improvement in the algorithm it self.
    I Will try to look at your sorting code, lets see if I can compile it.

  • Does any body Knows how to capture Signature

    Does any body Knows how to capture the signature
    what technology i ahve to use to capture the signature
    its very Urgent Please Tell if u Know it
    I will be waiting for yours valuable reply
    Thanks for your reply

    Why don't you use Tablet PC SDK ( Web Forms Asp ) for sig cap.
    Please have a look at the links
    http://msdn.microsoft.com/mobility/tabletpc/default.aspx?pull=/library/en-us/dntablet/html/tbconInkWebPers.asp
    http://msdn.microsoft.com/mobility/tabletpc/default.aspx?pull=/library/en-us/dnmobink/html/tbconMIJ3.asp
    http://msdn.microsoft.com/mobility/tabletpc/default.aspx?pull=/library/en-us/dntablet/html/tbconWebDoodle.asp
    http://msdn.microsoft.com/mobility/tabletpc/default.aspx?pull=/library/en-us/dntablet/html/tbconWebDoodle.asp
    Example Link:
    http://www.thedatafarm.com/doodle.aspx
    Ramana

  • I have an Imac 2.8 GHZ Intel core duo, a month ago during booting instead of the apple, appear a world picture, since Is this normal?? also i feel the computer much slower since then, does any body know what is this?

    I have an Imac 2.8 GHZ Intel core duo, a month ago during booting instead of the apple picture appears a world picture and takes a lot of time to start, Is this normal?? also I feel the computer much slower since then, does any body know what is this?  How can I fix this?  Thanks

    Gomtomsyetm preferencs and make sure that you HDD is selected as the start up disk. Then start up using your install disc and run disk utility and repair the drive just in case something has gotten corrupt.

  • Just downloaded iTunes to new dell laptop, tried syncing my iPhone get an error message:  "this iPhone cannot be used because the Apple Mobile Device service is not started".  What does this mean? I have had this phone for over a year..

    Just downloaded iTunes to new dell laptop, tried syncing my iPhone get an error message:  "this iPhone cannot be used because the Apple Mobile Device service is not started".  What is the issue, had this phone over a year??

    I had this problem before. I like to disable extra services to speed up my computer and I disabled the Apple Mobile Device service and had to re-enable this.
    You can do that by going Control Panel>Administrative Tools>Services. Once you have gone to the services window, look for Apple Mobile Device and right-click. Select "Properties". There should be some information about the service as well as the label "Startup Type" with a drop-down menu beside it. If it says "disabled", that is your problem; Change the selection to anything except disabled (Automatic is easier and ensures that you can sync as soon as itunes opens).
    If this doesn't work, I would look into your anti-virus' settings. Good Luck!

  • Does any body knows how to make built in isight work with wondows xp!!!

    Hi everybody!
    I have the intel ship MacBook Pro, i'm runnining windows, i can't make it work, is there a plugin or a driver that i need to download, is there any body that can help me with this? please.
    Thanks.
    MacBook Pro   Windows XP Pro   built in isight

    The internal iSight is installed and works correctly under Windows XP on my MacBook, but it doesn't install correctly anymore under Windows XP on my Intel iMac.
    I think there is a problem with the latest iSight driver provided in the latest update to Boot Camp.
    I suggest you search and post in the Boot Camp forum:
    <http://discussions.apple.com/forum.jspa?forumID=1165>

Maybe you are looking for

  • How to hide fields in Infotype 16 for Molga 28

    Hi Guys, I need to hide some fields for IT0016 for Molga 28. Earlier we have assigned different screen for this molga .But now we have assigned the standard  screen to IT0016 i.e. View-3211. But when i go to node Change Screen Modifications, i m unab

  • Query takes long time

    Hi, could anybody help to tune this query, select /*+ choose*/ r.com , r.tvalue, t_result.info(r.rt_id,r.rt_ver) rp           from n_result r,              (select /*+ choose*/  rt_id, max(rt_ver) max_ver                            from n_result     

  • Restoring from Lion Time Machine backup and keeping Lion recovery partition

    I am installing a new hard drive in my MacBook Pro. I have a Time Machine backup of everything, but I'm aware that just restoring the Time Machine backup to the new drive will not restore the Lion recovery drive/partition. What is the best way to mov

  • Iphone in recovery mode? PLEASE HELP

    Hello everyone. the iOS 8 update came out today and I wanted to download the update through my computer onto my iPhone 5s. i plugged in my phone and it said backing up and all. It then said Validating update and my iPhone went to the white screen wit

  • Problem with loading a webpage:  prefix ' www ' became prefix ' m '

    Recently noted that a particular web address (previously loaded without problem on my ipad 2 ) suddenly appeared corrupt. With Safari;  the web address tried to load on to the ipad 2 screen but the ' www '  prefix became changed to the prefix ' m ' b