BBM Group Messages have year 2045 date stamp

Hi
My 9630 puts BBM group messages with a year 2045 date stamp. This places the messages above my other messages and is a real pain.
How do I correct this, please?

Hey SinaOwolabi,
Welcome to the BlackBerry® Support Community Forums.
Can I have you check the date and time in the BlackBerry smartphone under Options> Display> Date and Time?  Also is this issue only happening with BBM group messages? 
Thanks.
-HB
Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Similar Messages

  • Bbm group message problem

    Hi, I am new to this forum so please excuse me if some of my questions seem odd.  I have two questions about using bbm groups.  A group previously set up and used frequently for past year or so now no longer is working.
    Specifically, when I go to the group I show up as 'available and there is an icon of a key next to my name. The other members of the group show up as 'unreachable' and when I highlight each individual the message is 'you are disconnected from John in this group'.  Each of the other individuals are able to chat amonst each other but can't connect to me.
    Each of the other members have been re-invited and have accepted the invite but I get the same error.  Any thoughts and help would be appreciated?  Also is there a list of the various icons that blackberry displays anywhere to be found?

    The 'key' icon indicates you are an Administrator of the Group.
    You need to assign another member as an Administrator of the group, and then you leave the group, Wait a couple of hours or more, and have the remaining Admin re-invite you to the Group.
    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

  • Group by month/year from DATE FORMAT column

    Hi Chaps,
    I have a recordset that pulls data from a database, then presents the data in a table. The data is grouped by 'projid', repeated for every 'projid', with a show/hide control, to show all the 'jobid's' relating to that particular 'projid'
    This is what I have so far:
    Code:
    SELECT             
    tbl_projects.projid,
    tbl_projects.projtitle,
    tbl_projects.projdue, DATE_FORMAT(tbl_projects.projdue, '%%d/%%m/%%Y') as projdue_format,
    tbl_projects.projtype, 
    tbl_projects.projinvtype,
    tbl_projects.FK_custid,
    tbl_projects.projcompletedate
    tbl_languaget.langtname,
    tbl_doctype.doctypename,
    tbl_jobs.jobid,
    tbl_jobs.FK_projid,              
    tbl_jobs.jobname,              
    tbl_jobs.FK_langid,              
    tbl_jobs.jobpages,              
    tbl_jobs.jobshipped,
    tbl_jobs.jobinvsent,   
    tbl_jobs.jobtranslatorcharge,    
    'tbl_jobs' as fromtable,
    tbl_customers.custid,
    FROM tbl_projects  
    INNER JOIN tbl_jobs              
    ON tbl_projects.projid=tbl_jobs.FK_projid  
    INNER JOIN tbl_languaget              
    ON tbl_languaget.langtid=tbl_jobs.FK_langid  
    INNER JOIN tbl_customers              
    ON tbl_customers.custid=tbl_projects.FK_custid
    INNER JOIN tbl_costs
    ON tbl_costs.FK_custid=tbl_customers.custid 
    INNER JOIN tbl_doctype
    ON tbl_doctype.doctypeid=tbl_jobs.FK_doctypeid
    WHERE tbl_projects.projstatus='Complete'        
    AND tbl_projects.projinvtype='Costing Sheet'
    AND langtname!='TH'
    AND langtname!='ID'
    AND langtname!='KO'
    AND langtname!='JP'
    AND jobinvsent='y'
    AND FK_custid = %s
    ORDER BY projid ASC", GetSQLValueString($colname_rsInvPending, "int");
    $rsInvPending = mysql_query($query_rsInvPending, $conndb2) or die(mysql_error());
    //$row_rsInvPending = mysql_fetch_assoc($rsInvPending);
    $totalRows_rsInvPending = mysql_num_rows($rsInvPending);
    Code:
    // REPEAT - FOR EVERY PROJECT
      <?php
      $previousProject = '';
      if ($totalRows_rsInvPending > 0) {
      // Show if recordset not empty
        while ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)) {
          if ($previousProject != $row_rsInvPending['projid']) {
          // for every Project, show the Project ID
      ?>
    Code:
    // SHOW/HIDE CONTROL
        <tr>
        <td colspan="9" class="highlight"><span class="blueBold"><a href="#" onclick="toggle2('proj1<?php echo $row_rsInvPending['projid'] ?>', this)"><img src="../../Images/plus.gif" border="0" /></a> <?php echo $row_rsInvPending['projid'] ?> - </a></span><span class="blueNOTBold"><em><?php echo $row_rsInvPending['projtitle'] ?></em></span></td>
        </tr>
    Code:
    // SHOW/HIDE
        <?php $previousProject = $row_rsInvPending['projid']; } ?>
        <tr class="proj1<?php echo $row_rsInvPending['projid'] ?>" style="display:none">
        <td>column 1</td>
        <td>column 2</td>
    What I want, is to put in another grouped by stage, where the 'projid's' themselves are in a show/hide region, grouped by 'projcompletedate' (year/month). 'projcompletedate' is in DATE format, but how to I get PHP/SQL to take the month and year and then group them correctly?

    Hi David, I'm not sure if I've got this right, would you mind looking at my latest code?:
    <table border="0" cellpadding="0" cellspacing="0" id="tblinvoice">
        <tr>
          <th>Job Title</th>
          <th>Type</th>
          <th>Language</th>
          <th>Translator</th>
          <th>Total</th>
          <th>Full</th>
          <th>Fuzzy</th>
          <th>Proof</th>
          <th>Full Price</th>
          <th>Discount Price</th>
          <th>Document Format</th>
          <th>Pages</th>
          <th>Typesetting Cost</th>
          <th>EN Proofreading Cost</th>
          <th>Total</th>
          <th>Translator Charge</th>
          <th>Profit</th>
          <th>Profit Percentage</th>
        </tr>
        <?php
          $previousMonth = '';
          if ($totalRows_rsInvPending > 0) {
          // Show if recordset not empty
          do ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)) {
          if ($previousMonth != $row_rsInvPending['themonth']) {
          // for every Month, show the Month Name
       ?>
        <tr>
          <td colspan="18" class="highlight"><?php echo $row_rsInvPending['theyear'] ?> - <?php echo $row_rsInvPending['themonth'] ?></td>
        </tr>
        <?php $previousMonth = $row_rsInvPending['themonth']; } ?>
        <?php
          $previousProject = '';
          if ($totalRows_rsInvPending > 0) {
          // Show if recordset not empty
          while ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)) {
          if ($previousProject != $row_rsInvPending['projid']) {
          // for every Project, show the Project ID
       ?>
       <tr>
        <td colspan="18" class="highlight"><span class="blueBold"><a href="#" onclick="toggle2('proj1<?php echo $row_rsInvPending['projid'] ?>', this)"><img src="../../Images/plus.gif" border="0" /></a> <?php echo $row_rsInvPending['projid'] ?> - </a></span><span class="blueNOTBold"><em><?php echo $row_rsInvPending['projtitle'] ?></em></span></td>
        </tr>
        <?php $previousProject = $row_rsInvPending['projid']; } ?>
        <tr class="proj1<?php echo $row_rsInvPending['projid'] ?>" style="display:none">
            <td><?php echo $row_rsInvPending['jobname']; ?></td>
            <td><?php echo $row_rsInvPending['projtype']; ?></td>
            <td><?php echo $row_rsInvPending['langtname']; ?></td>
            <td><?php echo $row_rsInvPending['translator']; ?></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
          </tr>
          <?php } while ($row_rsInvPending = mysql_fetch_assoc($rsInvPending)); ?>
          <?php } // Show if recordset not empty ?>

  • Does group messaging use up mobile data?

    My family and I were group messaging earlier and I noticed that just before I got a message my LTE transfer lights would flicker. I know thathat group messaging uses MMS instead of SMS but was not sure if it counted. I am on android but everyone else has an iPhone using iMessage. I don't want to gorder using up my data but we like to group chat. Any info would be appreciated
    Thanks,
    Cam

    That is correct. Keep in mind if you do not have unlimited texting, you may want to monitor your usage.
    When group texting, you get charged for 1 text for each of the recipients of a group text. You send a group text to 10 people, you will be charged for 10 texts.

  • Mail.app using Day of the Year for date stamps.  Whaaaat?

    Here's a new one, for me anyway:
    It seems all of my emails in the mail.app have suddenly been stamped with dates that use the day of the year, rather than day of the month, i.e:
    37 February, 2011, instead of 6 February, 2011.
    This date format appears in both the Viewer Window and Message Headers, and is seen in both sent/received dates, on all saved/new messages (all the way back to a few from 2001) and in both of the mail.app accounts I use: one straight-up gmail, the other a worldshare.net address, also using the Gmail server.
    This behavior is not present when reading through webmail, nor is it a problem on my iPod Touch.
    Any thoughts?
    Thanks.

    It was all in Language and Text pref pane. I was pulling day of year, rather than day of month.
    Big ups to ibook_Steve over at MacNN!

  • Group Messages have stopped working

    Hi there. My Skype groups have stopped being able to send message to the group participants on Mac OSX 10.10.4. I have the latest Skype installed. I can send messages to individual users only. The users in my groups are also having the same issue.  Any thoughts how to solve this as I'm using Skype to run the communications for my projects and this is at a crutial stage and not acceptable to be having issues like this.  

    I am also experiencing the same problem, although it is just me in my group. I have quit and uninstalled Skype countless times. Edit: I have tried to start a group conversation myself but my messages don't go through and the participants are unaware I even created a conversation in the first place.

  • Bbm group alert icon not working

    Hi everybody Since couple days I don't receive any BBM group message alert icon on homepage of my blackberry Pearl. As I am new on blackberry I don't know how to solve it. I've searched the options but couldn't solve it, what elSe can I do? Thanks everyone in advance

    Hi Adrian,
    Actually, the query I have post was a simplification of the real one.
    The real one is the following, and there I think it is not possible to rewrite it without the group by>
    SELECT T1.ItemCode , SUM(T1.OpenQty) , SUM(T2.OnHand) , SUM(T1.OpenQty)- SUM(T2.OnHand)
    FROM RDR1 T1 inner JOIN OITW T2 on T1.ItemCode = T2.ItemCode
    WHERE T2.WhsCode = '01'
    GROUP BY T1.ItemCode
    HAVING SUM(T1.OpenQty)- SUM(T2.OnHand) > 0
    Anyway, thank you very much for your idea.

  • Lightroom changing date stamps (or more) on unopened files??

    I routinely backup my catalog to an external drive, and then I sync all the folders with images to the same drive. I have done this ever since starting with Lightroom a long time ago, with no problems. Last night, I backed up the catalog (LR 3.4), and afterwards, I set up a sync. There should have been 50+ deletions and a smaller number of additions, the latter mostly XMP files. I got those, but the synch software also said it needed to update roughly 2000 additional files. Windows confirmed that the date stamps of these files had been changed. These were all jpgs or XMP files, not raw files. I had not done anything with any of these 2000 extra files. Some I had not touched since December of 2008! Could LR have changed the date stamps of these files, or done some other modification, while updating the catalog for it's backup? I have never experienced anything like this before, and now I am uncertain which version of the 2000 files to keep.
    Thanks for any thoughts.

    When you copied the files to the new drive they became new files created on that date.
    I have the same thing, files not worked on in ten years with a creation date of 2009 when I got the latest computer.
    Rich

  • Time and date stamp

    Hello. I am trying to add a time/date stamp to my inputs to LV. There are some comments here that I went through but they didn't seem to fit my application. With each tick of the timer I am collecting 5 inputs. Whate I would like is for the final column to have a time/date stamp. I have tried using the Vi's which seem appropriate for this however, they dind't have the affect I had hoped. All I want is for each tick of the clock and a sample is collected, to have he time stamp corresponding to that data.
    Thank you

    Yes, I've understood what you mean for a bit now and I've been telling you what to use, even linking to VIs.
    Here is a step-by-step list of what you need to do to get your data to be in the same format as your timestamp:
    Open the Timing palette, click Get Date/Time in Seconds, place it inside your loop.
    Open the Timing palette, click Get Date/Time String, place it inside your loop.
    Wire the output of Get Date/Time in Seconds to Get Date/Time String.
    Concatenate the outputs of Get Date/Time String
    Place Number to Fractional String inside your loop.
    Wire array of data (capacitance, dissipation factor, voltage) to the Number to Fractional String VI
    You now have all of your data and timestamps in the form of strings. Build an array of all of these strings and write to spreadsheet. If you want the timestamp as the last column, then build the array with the timestamp after the data. Surely you can figure that part out now.

  • DATE VALIDATION ...DATE STAMP QUESTION?

    am fixing to send out the secound out the secound letter out reqarding validation of the debt .....does the post office charge to have the letter date stamp?   what all needs to be done in this reqard ..?

    No...asking for a barrel date stamp does not cost anything. If you would like physical evidence of your mailing you can ask for a certificate of mailing. I believe that still costs $1.30 plus .49 for postage. 

  • BBM Group Chat Message Retrieval - Help Make a Mother's Day!

    Hey folks,
    I recently returned from a trip abroad and while away I sent to my family various messages to a little BBM Group my younger sister help set up of what I had done the previous days. For some reason that remains to be seen, the default setting on BBM Groups is keep messages for 3 days. Needless to say, there were a few messages that my mom really liked and wants to save, but she isn't technologically inclined and they have since disappeared from her phone.
    Is there any way to get these messages back? Perhaps a phone restore to a few days ago or something? Or is there someone I can call at BB or my carrier (Rogers) to get them to retrieve it? Surely it's saved on a server somewhere.
    My mom woke up this morning stressed beyond belief that she's lost one message I sent in particular (the one reflecting on the trip as a whole) and she would love to be able to save it.
    Thanks, and to the mothers out there: have a happy mother's day!

    CSV files can be opened using Excel or most any database software or a notepad application...
    How to manually transfer files between a BlackBerry smartphone and a Windows computer
    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

  • Fiscal year variants in co.code  have inconsistent start date.Msg no AC531

    Hi Experts
    We went  with 24 periods after Go live.  I am trying to assign the TAX basis fiscal year variant(TX) at Depreciation area level. But it's not letting to add with the following error message.
    Fiscal year variants in co.code  have inconsistent start date
    Message no. AC531
    Diagnosis
    The first day of the fiscal year for variant TX (24periods) in company code in Asset Accounting differs from the first day of the fiscal year for variant  D1(12 periods) in General Ledger Accounting.
    However, both variants must have the same start and end date! Only the periods within the fiscal year can be different in the two variants.
    Please guide me how to fix this error message.
    Thanks in advance
    Meenakshi.N
    Edited by: Meenakshi.Nakshatrula on May 3, 2010 5:45 AM

    Hi,
    Message no. AC531  says:                                                                               
    The first day of the fiscal year for variant K4 in company code in Asset     
    Accounting differs from the first day of the fiscal year for variant NL      
    in General Ledger Accounting.                                                                               
    However, both variants must have the same start and end date! Only the       
    periods within the fiscal year can be different in the two variants.         
    The error is described in note 844029 :-                                                                               
    In the NewGL in Asset Accounting, it is still not possible for               
    depreciation areas to have fiscal year variants with different start and     
    finish dates. If you try to assign a fiscal year variant to an area,         
    whereby the fiscal year variant infringes this restriction, the system       
    issues error message AC 531.                                                 
    Regards Bernhard

  • Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Maybe it's set as a login item:
    - System Preferences: Users and Groups:
    - Highlight your user account in the left pane/list
    - Click "Login" tab at the top.
    See if you have an Automater action on the list
    - Note, you can select it, then right-click, and can then select "Reveal in Finder". That way you might have an idea what installed it.

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Why do i have to have my cellular data turned on to recieve or send TEXT messages?

    my girlfriend and i have noticed this most recently.
    To send or recieve TEXT messages (not MMS) on our iPhone 5's we have to have our *cellular data* turned on. OMG why? It's supposed to not use cellular data for texting (or callling) so why do we have to have it switched on for TEXT messages (SMS)? Does that mean that texting is now going to eat our data plans?  If so, we'd of been better off with our old cell phones.

    no- i think you've hit the nail on the head. (perhaps inadvertantly)
    because my g/f and i couldnt get each other's txts, over 3/4 of the time, if the cellular data wasnt turned on.
    green bubble = sms.
    blue bubble=imessage (data or wifi)
    all this was with (blue bubble) imessage stuff  (with the thought that it'd use wifi, but the wifi at work *****, so ofcourse it'll use data.
    Hmmn. I'm going to shut off iMessage and see if that takes care of the issue.

Maybe you are looking for

  • Error in Sm21

    Dear All, We are using ecc5 with oracle 9i and windows 2003. I am getting Getting error in sm21 . I have seen the dev trace in this there is sugesst agject DNS setting i am unable to solve the proble please suggest how to solve the problem. Time    

  • HT1752 Ineed a new lithium 3.6v battery for my G4. Do you know the size, and where to buy it? Thank you, Shaby.

    Hi, I need to change my old lithium battery 3.6v on my  G4. Do you know the size of this battery, and where to buy it on the web? Thank you. berdavid.

  • Changing Apple ID email

    Hello i have an email for my apple id lets just say it [email protected] i want to change my email from [email protected] to [email protected] but my problem is that if i do change it will it disrupt my apps on my iphone because they were downloaded

  • Query about ABAP future in SAP HANA

    Hello Experts, I have read many articles and SDN post about SAP HANA but does not get clear answer. I am having 7 years of experience of SAP ABAP and wanted to learn ABAP in SAP HANA. I learn that SAP HANA is having its own language also as SQL scrip

  • ¿Why my Windows 7 Pro have Kernel-Power error 41?

    Hello, good morning, I installed Windows 7 Professional Edition and each time freezes and restarts, I open the event viewer and I see several critical events would like to see if someone can help me. They say "Event 41, Kernel-Power", I occasionally