Conversion of minutes into hours obiee 10g

hello,
i have a requirement saying that we need to convert the minutes to hours later aggregate the hour values.
i.e.,i have the outage_time=130 mins.If i try to convert the 130 mins to hrs it will be 2.16 hrs but i am expecting 2.10 hrs.And later need to aggregate(SUM) the hrs values like 2.34,2.45....=4.79 but my expectation is 5.19 hrs.
Is this requirement is possible?if yes,can anyone please help me out.
thanks,
prasanna

It is not straight way to get this and you need to compromise at aggregation
for 130 minutes to get 2.10
use
130/60==>2
MOD(130, 60)==>10
combine them to get 2.10 in string format.
>aggregate(SUM) the hrs values like 2.34,2.45..
Since BI is not sure about your calculation in the form of hours you need to go by mintues and then use above steps to convert in hours
I'm sure this helps you, mark as correct else let me know your comments
~ http://cool-bi.com

Similar Messages

  • TS3354 Cannot downloading TV movies. Itune attempts download but then freezes after about 1 minute into the download.  Download status first states video will take 37 then 45 hours to download

    Cannot downloading TV movies. Itune attempts download but then freezes after about 1 minute into the download.  Download status first states video will take 37 then 45 hours to download. My computer more than meets the minimum requirement for HD downloads...not sure about the HDCP  capability

    Hi 1611kjb,
    Please refer to the solution mentioned in the following threads :
    http://forums.adobe.com/message/5396792#5396792
    http://forums.adobe.com/message/5409050#5409050

  • I have a late 2012 iMac running osx 10.8.5.  I keep losing access to my internal hard drive.  I can reboot and regain access and it will last for a few minutes or hours.  Disk utility does not seems to help.

    I have a late 2012 iMac with an I5 precessor running OSX 10.8.5 and a 1tb internal hard drive.  I keep losing access to the internal hard drive/startup disk.
    I can reboot and everything operates as normal for a few minutes or hours but then I lose all access again to anything on the hard drive.  The computer is still up and running but no files can be accessed and certain websites cannot be acessed even though internet access appears to be normal.  Disk utility can only find permission errors related to iTunes which can be repaired only to come back at the next scan (I would not think permission errors would have anything to do with the hard drive crashing).  It does not seem to matter what program I am using at the time access is lost and it can lose access sometimes right after reboot when no program is running.

    You will need to boot into the Recovery Volume (command - R on a restart or hold down the option/alt key during restart and select it) to run Disk Utility/Disk Repair.

  • So after updating my ipod touch 3rd gen to 4.3.1 i noticed a lag everytime i turn it back on. it stays on the lock screen for minutes sometimes hours. the screen is usually unresponsive the only things usually changing are the time and battery percentage.

    so aafter upsating my touch to 4.3.1 i have noticed everytime i restart the ipod there is a huge lag at the lock screen. the screen only updates itself every three to five minutes only updating the time and battery status. i cannot do anything, usually it will stay like this for minutes sometimes hours. i have tried restoring it and thought updating will fix the problem but it hasn't yet. i currently have ios 4.3.3. recently i had a friend look into the ipod and he told me on a folder called damaged files he found this, 37c3ad com.apple.autowake.plist. how can i fix this?

    Try a manual install following directions in link below.
    Basic troubleshooting steps. 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD  120G Vertex 3 SSD Boot HD  

  • Oracle bi error codes u9kp7q94 OBIEE 10g

    Hi All,
    I have created new user in RPD(Online Mode).
    Then i have loged into Answer.It throws error
    "oracle bi error codes u9kp7q94 OBIEE 10g"
    How to fix.
    Thanks
    Gram

    Raj wrote:
    Hi All,
    I have created new user in RPD(Online Mode).
    Then i have loged into Answer.It throws error
    "oracle bi error codes u9kp7q94 OBIEE 10g"
    How to fix.
    Thanks
    GramAre you getting this error on the login screen? or when you are opening a report?

  • Issue with PDF displaying ' (apostrophe) symbol in OBIEE 10g

    Our report/dashboard bears some special characters like *'* *(apostrophe)* and they get displayed fine in normal view of OBIEE 10g. But if the same report is exported as PDF output the characters are being displayed into equivalent ASCII code For eg: *'* *(apostrophe)* is displayed as *&#39*. Is this a known bug in OBIEE 10g or is there a workaround/patch available for the same?

    Hi ,
    Are you using 10.1.3.4.1 .
    I think 10.1.3.4.2 is more stable version for 10g and below issues are corrected in this :
    Master Note For Print/Download issues In OBIEE 10g [ID 1206791.1]
    Blank Page or Errors When Printing to PDF. [ID 1086844.1]
    OBIEE 10.1.3.2 PDF Print Does Not Respect Defined Column Widths [ID 544941.1]
    .... so just a update may help.
    Thanks
    sayak

  • One download link for 2 diffferent reports on a Dashboard page Obiee 10g

    Hi All,
    I have a requirement where in I have 2 different report in 2 sections on a Dashboard page. Is it possible to have a single download link so that the user downlaods the 2 reports by clicking on a single button. At present we are having 2 download link and the user has to download twice for 2 different reports.
    I have to implement this in OBIEE 10g.
    Thanks,
    Krishna

    Hi,
    By implementing briefing book method you can achive it.
    steps
    1) Create briefing book and add your two reports into that briefing book
    2) save it your briefing book and then add it your dashboard page
    ref:
    http://gerardnico.com/wiki/dat/obiee/briefing_book
    http://tipsonobiee.blogspot.com/2010/07/working-with-oracle-bi-briefing-books.html
    Thanks
    Deva

  • D2k report query , want to develop in obiee 10g

    Hi,
    I have a d2k report query, the result what i am getting in d2k report can i get the same result in obiee 10g.
    my query in d2k report auery is like :
    select a.vndr#,b.vndr_name,a.cust_type_cd,c.cust_type_e_dsct,a.branch_cd,d.branch_e_name,(sum(nvl(a.sales_total_value,0))-sum(nvl(a.return_total_value,0))) net_sales_value,count(distinct(a.cust#)) cust_count
    from cust_net_sales_tmp a,vendor b,cust_type_codes c,branches d where
    a.vndr#=b.vndr# and
    a.branch_cd=b.branch_cd and
    a.cust_type_cd = c.cust_type_cd and
    a.cust_type_cd between :f_ctype and :t_ctype
    group by a.vndr#,b.vndr_name,a.cust_type_cd,c.cust_type_e_dscr,a.branch_cd,d.branch_e_name
    order by a.vndr#,a.cust_type_cd,a.branch_cd
    thank you.
    please suggest..

    Hi,
    The presentation variable is being passed correctly, but still the date value is not persisiting.
    I have two prompts, both having presentation variables passed into them;One of the prompt value is being persisted but the other one(here date) is not.
    I am not able to justify this issue as the problem is very vague. I dont see any reason for this issue to come up.
    Anyways I am still trying to figure out the problem.
    Regards
    Ankita

  • OBIEE 10g - Ability to overlay Area Chart?

    Hi Experts,
    I am using OBIEE 10g. I have a requirement to plot Total Market Units with Brand units over time in an Area Chart. The requirement here is that the area of Brand Units should overlay on the Market units measure thus signifying that Brand units is out of the total Market Units, but when this is being plotted into an Area Chart, the Market Units is stacked on top of the Brand Units therefore the chart's total (highest point) on the Y Axis is Market Units + Brand Units but I want this total to reflect only the Market Units figure.
    Is there anyway in an Area Chart to show the figures for Market Units and Brand units separately (when mouse rollover) but on the Y axis, it's just showing the Market units's figure?
    Sorry if I had confused anyone but I had tried to explain the requirement as best as I can.
    Thanks in advance!
    Chris

    Using logical query filters can convert to sql but it should not with XML.
    This is expected behavior for logical queryies only.

  • Connecting SQL Analysis Services 2005 cube with obiee 10g

    Hello experts,
    I'm trying to link an SQL Analysis Services 2005 cube with obiee 10g.
    In Oracle BI Administration, when I choose File -> Import -> From
    Multi-dimensional, I have to fill the next gaps:
    Provider Type: Analysis Services 2005
    URL: ***********
    User: blank
    Password: blank
    Before to do that, I need to create the URL path.
    To create the URL, I have followed this link.
    http://erpthings.blogspot.com/2008/08/obiee-connection-to-msas-2005-
    cube.html
    But, it hasn't worked because when I was trying to configure the HTTP
    access to SQL Server 2005 Analysis Services, we have to perform a test to ensure that it has been well configured. In IIS -> WebSites -> Default WebSites -> olap, we should browse the document called "msmdpump.dll" and this should show an xml document, but it doesn't.
    Thanks!

    Hi Alex
    It sounds like your MS data pump might not be configured correctly. First ensure that is working before trying to put the values into OBIEE. Don't worry about the 500 error - I get that too instead of an XML page.
    You can read a bit more about SSAS support on my blog here:
    http://total-bi.com/2010/12/obiee-sql-server-analysis-services-cubes/
    Here's the link to Microsoft's description of setting up msmdpump.dll
    http://technet.microsoft.com/en-us/library/cc917711.aspx
    Paul

  • Object Level security by creating catalog groups in OBIEE-10G

    Hi All,
    I have a requirement to display the dashboard based on the user login. Ex. Mike belongs to HR, Smith belongs to Accounts
    When Mike logs in he should see only these three dashboards. HR View, Common data1, common data2. When Smith logs in he should see only these three dashboards. Accounts view, Common data1, commondata2.
    The commondata1 and commondata2 dashboards has common reports for all the departments. The other dashboards are department specific with all different reports. How can I implement this?
    From one of my earlier posts I was advised to do it using Object Level security by creating catalog groups. Can you please provide me end to end instructions on how to create Object level security based on catalog groups.
    Thanks for your time and help.

    Hi,
    Mike to HR
    Smit - Account
    Yes, You achive by Object Level security by creating catalog groups
    1) Create Catalog group and users in RPD part(Ex: Account_grp,HR_grp)
    2)assign user to that particular group(let say Ex: Account_grp= Smith and HR_grp=Mike )
    3) login (Admin user id ) into dashboard page and --->mange dashboard page -->add users to that particular
    dashboard to relevent users and save it then
    try to login that mike and smith user it will work
    kindly refer below link
    http://www.rittmanmead.com/2010/01/obiee-10g-web-catalog-best-practices/
    http://www.rittmanmead.com/2007/05/obiee-and-row-level-security/
    thanks
    Deva

  • Localization in OBIEE 10g(Error "start row is set higher than the row count

    Hi All,
    I m Working on Localization.
    I have used exteranize string and saved excel file and added language column and inserted data en and fr and loaded the file into the database.
    then i have created 2 variables
    one is for weblanguage SELECT 'VALUEOF(NQ_SESSION.WEBLANGUAGE)' FROM DUAL
    second is SELECT SESSION_VARIABLE, TRANSLATION FROM TAB_EXTERNAL WHERE LANGUAGE = 'VALUEOF(NQ_SESSION.LOCALE)' when i click on Test for the second variable it showing error
    "start row is set higher than the row count"
    i have seleted start row =10 and show some 10.then also it is showing same error.
    Please send me the solution ASAP.
    Thanks and Regards
    Kiran Kumar

    Hi Kiran,
    I am working in OBIEE localization. I created two variables and when press test i am getting vaules successfully. But in OBIEE application i am getting columns in english only. It seems there is some problem with values in DUAL table. It contains only 1 column called 'DUMMY' and value as 'X'.
    Please give me complete configuration steps to setup localization OBIEE 10g. Please drop me a mail to [email protected] if u have steps. I will call u if u provide contact number.

  • Constraints for presentation variable in obiee 10g

    Hello Guys,
    What are the constraints for presentation variable in obiee 10g?
    requirement: I am unable to find the variable option, when i selects CONTAINS operatior, during creating the prompt.

    Hi,
    In 10g, a dashboard prompt can only set presentation variables when you use the "is equal to/is in" operator. Also, it is not available in case of MultiSelect prompt.
    Refer to the below thread for some alternate solutions:
    visualize prompt values into report Answer?
    Thanks

  • Minutes and hours query problem

    I've got the following query in my app:
    SELECT NAME,
    SUM(HOURS)+SUM(MINUTES/60)-SUBSTR(TO_CHAR((SUM(MINUTES/60)),'9999D00'),6,3) AS"HOURS",
    MOD(SUM(MINUTES),60) AS"MINUTES",
    SUM(OVERTIME_HOURS)+SUM((OVERTIME_MINUTES/60))-SUBSTR(TO_CHAR(SUM((OVERTIME_MINUTES/60)),'9999D00'),6,3) AS"OT HOURS",
    MOD(SUM(OVERTIME_MINUTES),60) AS"OT MINUTES",
    SUM (STAT) AS "STAT",
    SUM(HOURS + (MINUTES/60) + (OVERTIME_HOURS*1.5) + ((OVERTIME_MINUTES/60)*1.5) + STAT)-SUBSTR(TO_CHAR(SUM((MINUTES/60)+((OVERTIME_MINUTES/60)*1.5)),'9999D00'),6,3) AS "TOTAL HOURS",
    MOD(SUM(MINUTES+(OVERTIME_MINUTES*1.5)),60) AS"TOTAL MINUTES"
    FROM KTT_INFORMATION
    WHERE DAY BETWEEN (:P15_FROM_DATE) AND (:P15_TO_DATE)
    GROUP BY NAME
    I want the hours and minutes to display as hours in one column and the remaining minutes in the next column. The minutes are only 15,30 or 45 in the table. For some reason one of the hours columns is giving an output with a decimal. Where the output should be 191 hours and 45 minutes I'm getting 191.5 hours and 15 minutes.
    Any ideas?

    create or replace function get_time(p_time number)
    return varchar2
    is
    v_time varchar2(20);
    begin
    v_time:=to_char(trunc(mod(p_time,3600)/60), 'FM00') || ':' || to_char(mod(p_time,60), 'FM00');
    return (v_time);
    exception
    when others then
    return null;
    end get_time;
    show errors;
    i created a function which converts given minutes into hrs and min.
    then i created a tem table and trying to insert hrs into one column and min into anothere column.
    CREATE TABLE TEMP
    TIME NUMBER(3) NOT NULL,
    HRS NUMBER(3) NOT NULL,
    MIN NUMBER(3) NOT NULL
    insert into temp values (150,substr(get_time(150),1,2) ,substr(get_time(150),4,5))
    hope this may be helpful to you.
    sudhir.

  • Time- how long to import photos from 4gb flash drive minutes or hours?

    time- how long to import photos from 4gb flash drive minutes or hours? into iphoto
    thanks

    File transfer rate for USB is around a maximum of around 40 GBs/hour.

Maybe you are looking for

  • What is the difference: Audigy 4 & Audigy 4

    Hi, I'm interested in Audigy 4 non Pro but I can't find what's the difference between audigy 4 and audigy 4 pro. Where is a review of the audigy 4 non pro? Please, help me! My English is bad, sorry, i'm writting from Spain. Thanks! RicardoMessage Edi

  • Can air for html/ajax accessing serial port or usb?

    I just have made use of Adobe AIR .I want to use printer with air . Do air have some poperties to accessing serial port or usb? I look up that on the Adobe AIR documents.I only found 'Adobe® AIR™ provides the eans to check for changes to the network

  • Export/import procedure for foreign trade field in PO item

    Hi Experts, I met a problem in import PO. Is there a possible way to make the Export/import procedure for foreign trade field in PO item automatically be determined? Thanks, Emily

  • How can I download all my music from the cloud to itunes?

    I have several hundred songs in the Cloud that I am attempting to download to my local PC iTunes. I have clicked and clicked and clicked on eligible songs, but nothing happens. I get a ghost text window "Download from iCloud" but nothing happens. I h

  • DP91-Debit memo request -selling price

    Dear Friends, the client requirement is to bill the his customer based on the equipment and manpower utilized Now i have created a contract - has assigned the DIP profile in item category and the WBS element is attached in contract item level based o