Can anyone explain why the new blackberrys don't come with a holster?

I'm just looking to upgrade my phone on contract through vodafone. I have been looking at the Z30 model for a few weeks. When i got my current phone (White Bold 9900) I recived a leather holster that came with the phone.
I would like to know a reason why blackberry have decided to stop the holsters. I have always seen blackberry as a luxury device and the holster was always part of that reason. I would of thought since blackberry started to struggle to keep up with the lastest competing phones, they would be trying harder to keep their existing custom as much as possible.  
I feel like blackberry has forgotten they were once seen as the luxury phone only a few years ago.
Could anyone please explain why they have stopped it? thanks

The seller, the mobile provider, decides what all accessories go in the box. And yes, I would bet the belt holster was or is the least popular case. Although it's the one I use.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Can anyone explain why the new CC Photography plan 2014 was announced at $9,99 but is actually offered at a higher European price at EUR12,29?

    See here: http://blogs.adobe.com/creativecloud/ and here: https://creative.adobe.com/plans)?
    This really does make no sense at all to me.
    Anyone?
    Thanks upfront.

    Hi Iansally,
    I can take at the billing of your account. Please can you send me in your details using the link found in the "About Me" section of my profile?
    Thanks
    PaddyB
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • How do I install my old cs2 student version into my new 2014 MacBook pro? All I have is the cd and the new macs don't come with a cd drive. Also are student cs2 versions allowed to be installed to a desktop and a laptop? Help!!!

    I Bought a new 2014 laptop and new to install my old cs2 program On it. I've only downloaded in on a desktop before but that one had a cd drive. The new computers don't. Is there anyway to work around this?

    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3

  • Can anyone explain why my new Apple TV is slower than my ROKU player ?

    I have a DSL internet connection I purchase movies from Amazon & iTunes. My Amazon purchases are available instantly while my Apple purchase is telling me 2 hours remaining to download ! What is that about ?!!!!!  I am using the same DSL connection for both purchases. I am returning my Apple TV sticking with my  ROKU PLAYER a much better product and more options other than iTunes & Netflix. I have Amazon to rent from as well plus 100's of other channels to choose from.
    Disappointed loyal Apple fan.

    Does your Mac have Wireless 802.11N? Both the router and the Mac must have N enabled to get the speed. ATV to Router will be at N speeds, but this does not matter if the bottleneck is between the Mac and the Router.
    Newer iMacs and MacBooks have N, If you bought before 2007, maybe not. Maybe check your system profiler to see which you have.
    For your initial sync, you may want to use an ethernet cable. See the Apple Knowledgebase article on how to do this. Once the initial sync is done, the incremental syncs should go pretty well with either g or n.
    I have n. My wife's Mac has g. She is able to stream video to the ATV with no problem. We are using the Airport Extreme, though, not the Belkin.

  • Can anyone explain why the generated URL of my BPS web app

    Errors as follows:-
    Business Server Page (BSP) error
    What happened?
    Calling the BSP page was terminated due to an error.
    SAP Note
    The following error text was processed in the system:
    Die URL enthält keine vollständige Domainangabe (cud015 statt cud015.).
    Exception Class CX_FQDN
    Error Name 
    Program CX_FQDN=======================CP
    Include CX_FQDN=======================CM002
    ABAP Class CX_FQDN
    Analyze CHECK
    Line 10 
    Long text -
    Error type: Exception
    Your SAP Business Server Pages Team
    Note the URL being sent is:-
    /sap/bc/bsp/sap/zfcfsw03web2/zfcfsw03web2.htm?sap-client=200&sap-language=EN
    The URL generated when that is executed is:-
    http://cud015:8000/sap/bc/bsp/sap/zfcfsw03web2/zfcfsw03web2.htm?sap-client=200&sap-language=EN

    677118 - explains what generates the error message and how to overcome it
    434918 - which suggests setting the icm/host_name_full parameter to default to a full domain name
    and the following SDN weblog:-
    /people/brian.mckellar/blog/2003/09/25/bsp-in-depth-fully-qualified-domain-names

  • Can anyone explain why the code compiles on one database but not another?

    I have two databases, both running 10.2.0.4, same hardware/OS platform.
    On one database, this code compiles just fine, on the second database, I get errors as shown below:
    SQL> SET SERVEROUTPUT ON SIZE 1000000;
    SQL>
    SQL> create or replace procedure testproc as
    2 vCount number;
    3 vCmd varchar2(2048);
    4 vLastName varchar2(30);
    5 vFirstName varchar2(30);
    6 vPK integer := 0;
    7 vSortLN varchar2(30);
    8 vSortFN varchar2(30);
    9 cursor cPERSON is
    10 select LastName,
    11 FirstName
    12 from GENERIC.PERSON
    13 order by LastName, FirstName;
    14 BEGIN
    15 select count(*) into vCount from USER_OBJECTS where object_name = 'ML4TEMPPERSON';
    16
    17 IF (vCount = 0) THEN
    18 /* NOTE: Omit semi-colon from command. */
    19 vCmd := 'create table ML4TEMPPERSON (PK integer not null, LastName varchar2(30), SortLN varchar2(30), FirstName varchar2(30), SortFN varchar2(30))';
    20 Execute Immediate vCmd;
    21 vCmd := 'alter table ML4TEMPPERSON add (constraint XPKML4TEMPPERSON PRIMARY KEY (PK))';
    22 Execute Immediate vCmd;
    23 END IF;
    24
    25 delete from ML4TEMPPERSON;
    26
    27 for P in cPERSON
    28 loop
    29 vLastName := rpad(P.LastName, 30, ' ');
    30 vFirstName := rpad(P.FirstName, 30, ' ');
    31 vSortLN := vLastName;
    32 vSortFN := vFirstName;
    33 DBMS_OUTPUT.PUT_LINE(vLastName || ', ' || vFirstName);
    34 vPK := vPK+1;
    35 INSERT into ML4TEMPPERSON
    36 ( PK, LastName, SortLN, FirstName, SortFN)
    37 values
    38 (vPK, vLastName, vSortLN, vFirstName, vSortFN);
    39 end loop;
    40 IF (vPK > 0) THEN
    41 COMMIT;
    42 END IF;
    43 END;
    44 /
    Warning: Procedure created with compilation errors.
    SQL> show errors
    Errors for PROCEDURE TESTPROC:
    LINE/COL ERROR
    25/3 PL/SQL: SQL Statement ignored
    25/15 PL/SQL: ORA-00942: table or view does not exist
    35/7 PL/SQL: SQL Statement ignored
    35/19 PL/SQL: ORA-00942: table or view does not exist
    SQL>

    Your table ML4TEMPPERSON doesn't exist in your second database, and you want do delete ans insert, may be in first database the table ML4TEMPPERSON exist
    Try this code. /* Formatted on 2009/05/21 09:10 (Formatter Plus v4.8.8) */
    SET SERVEROUTPUT ON SIZE 1000000;
    CREATE OR REPLACE PROCEDURE testproc
    AS
       vcount       NUMBER;
       vcmd         VARCHAR2 (2048);
       vlastname    VARCHAR2 (30);
       vfirstname   VARCHAR2 (30);
       vpk          INTEGER         := 0;
       vsortln      VARCHAR2 (30);
       vsortfn      VARCHAR2 (30);
       CURSOR cperson
       IS
          SELECT   lastname, firstname
              FROM generic.person
          ORDER BY lastname, firstname;
    BEGIN
       SELECT COUNT (*)
         INTO vcount
         FROM user_objects
        WHERE object_name = 'ML4TEMPPERSON';
       IF (vcount = 0)
       THEN
    /* NOTE: Omit semi-colon from command. */
          vcmd :=
             'create table ML4TEMPPERSON (PK integer not null, LastName varchar2(30), SortLN varchar2(30), FirstName varchar2(30), SortFN varchar2(30))';
          EXECUTE IMMEDIATE vcmd;
          vcmd :=
             'alter table ML4TEMPPERSON add (constraint XPKML4TEMPPERSON PRIMARY KEY (PK))';
          EXECUTE IMMEDIATE vcmd;
       END IF;
       vcmd := 'delete from ML4TEMPPERSON';
       EXECUTE IMMEDIATE vcmd;
       FOR p IN cperson
       LOOP
          vlastname := RPAD (p.lastname, 30, ' ');
          vfirstname := RPAD (p.firstname, 30, ' ');
          vsortln := vlastname;
          vsortfn := vfirstname;
          DBMS_OUTPUT.put_line (vlastname || ', ' || vfirstname);
          vpk := vpk + 1;
          vcmd :=
                'INSERT into ML4TEMPPERSON
    ( PK, LastName, SortLN, FirstName, SortFN)
    values
             || vpk
             || ', '
             || vlastname
             || ','
             || vsortln
             || ','
             || vfirstname
             || ','
             || vsortfn
             || ')';
          EXECUTE IMMEDIATE vcmd;
       END LOOP;
       IF (vpk > 0)
       THEN
          COMMIT;
       END IF;
    END;
    /Edited by: Salim Chelabi on 2009-05-21 06:12

  • Can any explain why the teathering option has dissapeared in GM iOS 5?

    Can anyone explain why the teathering option has dissapeared in ios5?

    You would have to ask the maker of the apps.  They are the ones who choose what versions to release and make available.

  • Can anyone explain what the other section section in the HDD usage description is for ? I recently used iphoto to send a mail and this "other "section inrease the usage by about 1GB....any ideas why ?

    Can anyone explain what the "other" (yellow colour) section in the HDD usage description is for and what it does.It is under the about this mac section and storage option?
    I recently used iphoto to send mail with photos attached and this "other" section increased by about 1GB. The mail size was around 900KB.....any ideas ?

    Shurig wrote:
    Thanks gor replying,,,this is my first time on this site.
    Any idea why the "other" continues to increase. I have just got got my mac so no new apps installed yet only been using it for mail and web browsing. I tried the iphoto mail last night and noticed the the "other" section had increased by 1GB which I thought was rather larger. Do you know what this setion actually does ?
    Also do you know if it is possible to delete the iphoto emails.
    All of your 'stuff' that is not Music Movies Apps Backups or Photos is in Other, that means all your emails, all your files etc, why don't you just leave well enough alone, this is not windows and doesn't need tinkering with,

  • My G4 desktop won't  cold start. I have to plug in to the outlet for about 15 minutes every time. Can anyone explain why?

    My G4 desktop won't cold start. I have to plug in to the outlet for about 15 minutes every time. Can anyone explain why? Otherwise, the desktop runs fine.
    The battery is new, and I zapped the little button on the main board once. I've noticed that the power supply plug is a little longer than the usual one for G4, and the AGP slot has an extra slot, which is black and about half inch long.

    Hi Ursula,
    the AGP slot has an extra slot, which is black and about half inch long.
    I believe that is for ADC Monitor power if you had one, or a card with ADC, like the little tab on this one...
    I think your startup problem is bad capacitors in the power supply or on the logic board, and the need to bleed off their charge before they work right to start.

  • My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    I have worked my way through the assistant and nothing works. I have tried connecting in disc mode but although the screen on the ipod is showing that the device is charged and that it is in disc mode as soon as I connect it to the computer it comes up with the error message 'please wait very low battery' and stays like that until I disconnect when it appears to be OK again. I have tried on both pc and mac.
    BTW the ipod is an ipod video not classic if that makes any difference.
    Thanks

  • Can anyone explain why on my iPhone 4S, whenever I play music, it won't hold my place in the song? I pause it, and then when I go back later, it's all the way back at the beginning? A google search was not very helpful, any tips would be great!

    Can anyone explain why on my iPhone 4S, whenever I play music, it won't hold my place in the song? I pause it, and then when I go back later, it's all the way back at the beginning? A google search was not very helpful, any tips would be great!

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • I recently installed Acrobat Pro X on my Mac. I initially accepted the terms of agreement, but then every few seconds the same prompted window for the terms of agreement keeps popping up. Can anyone explain why this is happening, and how to resolve?

    I recently installed Acrobat Pro X on my Mac. I initially accepted the terms of agreement, but then every few seconds the same prompted window for the terms of agreement keeps popping up. Can anyone explain why this is happening, and how to resolve?

    Have you tried reinstalling the original drive? Same symptoms with it?

  • My wife, daughter and I have iPhones. We all have iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue except those that my wife sends to me. They are green. Can anyone explain why.

    My wife, daughter and I have iPhones with iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue however, when my wife messages me, the message appears in green on her iPhone. Can anyone explain why.

    Because some kind of error occured.  This is only from her iPhone to your iPhone?  Whenever she sends a message to any other iPhone, it is sent as blue?  And when anyone else sends you a message from an iPhone, it sends as blue?

  • I try to play an album on ITunes for Windows 7and it plays the first track then randomly goes to a different album and plays the whole of that. Can anyone explain why? Shuffle is turned off....

    I try to play an album on ITunes for Windows 7and it plays the first track then randomly goes to a different album and plays the whole of that. Can anyone explain why? Shuffle is turned off....

    I am working on a friend of mine's 15g ipod(W/dock connector)and I am having the same trouble except it does it to all the songs. I have tried reseting it multiple times, but to no avail.
    I am not sure that this runs on windows XP, it is absolutly archaic (compared to my 5th gen. 30g video).
    Help?
    15g ipod (w/dock connector)   Windows XP  
      Windows XP  

  • I just bought a second hand iPhone 5, but the sim tray seems to be for a sim sized ~14x8mm, thinner but longer than a nano SIM (~12x9mm). Can anyone explain why, and how to get a SIM to fit?

    I just bought a second hand iPhone 5, but the sim tray seems to be for a sim sized ~14x8mm, thinner but longer than a nano SIM (~12x9mm). Can anyone explain why, and how to get a SIM to fit?

    You would have to ask the person you bought the phone from to explain why.

Maybe you are looking for