To display Days Hours Mins Format based on business hours

Hi,
I want to display Days Hours Mins Format.
I am Having two columns Like below,
Col1 (in days)    col2 (In Hours : Mins)
3days  4:5 
In this first have to  add Col1 and Col2 (Here one day is equals to
9 hours ) so the addition is 31.5
from this 31.5 i should display 3 Days 4 Hours 30 Mins because 31.5 contains 3 (9 hours) days 4 Hours and .5 is equals to 30 mins.
Kindly please help me in this,
thanks in advance.
GVRSPK VENI

Hello gvespk,
Regarding your description, are you looking for some sample as below?
DECLARE @T TABLE
ID VARCHAR(99),
SubID INT,
Days INT,
Hours FLOAT
INSERT INTO @T VALUES
('abz', 1, 2, null)
,('abz', 2, null, 3 )
,('abz', 3, 3, 4 )
,('abz', 4, null, null )
,('abz', 5, 2, null )
,('abz', 6, 1, 5 )
,('abz', 7, null, 2 )
,('abz', 8, null, null )
,('abz', 9, 2, 3 )
,('abz', 10, null, 2.5 );
SELECT SUM(DAYS)+FLOOR(SUM(HOURS)/9) DAYS
, FLOOR(SUM(HOURS)-FLOOR(SUM(HOURS)/9)*9) AS HOURS
, (SUM(HOURS)-FLOOR(SUM(HOURS)))*60 MINUTES FROM @T
DAYS HOURS MINUTES
12 1 30
If you have any question, feel free to let me know.
Eric Zhang
TechNet Community Support

Similar Messages

  • How to Calculate End-Date for a given Startdate in business hours without holidays

    Hello Experts,
    I need to create a plsql function where we need to determine end date for a task. For this, input will be only start date & number of hours allocated for that task. Based on this input we need to exclude Business hours & need to include only Business hours. and in the end we need to achieve the end date after the hour addition to the start date.
    Example : INPUT: 03-OCT-2013 12:00:00 PM /
                                  Hours Allocated 30 Hrs.
    Business Hours - 11 AM to 9 PM.
    So time starts from or Startdate is Friday 03-OCT-2013 12:00:00 PM. 
    So If I want to calculate the end-date by adding 30 hours to it, it should come WednesDay 09-OCT-2013 12:00:00 PM because I excluded Weekends & considered only business hours that is 11 am to 9 pm.
    I am not able to get any such guidance in Internet as most of the docs are having start & end date as input.
    Please help!
    Thanks in advance !!

    Hi,
    As Christ said, there's no nuilt-in Oracle function to tell whether a given DATE is a holiday or not, partially because there's so much local variation in holidays.  You can write a function like that (see http://forums.oracle.com/forums/message.jspa?messageID=3351081 ), but creating a table will be simpler and more efficient.
    I suggest creating a row for every date, whether it's a work day or not; that way, you can have variations in the schedule (e.g., schedule changes and
    partial holidays).
    CREATE TABLE  work_calendar
    (   dt  DATE       PRIMARY KEY
                       CONSTRAINT  work_calendar_dt
                           CHECK (dt = TRUNC (dt))
    ,   day_type       VARCHAR2 (8)  NOT NULL
                       CONSTRAINT  work_calendar_day_type
                           CHECK ( day_type IN ( 'HOLIDAY'
                                               , 'WEEKEND'
                                               , 'WORK DAY'
    ,   start_time     DATE
    ,   end_time       DATE
    ,   work_hours     NUMBER
    ,   work_hours_since_1970     -- or some point earlier than you'll ever need
                       NUMBER
    ,   CONSTRAINT  work_calendar_start_time
            CHECK ( TRUNC (start_time) = dt)
    ,   CONSTRAINT  work_calendar_end_time
            CHECK ( TRUNC (end_time) = dt)
    This will let you do a lot of the calculations you need without a function.

  • Deadline, Business Hours vs. Maintenance Windows

    I read the blog about Business Hours vs. Maintenance Windows, but I still have two questions
    http://blogs.technet.com/b/server-cloud/archive/2012/03/28/business-hours-vs-maintenance-windows-with-system-center-2012-configuration-manager.aspx
    Event 1: Application A
    No Maintenance Windows &  No Wake on LAN;
    Business hours is 5am to 10pm;
    User start laptop at 8AM and close at 5PM every day;
    Deadline is 11PM, Thursday;
    Available is 9Am, Monday, User clicks "Install Later".
    So when A will be installed?
    Event 2: Application B
    Maintenance Windows is 1AM to 4AM , NO Wake on LAN, B has not been configured that install when out of Maintenance Windows;
    Business hours is 5am to 10pm;
    User start laptop at 8AM and close at 5PM every day;
    Deadline is 11PM, Thursday;
    Available is 9Am, Monday, User clicks "Install Later".
    User never start laptop in Maintenance Windows time, so if it mean that B will never be installed?

    To add a couple of clarifying points to the article linked:
    - Business hours are meaningless after a deployment's deadline and are only used before the deadline.
    - Business hours are only relevant if a user has explicitly stated for a deployment to be enforced outside of their business hours.
    - The intent of business hours is to allow users to schedule enforcement of a required deployment before a deadline but outside of their work hours so it never interrupts them.
    The article does say all of this, just not as directly.
    For Event 2 (application b), this is why using maintenance windows usually doesn't work well for workstations. Why would the business hours be set for 5AM to 10PM though? That really makes no sense based on my third point above. Of course in this case, if
    the system is totally off, it doesn't really matter anyway.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Converting seconds to Days,Hours,mins and secs

    Hi gurus,
    I have a metric in seconds , which is a box uptime . I want to convert that into Days,hours , mins and secs .How can I do that ?
    For example , If I have 433500 secs , I should show it as 5days 00:25:00 or in some meaningful format . Can anyone help me out ?
    Thanks,

    Hi,
    Refer thinks,
    Re: seconds to hh:mm:ss format
    OBIEE 11g - Change seconds to DD HH:MM:SS format
    Deva

  • Time registration, time format, hour:min

    Hi, all Oracle gurus!
    In our school we have a system, which users can registrate their spent time in each line how much time they spent on this step. From the client it looks like Hour Min. From the Oracle table, it is saved as Float.
    In SQL, I can do a sum of on, then I can get:
    Week Payer ID Caller Registered What Spent time Account
    200504 Payer I 105997 Martin 20041119 15:16:37 task1 .25 Willy
    116854 Johan 20041229 08:50:33 task2 .008333333 Therese
    sum .258333333
    200606 Payer II 116854 Mary 20041229 08:50:33 task3 .041666667 Steve
    sum .041666667
    My questions are:
    1. the spent time here displayed is float, how can I format it so that it is displayed as Hours: Min?
    2. also the sum is displayed as float, how can it be displayed as Hours: Min?
    Can this be solved only by SQL?
    Many thanks.

    I think there is some problem with formating that you
    are suffering. You can paste the output between [ pre
    ] and [ / pre ] without the spaces beween brackets.
    Cheers
    Sarma.<p>
    Hi!
    I put some html tags, it looks like as following. On the table, spent_time is saved as float. Many thanks for advice.
    <div class=Section1>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'>Week<span
    style='mso-spacerun:yes'>   </span>Payer<span
    style='mso-spacerun:yes'>          </span>ID <span
    style='mso-spacerun:yes'>        </span>Caller<span
    style='mso-spacerun:yes'>               </span><span
    style='mso-spacerun:yes'> </span>Registered<span
    style='mso-spacerun:yes'>             </span><span
    style='mso-spacerun:yes'>             </span><span
    style='mso-spacerun:yes'> </span>What<span style='mso-spacerun:yes'>      
    </span><span style='mso-spacerun:yes'> </span>Spent time <span
    style='mso-spacerun:yes'>      </span><span style='mso-spacerun:yes'>  </span><span
    style='mso-spacerun:yes'> </span><span style='mso-spacerun:yes'> </span><span
    style='mso-spacerun:yes'>     </span>Account<span
    style='mso-spacerun:yes'>                 </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'>------ ------
    ----------------------- ---------- -------<span
    style='mso-spacerun:yes'>                 </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'>200504 Payer I<span
    style='mso-spacerun:yes'>      </span><span class=GramE>105997 <span
    style='mso-spacerun:yes'> </span>Martin</span><span
    style='mso-spacerun:yes'>             </span>20041119 15:16:37<span
    style='mso-spacerun:yes'>       </span>task 1<span
    style='mso-spacerun:yes'>               </span>.25<span
    style='mso-spacerun:yes'>        </span><span
    style='mso-spacerun:yes'>       </span><span style='mso-spacerun:yes'> </span><span
    style='mso-spacerun:yes'>    </span>Willy<span
    style='mso-spacerun:yes'>                 </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                                                                                          
    </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                                               
    </span><span
    style='mso-spacerun:yes'>                                                      </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                 </span><span
    style='mso-spacerun:yes'>             </span>116854<span
    style='mso-spacerun:yes'>   </span>Johan<span
    style='mso-spacerun:yes'>             </span>20041229 08:50:33<span
    style='mso-spacerun:yes'>        </span>task 2<span
    style='mso-spacerun:yes'>               </span>.008333333 <span
    style='mso-spacerun:yes'>    </span>Therese<span
    style='mso-spacerun:yes'>                 </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                         
    </span><span
    style='mso-spacerun:yes'>                                                                    </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                                                                                                     
    </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>       </span>****** **********<span
    style='mso-spacerun:yes'>            </span><span
    style='mso-spacerun:yes'>                                                                               </span>----------<span
    style='mso-spacerun:yes'>                         </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>       </span><span class=GramE>sum</span><span
    style='mso-spacerun:yes'>                                                                                                       
    </span><span style='mso-spacerun:yes'>            </span><span
    style='mso-spacerun:yes'> </span>.258333333<span
    style='mso-spacerun:yes'>                </span><span
    style='mso-spacerun:yes'>         </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                                                                                                     
    </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'>200606 Payer
    II<span style='mso-spacerun:yes'>      </span>116854 Mary<span
    style='mso-spacerun:yes'>             </span>20041229 08:50:33<span
    style='mso-spacerun:yes'>         </span>task 3<span
    style='mso-spacerun:yes'>              </span>.041666667 <span
    style='mso-spacerun:yes'>      </span>Steve<span
    style='mso-spacerun:yes'>                </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                                                                            
    </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                     
    </span>.<span style='mso-spacerun:yes'>                              </span><span
    style='mso-spacerun:yes'>                                                 </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>                                                                                                                                                     
    </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>       </span>****** **********<span
    style='mso-spacerun:yes'>                               </span><span
    style='mso-spacerun:yes'>                                                            </span>----------<span
    style='mso-spacerun:yes'>                         </span><o:p></o:p></span></p>
    <p class=MsoNormal><span lang=EN-US style='font-size:8.0pt'><span
    style='mso-spacerun:yes'>       </span><span class=GramE>sum</span><span
    style='mso-spacerun:yes'>                                                                                                       
    </span><span style='mso-spacerun:yes'>             </span><span
    style='mso-spacerun:yes'> </span>.041666667<o:p></o:p></span></p>
    </div>

  • Can Web Intelligence display time in 24-hour clock format?

    I would appreciate your kind help in answering this question:  How can I change the time format in a formula so as to display time in the 24-hour clock format?
              Presently the CurrentTime() value format looks like this  :  02:26:25 PM GMT-04:00
              Instead, I want it displayed in the 24-hour clock format like this  :  14:26
    I'm developing Web Intelligence reports in the BusinessObjects Enterprise XI 3.2 InfoView environment.
    I searched several places for an answer to this question, but had no luck.
    I searched the BusinessObjects Enterprise InfoView online help document (i.e., Web Intelligence Java Report Panel); I also searched two web sites: the Experts-Exchange website, and the BOB www.forumtopics.com website.
    I figured out that there is built in conversion function FormatDate() that can convert a date value into a text value, as for example :  FormatDate( CurrentDate(); "mmmm dd, yyyy" )
    However, I have not found an equivalent time function that would convert a time value into a text value of a specified format.
    Edited by: OSoccer on Jul 7, 2010 9:05 PM
    Edited by: OSoccer on Jul 7, 2010 9:06 PM
    Edited by: OSoccer on Jul 7, 2010 9:08 PM

    Anil,
         Perfect;  you answered my question!
         The only thing that I had to do differently was to leave off the quote marks from the string "HH:mm:ss" when I entered it into the Custom Date/Time box of the Number Format dialog window.
         While on this subject of the Number Format dialog window, I saw that the Date/Time box already held the following string value:
                    FULL_DATE
         So, thinking that I should leave that value alone, I entered the string "HH:mm:ss" in the box labeled "Undefined" next to the Date/Time box, instead.  That didn't work.  It just caused the webi report to display the CurrentTime() value as a long date, like this:
                   Friday, July 9, 2010
         So then I replaced the string "FULL_DATE" (without the quotes) with the string "HH:mm:ss" (first with and then without the quotes).  In the first try, the report displayed the time as "14:20:34"; in the second try, the report displayed the time as 14:20:34.
         Questions:
         Can you please tell me:
         1. What is the meaning and usage of the label FULL_DATE?
         2. In my attempts to get the time formatted the way I wanted it to look, I filled the Properties list (of the Number Format dialog window) with junk labels such as those listed below.  How can I delete these labels?
                   FULL_DATE; "HH:mm:ss"
                   FULL_DATE
                   FULL_DATE
                   FULL_DATE; "HH:mm:ss"
         3. What is the purpose of the box labeled "Undefined" next to the Date/Time box?

  • Calculating hours in numerical formats between 2 business days, calculated column

    Hi there,
    I need to calculate how many hours are between 2 days only including business days, outputting in numerical format (ex. 7.3). 
    I've been using this formula to output how many weekdays are between 2 days.
    =IF(AND((WEEKDAY(CompletedTimeStamp,2))<(WEEKDAY(,2)),((WEEKDAY(Created,2))-(WEEKDAY(CompletedTimeStamp,2)))>1),(((DATEDIF(Created,CompletedTimeStamp,"D")+1))-(FLOOR((DATEDIF(Created,CompletedTimeStamp,"D")+1)/7,1)*2)-2),(((DATEDIF(Created,CompletedTimeStamp,"D")+1))-(FLOOR((DATEDIF(Created,CompletedTimeStamp,"D")+1)/7,1)*2)))
    The problem with this is if the 2 dates are on the same day, it outputs "1". I need it to output the amount of hours then / by 24 to give me ".7"  instead.
    Is there anything I can do to convert this current formula to give me hours instead of days?
    Thanks,
    Terence

    The DATEDIF is rounding to the nearest day.
    Try this:
    =IF(AND((WEEKDAY(CompletedTimeStamp,2))<(WEEKDAY(,2)),((WEEKDAY(Created,2))-(WEEKDAY(CompletedTimeStamp,2)))>1),(((CompletedTimeStamp-Created+1))-(FLOOR((CompletedTimeStamp-Created+1)/7,1)*2)-2),(((CompletedTimeStamp-Created+1))-(FLOOR((CompletedTimeStamp-Created+1)/7,1)*2)))
    -1
    Then above will return fractions of days, i.e.  5.5 days. Multiply this by 24 for hours.
    I think there is a extra "+1" in the above example somewhere, so I added a minus 1 to get back the correct value.
    Hi.. Mike.. I am trying to use this calcuation.. its renndering "time being used 3.3".. I need it to calcuate a work day as 8 hrs  so if
    Start Date= 9/12/2014 9:00am
    End Date= 9/16/2014 5:00 pm
    should be 3 (8 hr work days)  any way I can fix this?
    Thanks in advance for your help.
    Mike Smith TechTrainingNotes.blogspot.com

  • 30 day rolling average of a single variable based on 1 hour averages?

    Can anyone recommend the best way to keep a 30 day rolling average of a single variable based on 1 hour averages?  I am thinking about using Citadel with and SQL query to update the average.  If there's a better way, I would appreaciate any ideas.

    I think you are on the right path, use the existing Citadel information with ODBC & SQL to get the data.  
    Saves archiving "duplicate" data.
    Forshock - Consult.Develop.Solve.

  • How to get two date difference in Day/hour/min/secs pl

    First of all,
    Hello to All, i am new to Oracle DB, but i have little experience in Other Database such as Sybase, sql server etc
    please kindly help me
    in DoctorChart table i have DocName,Id#,Citcotype,Medtype,AdmitDate,DischargeDate(both admitdate & Discharge date is date formatted columns)
    so how can i get the below differenceTime (which means Dischargedate-Admit Date in below format i.e, Day,Hours,Minutes,Seconds...)
    DoctorName, ID #, Citco type, MEDtype, DifferenceTime
    ========= === ======= ======= ===========
    Dr. KindaEmesko, 20045, Replace OutCard, ICH, 0 day 9 hours 11 minutes
    Dr. KindaEmesko, 20098, Replace OutCard, ICH, 1 day 2 hours 34 minutes
    Dr. KindaEmesko, 20678, Replace OutCard, ICH, 2 day 23 hours 52 minutes
    Dr. KindaEmesko, 20212, Replace OutCard, ICH, 4 day 1 hours 00 minutes
    Dr. KindaEmesko, 20345, Replace OutCard, BED, 3 days 14 hours 15 minutes
    Dr. KindaEmesko, 20678, Replace OutCard, BED, 9 days 21 hours 52 minutes
    Dr. KindaEmesko, 20015, Signature Overlay, Rest, 0 days 3 hours 29 minutes
    Dr. KindaEmesko, 45678, Signature Overlay, Rest, 0 days 1 hours 29 minutes
    Same way how can i get the Average Time for the above result (without ID columns)
    DoctorName, Citco type, MEDtype, Avg DifferenceTime
    ========= === ======= ======= ===========
    Dr. KindaEmesko, Replace OutCard, ICH, 2 day 1 hours 00 minutes
    Dr. KindaEmesko, Replace OutCard, BED, 6 days 17 hours 15 minutes
    Dr. KindaEmesko, Signature Overlay, Rest, 0 days 2 hours 29 minutes
    Please just tell me how to get the two dates difference as day/hour/minute format
    as well as how to get avg ( two dates difference as day/hour/minute format)
    Please Help me
    Thanks in advance

    Well, instead of all these suggested manipulations you can simply use intervals. Oracle uses day as a unit in date arithmetic, so Dischargedate-Admit Date is number od days between two dates. Built-in function numtodsinterval can be used to convert it into interval. For example:
    SQL> with t as (
      2             select trunc(sysdate) - 2 Admit_Date,
      3                    sysdate            Discharge_Date
      4               from dual
      5            )
      6  select  numtodsinterval(Discharge_Date - Admit_Date,'DAY') Hospital_Stay
      7    from  t
      8  /
    HOSPITAL_STAY
    +000000002 00:01:08.000000000
    SQL>  SY.

  • I use BB Bold 9790 and my battery which could at least,last for a day now at most,lasts for an hour

    I use BB Bold 9790 and my battery which could at least,last for a day now at most,lasts for an hour and half.
    The phone heats up so much that I am always forced to plug out the battery always.
    Please help cos I love the device!
    An more so can't afford to buy a new one cos its a little pricey.

    Oh, then reread Post 2 please, for the last paragraph gives you options to proceed with. Not knowing which you desire to use, I'll just give you a bunch and you can choose.
    The simplest way is to, on a PC (you cannot do this on MAC):
    1) Make sure you have a current and complete backup of your BB...you can find complete instructions via the link in my auto-sig below.
    2) Uninstall, from your PC, any BB OS packages
    3) Make sure you have the BB Desktop Software already installed
    http://us.blackberry.com/software/desktop.html
    4) Download and install, to your PC, the BB OS package you desire:
    http://us.blackberry.com/support/downloads/download_sites.jsp
    It is sorted first by carrier -- so if all you want are the OS levels your carrier supports, your search will be quick. However, some carriers are much slower than others to release updates. To truly seek out the most up-to-date OS package for your BB, you must dig through and find all carriers that support your specific model BB, and then compare the OS levels that they support.
    5) Delete, on your PC, all copies of VENDOR.XML...there will be at least one, and perhaps 2, and they will be located in or similarly to (it changes based on your Windows version) these folders:
    C:\Program Files (x86)\Common Files\Research In Motion\AppLoader
    C:\Users\(your Windows UserName)\AppData\Roaming\Research In Motion\BlackBerry\Loader XML
    6a) For changing your installed BB OS level (upgrade or downgrade), you can launch the Desktop Software and connect your BB...the software should offer you the OS package you installed to your PC.
    6b) Or, for reloading your currently installed BB OS level as well as for changing it, bypass the Desktop Software and use LOADER.EXE directly, by proceeding to step 2 in this process:
    http://supportforums.blackberry.com/t5/BlackBerry-Device-Software/How-To-Reload-Your-Operating-Syste...
    Note that while written for "reload" and the Storm, it can be used to upgrade, downgrade, or reload any BB device model -- it all depends on the OS package you download and install to your PC.
    If, during the processes of 6a or 6b, your BB presents a "507" error, simply unplug the USB cord from the BB and re-insert it...don't do anything else...this should allow the install to continue.
    You may also want to investigate the use of BBSAK (bbsak.org) to perform the wipe it is capable of.
    You may also want to try the "Bare Bones OS Reload Procedure" to attempt to narrow down the precise causal item:
    Load your OS "bare bones"...if anything is optional, do not install it.
    If the behavior presents immediately, then try a different OS with step 1
    If the behavior does not immediately present, then run for as long as it takes for you to be sure that the behavior will not present.
    Add one thing -- no matter how tempting, just one.
    If the behavior does not present immediately, then again run for long enough to be sure it will not have the same problem
    Repeat steps 4 and 5 until all things are loaded or the behavior presents
    When the behavior presents, you know the culprit...the last thing you loaded.
    If the behavior does not re-present, then you know that either step 1 or 2 cured it.
    If the behavior presents no matter what, then you likely have a hardware level issue for which no amount of OS or software can cure.
    You may also need the use of these tricks:
    KB10144 How to force the detection of the BlackBerry smartphone using Application Loader
    KB27956 How to recover a BlackBerry smartphone from any state
    http://crackberry.com/blackberry-101-lecture-12-how-reload-operating-system-nuked-blackberry
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • 24-hour clock format?

    In the previous version of Apple Discussions I was able to set the time displayed in 24-hour clock format, how can this be done in the current version of Apple Support Communities?

    I understand your point, but this change has been in the works for a very long time, and the fact is, as you say, you have to release at some point to stress test. There aren't that many issues with iOS—the forums are mainly usable on iPads and so on—so while those details are being worked out, it's probably best to move this out of beta testing and into the real world, so here we are.
    I happen to be very happy with the new format. I've been through at least three of these upheavals over the years, and imo, this is easily the smoothest transition we've seen. Many people working very long hours behind the scenes (props to Matt_K. here!) to smooth everything out and introduce many, many more features in the near- and mid-term, so be patient and give it a little bit of time (more than these few days anyway!)
    Good luck!

  • In the report we have to display DAY DESCRIPTION(Ex:Monday,Sunday,...)

    In the report we have to display DAY DESCRIPTION(Ex:Monday,Sunday,...)in  columns. How to get it? Can anyone help me?
    Thanks in Advance

    If we put calday in dril down we can display mm/dd/yyyy formate. Instead of this we have to display monday,tuesday,wednesday etc. corresponding to that date.
    In the repot level if i go to properties there is no option for key and text. i think time charecteristics don't have that type of option.
    If any doughts plz let me know
    thanks 4 ur reply

  • How to set the Date and Currency Formats Based on Country

    Hi Friends,
    I am designing the one Global Form it will use for all countries.
    in that Form i want to print the date and currnecy Formats based on country.
    Like
    For US i want print the date and Currency Like This.
    Date -  MM/DD/YYYY
    Curremcy - XX,XXX,XX.XX
    For DE i want print the date and Currency Like This.
    Date -  DD.MM.YYYY
    Curremcy - XX.XXX.XX,XX
    Please suggest how i can control these things through Java Script or Formcalc....

    Hi Nitin,
    thanks For ur reply,
    i tried with this solution,
    But it is displaying the default Format like bellow formats.
    For short - mm/dd/yy
    For Medium - mmm dd , yyyy
    For Long     - thursday ,mmm dd , yyyy
    it was prinitng in above mentioned format,
    but here i want to print my own format for USA like MM/DD/YYYY.

  • Enter run time in hours / mins / secs on the front pannel

    I am trying to get a pop up VI to run alongside my main program. While the measurment parts of my software run I want a VI to pop up and display the run time in hours / mins / secs. Once the main VI ends its sequence, I want the timer VI to close down again. It sounds easy and maybe it is, but can I get it to work ........... HELP !!

    I have created an example program for you (in LV 6.0). Basically a time window will popup at the start and show the runtime (calculated, so starts at 0 hours), and when you stop the Main vi the time window will close. The time is updated at every loop of the Main vi. All of this is achieved through VI server as you will see.
    I hope this helps you.
    Kim
    Attachments:
    Runtime_indicator.llb ‏39 KB

  • I got my newly bought (within 30 days) ipad mini cracked, and the screen was broken, where can I find a place(montreal) to replace it, and how much will it cost?

    I got my newly bought (within 30 days) ipad mini cracked, and the screen was broken, where can I find a place(montreal) to replace it, and how much will it cost? Can i get a free replacement in apple store since within 30 days?

    huilihuili wrote:
    Can i get a free replacement in apple store since within 30 days?
    No. Damage caused by the user is not covered by warranty. A replacement iPad mini is $219 for the 1st generation, or $249 for the iPad mini with Retina display.

Maybe you are looking for

  • Deleted calendar entries are not sync to the serve...

    I'm using a E71 with MfE. The synchronization works fine except when deleting an item of the E71 calendar. The deleted item on the mobile is not deleted on the server. If I delete an item on the server the sync works correctly and the item is deleted

  • Very poor print quality when printing out photos.

    I used an IPhone 4S and no matter what quality of paper I used the photo came out indistinct andof very poor quality. I am using brand new HP inks.

  • Server and MIME types

    I'm having a great deal of trouble getting my java web start working I've set up everything on the site but when I click the link it shows the XML code from my JNLP file. I read that I have to set a MIME type on the server but I have no way of changi

  • Longtext update on BusiPartner via LSWM

    Hi, we are using in LSMW CRMXIF_PARTNER_SAVE for updating long texts on business partner (bp). it works, but alreadyexistent_ long texts on bp will be overwritten by LSMW (so we lost them!). Have anybody a hint how to avoid this? We need an update(=a

  • Macbook Pro will not close

    When putting my computer to sleep, or shut down, my pro wont close. I can see the hooks coming down, but all of a sudden, the magnets(?) arent holding it closed. Any quick fixes, or should I call AppleCare?