How to Perform Group By operation in OBIEE 11g

Hi,
I have created a report for the "Nationality count in department wise manner", since for this i need to give 'group by department' for getting correct answer...
But in OBIEE 11g on presentation service how i need to give "Group BY" operation....for viewing correct count in nationality wise......
Regards,
Harry...

Hi sai,
U mentioned, but i couldn't clearly able to understand that.......Since to perform Group By i need to make some setting changes in content in Advanced Tab setting like that it is mentioned, but i need to perform in the following manner
select count(nationality), nationality
from per_all_people_f, per_all_assignment_f, hr_all_organization_units
group by department
Note: per_all_people_f-----------> dimension table, per_all_assignment_f--------------> fact table
nationality from per_all_people_f and count(nationality) from per_all_assignment_f
But department is from hr_all_organization_units--------->dim table
I dont want to see the departments but i need to group the result in department manner that i was taking from the table hr_all_organization_units.....
How to perform Group BY in OBIEE 11g.......
Thanks,
Harry.........

Similar Messages

  • How Increase performance of delete operation

    Hi,
    How Increase performance of delete operation. This delete is done on a table which has around millions of records and loaded back every day .
    The statement is in a procedure and is as follows.
    #$%%$#$;
    commit;
    delete from TVRBC_SITE_ROLLUP_T;
    commit;

    Hi,
    execute immediate 'truncate table TVRBC_SITE_ROLLUP_T';
    Regards,
    Oleg
    Message was edited by:
    tsiboleg

  • How to Calculate Leap Year ago in OBIEE 11g

    Hi Gurus,
    I have one fact table and having one measure column. I have to calculate current year and Last year.
    Using Time series function (Todate,Ago) have calculated current year as well last year also.
    The problem is Current year is showing correct value only but Last year was showing wrong data.
    We found the problem is Leap year, last year FEB month is having 29 dates. Due to this we are getting wrong date.
    Kindly suggest me how to achieve this requirement.
    Thanks

    Hi Gurus,
    How to resolve Leap Year calculation in OBIEE 11g.
    The problems is Year Ago column.
    Please suggest me how to resolve this.
    Thanks

  • How to enable users change password in obiee 11g?

    Is there anyone know how to enable users change password in obiee 11g?
    And I have tried the method in obiee 10g, bu it didn't work.
    Any help would be appreciate.

    As per I understand your requirement,
    In your Dashboard create a Presentation variable which receives the value of year you select.
    Now in your analysis, select the year column along with all the measures you want (Actual, plan, Forecast, and what-if, etc).
    Create a filter on Year column and convert it into SQL. Put the condition as:
    "Year" BETWEEN @{Presentaion_Variable} - 1 AND @{Presentation_Variable}
    You will get the result for selected year and the previous year.
    Hope it helps..
    Regards,
    A.K.

  • MINUS Operator in OBIEE 11g

    Hi all ,
    I have a requirement to use MINUS operator in a column of a report . Since it is available for two separate criteria , Could someone suggest how to perform the same in OBIEE 11g for a column.
    the conditions to be implemented in a column are
    select count(*) from ( 
    select distinct trx.shipment_header_id
    from   
    F_ERP_PO_RECEIPTS_TRX trx
    where   trx.transaction_type = 'RECEIVE'
    MINUS
    select distinct rec.shipment_header_id
    from   
    where   trx.transaction_type = 'DELIVER').
    How can i perform these conditions for a column of a report .
    Reg,
    Niv D

    Hi Niv D,
    I guess this can be done as we have union, union all and minus available.
    once you select the required subject area say SA for the below query,
    select distinct trx.shipment_header_id
    from 
    F_ERP_PO_RECEIPTS_TRX trx
    where   trx.transaction_type = 'RECEIVE'
    on the right side of the criteria you can see a + symbol with venn diagram. once you click on it, it gives you an option to select the next SA for
    select distinct rec.shipment_header_id
    from 
    where   trx.transaction_type = 'DELIVER').
    once you selected that, you can see the criteria changes accordingly.
    there you change to union or minus.
    once you have the conditions for both, make the layout as pivot and apply count on the column. you are there with the result,
    I tried earlier with union but not with minus. but this should work.
    Regards,
    KN
    ebs2obiee.wordpress.com

  • Filter Grouping not working for OBIEE 11g

    Hello!
    I need some help on the below:
    I have built a simple report in OBIEE 11g with FILTER grouping on two dimensions as below:
              Operative Hierachy is equal to Europe, IMEA, APAC, China Focus Country, Americas, US and Canada
         and      Accounts is equal to Net Sales (i), Gross Margin (i), GM% (i)
    or
              Accounts is equal to Gross Margin, Net Sales, Gross Margin %
         and      Operative Hierachy is equal to / is in Organizations Total
    The report was working as expected; but now suddenly it's showing no results with the error "+The specified criteria didn't result in any data. This is often caused by applying filters and/or selections that are too restrictive or that contain incorrect values.+" - even though data is present ! - I have tested this by splitting it into two reports (with only the AND conditions)- which is then woking as expected.
    Points to note:
    --There had been no change on the Report, when it stopped showing results.
    --I have tested this filter grouping with other dimensions- & they are working fine.
    --The OBIEE reports are fetching data from ESSBASE cube.
    --Only thing which I can remember when it stopped working is that, there had been a data load on the ESSBASE cube. But other reports using these dimensions are working.
    Has anyone faced the same issue before. Please help.
    Edited by: Anu on Jan 22, 2013 12:31 AM

    Hi User, Vijay,
    Yes I have checked the generated SQL queries and the MDX queries as well. Both queries are generated as expected, but returns no result.
    But now I have found out how these two different dimensions are different from my other dimensions. Only these two dimensions have a SORT order logical column defined in the BMM layer- which I think is causing the problem, BI Server not able decide which column to sort. So, the sql gives result when I cimment out one of the SORTKEY
    SELECT
    0 s_0,
    "PSS Essbase"."Accounts"."Accounts" s_1,
    "PSS Essbase"."Operative Hierarchy"."Operative Hierachy" s_2,
    -- SORTKEY("PSS Essbase"."Accounts"."Accounts") s_3,
    SORTKEY("PSS Essbase"."Operative Hierarchy"."Operative Hierachy") s_4,
    "PSS Essbase"."Facts"."Measure" s_5
    FROM "PSS Essbase"
    WHERE
    ((("Operative Hierarchy"."Operative Hierachy" = 'Europe') AND ("Accounts"."Accounts" = 'Gross Margin'))
    OR (("Operative Hierarchy"."Operative Hierachy" = 'Russia Focus Country') AND ("Accounts"."Accounts" = 'Sales ASP')))
    ORDER BY 1, 5 ASC NULLS LAST, 4 ASC NULLS LAST
    FETCH FIRST 65001 ROWS ONLY
    Any views on what happens when we use two dimensions in the same report which have sort columns defined in the repository...

  • How to provide Responsiblity level security in OBIEE 11g

    Hi all,
    Can any one tell me how to provide the responsibility level security in OBIEE 11G.

    Hi,
    You need to create group of users and then apply filters over that groups.
    you should establish an additional filter for group1 (user1 belongs to group1 in your example). Follow next steps:
    - Manage -> Security...
    - Groups -> click right group1 and select propierties.
    - Select button 'Permissions...'
    - Select tab 'Filters' -> add new filter.
    - On the column name select the metric you need filter, in your example, customer sales. On the column 'Business model filter' put table.division=division1
    you should add the Customer table to your Sales-fact LTS add apply the filter to this combined LTS as well
    For more:
    http://oraclebizint.wordpress.com/2008/06/30/oracle-bi-ee-1013332-row-level-security-and-row-wise-intialized-session-variables/
    also try http://www.biblogs.com/1969/12/31/obiee-11gr1-security-explained-an-11g-security-overview/
    http://forums.oracle.com/forums/thread.jspa?threadID=1120336
    Thanks
    Deva
    Edited by: Devarasu on Oct 11, 2011 6:08 PM

  • How to build a Analysis report in OBIEE 11g

    Hi All,
    I have a query regarding 'How to' to build an analysis report in OBIEE 11g.
    The data model is a financial data model, where information such as Actual, Plan, Forecast, What - if etc for current AND prior year need to be displayed in a dashboard.
    I created two analysis reports one for current year Rep1 and second for prior year Rep2 each with filter criteria as current year and prior year respectively based on years column. and then in the dashboard I created prompt based on scenario column (radio button) for Actual, plan, Forecast, and wht if.
    I am able to show the current vs prior year data in the same dashboard for Actual or Plan or forecast or what if (depending on data availability in the database).
    I want to achieve the same information in a single analysis report instead of two separate analysis reports. I do not want to create separate physical report for current and prior year data.
    I need one analysis report which I can use in dashboard and depending on selection for scenario (actual , plan, forecast or wht if) I want to show the current AND prior year data the way I achieved in with two seperate reports embedded in their respective sections as explained above.
    Does any one have idea how to achive this by building single analysis report?
    If you need any more clarificaiton or have any queries, please let me know.
    Thanks and Regards
    Santosh

    As per I understand your requirement,
    In your Dashboard create a Presentation variable which receives the value of year you select.
    Now in your analysis, select the year column along with all the measures you want (Actual, plan, Forecast, and what-if, etc).
    Create a filter on Year column and convert it into SQL. Put the condition as:
    "Year" BETWEEN @{Presentaion_Variable} - 1 AND @{Presentation_Variable}
    You will get the result for selected year and the previous year.
    Hope it helps..
    Regards,
    A.K.

  • How to remove the "Sign Out" in OBIEE 11g?

    How to remove or hide the "Sign Out" option from Dashboard in OBIEE 11g?
    Edited by: Siva Prasad on Jul 6, 2011 6:20 AM

    Hi Amit, Following z the file.. Plz check it out....
    <html xmlns:sawm="com.siebel.analytics.web/message/v1" xmlns:sawpg="oracle.bi.ps.page/v1" sawpg:cacheable="false">
    <head>
    <title><sawm:messageRef name="kmsgBIEEHomeTitle"/></title>
    <sawm:messageRef name="kuiFrameworkHeaderHead"/>
    <link href="fmap:catalog.css" type="text/css" rel="stylesheet" />
    <link href="fmap:home.css" type="text/css" rel="stylesheet" />
    <link href="fmap:uicomponents/obips.FormFields/obips.FormFields.css" type="text/css" rel="stylesheet" />
    <link href="fmap:uicomponents/obips.FloatingWindow/obips.FloatingWindow.css" type="text/css" rel="stylesheet" />
    <link href="fmap:uicomponents/obips.Dialog/obips.Dialog.css" type="text/css" rel="stylesheet" />
    <script type="text/javascript" src="fmap:common/dragdropframework.js"></script>
    <script type="text/javascript" src="fmap:common/layout.js"></script>
    <script type="text/javascript" src="fmap:common/obips.TabCircler.js"></script>
    <script type="text/javascript" src="fmap:common/obips.XMLDOM.js"></script>
    <script type="text/javascript" src="fmap:webserviceproxies/catalogmanager.js"></script>
    <script type="text/javascript" src="fmap:uicomponents/obips.FormFields/obips.FormFields.js"></script>
    <script type="text/javascript" src="fmap:uicomponents/obips.FloatingWindow/obips.FloatingWindow.js"></script>
    <script type="text/javascript" src="fmap:uicomponents/obips.Dialog/obips.Dialog.js"></script>
    <script type="text/javascript" src="fmap:uicomponents/obips.UberBar/obips.UberBar.js"></script>
    <!--Please don't add this back. obips.Toolbar is deprecated! <script type="text/javascript" src="fmap:uicomponents/obips.Toolbar/obips.Toolbar.js"></script>-->
    <script type="text/javascript" src="fmap:uicomponents/common/obips.TextDialog.js"></script>
    <script type="text/javascript" src="fmap:uicomponents/common/obips.MessageDialog.js"></script>
    <script type="text/javascript" src="fmap:uicomponents/common/obips.ConfirmDialog.js"></script>
    <script type="text/javascript" src="fmap:common/datetime.js"></script>
    <script type="text/javascript" src="fmap:common/list.js"></script>
    <script type="text/javascript" src="fmap:catalog/catalogaction.js"></script>
    <script type="text/javascript" src="fmap:catalog/catalogmanagerhelper.js"></script>
    <script type="text/javascript" src="fmap:catalog/actionhandlerimpl.js"></script>
    <script type="text/javascript" src="fmap:catalog/actionlinksrender.js"></script>
    <script type="text/javascript" src="fmap:catalog/catalog.js"></script>
    <script type="text/javascript" src="fmap:catalog/itemproperties.js"></script>
    <sawm:if name="session.syndicate" op="equals" value="workspace">
    <script type="text/javascript" src="fmap:common/workspacesyndicatebase.js"></script>
    </sawm:if>
    <script type="text/javascript" src="fmap:common/alertsui.js"></script>
    <sawm:resourceBundle path="common/saw.alertsui.xml"/>
    <script type="text/javascript" src="fmap:home/bieehome.js"></script>
    <script type="text/javascript">
    function NQOnLoadEvent()
    //render header
    <sawm:messageRef name="kuiFrameworkHeader" >
    <sawm:setParam name="helpUrl"><sawm:fileMap path="biee0124.htm"/></sawm:setParam>
    <sawm:setParam name="helpCaption"><sawm:messageRef name="kuiBIHContextHelp" /></sawm:setParam>
    <sawm:setParam name="title"><sawm:messageRef name="kmsgBIHHomeTabTitle"/></sawm:setParam>
    </sawm:messageRef>
    <sawm:messageRef name="kmsgMostRecentItemsScript" />
    var tDownloadLinks = [
    <sawm:if test="officeURL">
    {text:'kmsgBIHOracleBIForMSOffice', url:<sawm:json>officeURL</sawm:json>, desc:'kmsgBIHOracleBIForMSOfficeDesc'},
    </sawm:if>
    <sawm:if test="smartViewURL">
    {text:'kmsgBIHSmartViewForMSOffice', url:<sawm:json>smartViewURL</sawm:json>, desc:'kmsgBIHSmartViewForMSOfficeDesc'},
    </sawm:if>
    <sawm:if test="privileges.Publisher.developReport">
    {text:'kmsgBIPDownloadTemplateBuilderForWord', url:saw.commandToURL('xmlpObjectTasks')+'&amp;Action=downloadTool&amp;_xaction=downloadtb', desc:'kmsgBIPDownloadTemplateBuilderForWordDesc'},
    {text:'kmsgBIPDownloadAnalyzerForExcel', url:saw.commandToURL('xmlpObjectTasks')+'&amp;Action=downloadTool&amp;_xaction=downloadae', desc:'kmsgBIPDownloadAnalyzerForExcelDesc'},
    </sawm:if>
    null
    var tSESUrl = "";
    <sawm:if test="sesSearchURL">
    tSESUrl = <sawm:json>sesSearchURL</sawm:json>;
    </sawm:if>
    saw.home.start(tDownloadLinks,tSESUrl);
    window.onload = NQOnLoadEvent;
    //list of object types that current user can create
    saw.catalogaction.setCreateList(<sawm:json>system.catalogObjectTypeManager.creatableTypes</sawm:json>);
    <sawm:if name="session.syndicate" op="equals" value="workspace">
    var tSyndicate = obips.workspace.HomePageSyndicate.createSyndicateObject();
    </sawm:if>
    </script>
    <sawm:resourceBundle path="catalog/privileges.xml"/>
    <sawm:resourceBundle path="catalog/saw.catalog.xml" inline="false"/>
    <sawm:resourceBundle path="home/bieehome.xml" inline="false"/>
    </head>
    <body>
    <div id="idBIEEHomeBodyDiv">
    <!--Round corner -->
    <table cellspacing="0" cellpadding="0" class="BIHRoundCorner">
    <tr>
    <td class="RoundCornerCell">&amp;nbsp;</td>
    <td class="TopCell">&amp;nbsp;</td>
    </tr>
    </table>
    <div class="BIEEHome">
    <table id="idBIEEHomeTable" class="BIEEHomeTable" cellspacing="0" cellpadding="0">
    <tr>
    <!-- left pane -->
    <td class="BIEEHomeLeft">
    <div class="BIHPaneContainer">
    <table width="100%" cellspacing="0" cellpadding="0">
    <!-- Create... -->
    <tr id="idCreate"><td class="BIHActionSectionHeader">
    <sawm:messageRef name="kmsgCreateSectionHeader"/>
    </td>
    </tr>
    <tr id="idBIHCreateActionList">
    <td class="BIHActionList">
    <div id="idHomeCreateLinks"></div>
    </td>
    </tr>
    <!-- Browse Catalog... -->
    <tr id="idBrowseCatalog">
    <td class="BIHActionSectionHeader">
    <sawm:messageRef name="kmsgBrowseCatalogSectionHeader"/>
    </td>
    </tr>
    <tr id="idBIHBrowseActionlist">
    <td class="BIHActionList">
    <div id="idHomeBrowseCatalogSection">
    <a id="idCatalogFolders" class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.onAllContentClick(event); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHCatalogFolders"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/favorite_folder_s.png"/>" />
    <span><sawm:messageRef name="kmsgBIHAllContent"/></span>
    <img border="0" alt="Drop down" title="" src="fmap:uicomponents/obips.Menubar/dropdown_md.gif"/>
    </a>
    <a id="idMyRequests" class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.openURL(saw.commandToURL('catalog') + '&amp;Action=search&amp;name=*&amp;type=queryitem1&amp;path=' + saw.encodeURIComponent(saw.getSessionInfos().user.homeDir),event); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgCatalogFavoriteFolderMyRequest"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/favorite_search_s.png"/>" />
    <span><sawm:messageRef name="kmsgCatalogFavoriteFolderMyRequest"/></span>
    </a>
    <a id="idMyReports" class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.openURL(saw.commandToURL('catalog') + '&amp;Action=search&amp;name=*&amp;type=bipReport&amp;path=' + saw.encodeURIComponent(saw.getSessionInfos().user.homeDir),event); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHMyReports"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/favorite_search_s.png"/>" />
    <span><sawm:messageRef name="kmsgBIHMyReports"/></span>
    </a>
    <a id="idMyScorecards" class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.openURL(saw.commandToURL('catalog') + '&amp;Action=search&amp;name=*&amp;type=bsc&amp;path=' + saw.encodeURIComponent(saw.getSessionInfos().user.homeDir),event); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHMyScorecards"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/favorite_search_s.png"/>" />
    <span><sawm:messageRef name="kmsgBIHMyScorecards"/></span>
    </a>
    <sawm:if test="system.config['Alerts/Enabled'] &amp;&amp; privileges.Access['Global Delivers']">
    <a id="idMyIBotSubscriptions" class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.openURL(saw.commandToURL('catalog') + '&amp;Action=favorite&amp;targetid=mySubscription',event); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHMyIBotSubscriptions"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/favorite_search_s.png"/>" />
    <span><sawm:messageRef name="kmsgBIHMyIBotSubscriptions"/></span>
    </a>
    <a id="idMyIBots" class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.openURL(saw.commandToURL('catalog') + '&amp;Action=search&amp;name=*&amp;type=coibot1&amp;path=' + saw.encodeURIComponent(saw.getSessionInfos().user.homeDir),event); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHMyIBots"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/favorite_search_s.png"/>" />
    <span><sawm:messageRef name="kmsgBIHMyIBots"/></span>
    </a>
    </sawm:if>
    </div>
    <div class="BIHManageJobsLink">
    <sawm:if name="privileges['Admin: General'].ManageJobs">
    <a class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.openURL(saw.commandToURL('ViewJobs'), event); return false;">
    <span><sawm:messageRef name="kmsgBIHManageMarketingJobs"/></span>
    </a>
    </sawm:if>
    <sawm:if test="privileges.Publisher.developReport || privileges.Publisher.administerServer">
    <a class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.onBIPReportSchedules(event); return false;">
    <span><sawm:messageRef name="kmsgBIHManageReportsSchedules"/></span>
    </a>
    <a class="BIHFavoriteFolderLink" href="javascript:void(null)" onclick="saw.home.onBIPJobHistory(event); return false;">
    <span><sawm:messageRef name="kmsgBIHManageReportsJobHistory"/></span>
    </a>
    </sawm:if>
    </div>
    </td>
    </tr>
    <!-- Get Started... -->
    <tr id="idGetStarted">
    <td class="BIHActionSectionHeader">
    <sawm:messageRef name="kmsgGetStartedSectionHeader"/>
    </td>
    </tr>
    <tr id="idBIHGetStartedLinks">
    <td class="BIHActionList">
    <!--To custom the links, add a kuiHomePageGetStartedLinks custom message. -->
    <sawm:choose>
    <sawm:when name="getStartedMsg">
    <sawm:messageRef name="kuiHomePageGetStartedLinks" />
    </sawm:when>
    <sawm:otherwise>
    <a class="BIHGetStartedLink" href="javascript:void(null)" onclick="obips.launcher.launchNewWindow('http://download.oracle.com/docs/cd/E14571_01/index.htm','_blank'); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHHelpIntroduction"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/introtooraclebi_lg_qualifier.png"/>" />
    <span><sawm:messageRef name="kmsgBIHHelpIntroduction"/></span>
    </a>
    <a class="BIHGetStartedLink" href="javascript:void(null)" onclick="obips.launcher.launchNewWindow('http://download.oracle.com/docs/cd/E14571_01/index.htm','_blank'); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHHelpDoc"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/quicktour_lg_qualifier.png"/>" />
    <span><sawm:messageRef name="kmsgBIHHelpDoc"/></span>
    </a>
    <a class="BIHGetStartedLink" href="javascript:void(null)" onclick="saw.home.onDownloadDesktopTools(event)" id="idBIHDownloadToolsLink">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHDownloadBIDesktopTools"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/downloadBIdesktopapps_lg_ena.png"/>" />
    <span><sawm:messageRef name="kmsgBIHDownloadBIDesktopTools"/></span>
    <img border="0" alt="Drop down" title="" src="fmap:uicomponents/obips.Menubar/dropdown_md.gif"/>
    </a>
    <a class="BIHGetStartedLink" href="javascript:void(null)" onclick="saw.home.onHelpTOCs(event); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHHelpTOC"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/helptopics_lg_qualifier.png"/>" />
    <span><sawm:messageRef name="kmsgBIHHelpTOC"/></span>
         <img border="0" alt="HelpTOCDropdown" title="" src="fmap:uicomponents/obips.UberBar/dropdown_md.gif"/>
    </a>
    <a class="BIHGetStartedLink" href="javascript:void(null)" onclick="obips.launcher.launchNewWindow('http://www.oracle.com/technology/tech/bi/index.html','_blank'); return false;">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHOraTechNetwork"/>" title="" class="GetStartedActionIcon" src="<sawm:fileMap path="common/otn_lg_qualifier.png"/>" />
    <span><sawm:messageRef name="kmsgBIHOraTechNetwork"/></span>
    </a>
    </sawm:otherwise>
    </sawm:choose>
    </td>
    </tr>
    </table>
    </div>
    </td>
    <!-- right pane -->
    <td class="BIEEHomeRight" cellspacing="0" cellpadding="0">
    <table width="100%">
    <!-- Alerts -->
    <tr id="idHomeAlertsRow">
    <td class="BIHListSectionHeaderIconCell">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgViewsAlerts"/>" title="" src="<sawm:fileMap path="common/alert_lg_qualifier.png"/>" />
    </td>
    <td>
    <div class="BIHListSectionHeader">
    <sawm:messageRef name="kmsgViewsAlerts"/>
    </div>
    <div id="idHomeAlerts">
    </div>
    </td>
    </tr>
    <!-- Recent -->
    <tr>
    <td class="BIHListSectionHeaderIconCell">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHRecent"/>" title="" src="<sawm:fileMap path="common/recentupdate_lg_qualifier.png"/>" />
    </td>
    <td>
    <div class="BIHListSectionHeader">
    <sawm:messageRef name="kmsgBIHRecent"/>
    </div>
    <div id="idNoRecentItems">
    &lt;img border="0" align="middle" class="MsgErrorImg" alt="<sawm:messageRef name="kmsgBIHNoRecent"/>" title="" src="<sawm:fileMap path="uicomponents/common/title_info.png"/>" />
    <span class="BIHNoRecentItems"><sawm:messageRef name="kmsgBIHNoRecent"/></span>
    </div>
    <div id="idRecentDashboards" class="BIHRecentSubHeader">
    <sawm:messageRef name="kmsgBIHRecentDB"/>
    </div>
    <div id="idHomeDashboards" class="BIHRecentDBDiv"/>
    <div id="idRecentOthers" class="BIHRecentSubHeader">
    <sawm:messageRef name="kmsgBIHRecentOthers"/>
    </div>
    <div id="idHomeMRU"/>
    </td>
    </tr>
    <!-- Favorites -->
    <tr>
    <td class="BIHListSectionHeaderIconCell">
    &lt;img border="0" alt="<sawm:messageRef name="kmsgBIHFavorites"/>" title="" src="<sawm:fileMap path="catalog/mostpopular_lg_qualifier.png"/>" />
    </td>
    <td>
    <div class="BIHListSectionHeader">
    <sawm:messageRef name="kmsgBIHFavorites"/>
    </div>
    <div id="idNoFavoriteItems">
    &lt;img border="0" align="middle" class="MsgErrorImg" alt="<sawm:messageRef name="kmsgBIHNoRecent"/>" title="" src="<sawm:fileMap path="uicomponents/common/title_info.png"/>" />
    <span class="BIHNoRecentItems"><sawm:messageRef name="kmsgBIHNoFavorites"/></span>
    </div>
    <div id="idHomeFavorites"/>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </div>
    </div>
    <sawm:messageRef name="kuiStaticsPreloadIFrame"/>
    </body>
    </html>
    Edited by: Siva Prasad on Jul 6, 2011 10:39 PM
    Edited by: Siva Prasad on Jul 6, 2011 11:10 PM
    Edited by: Siva Prasad on Jul 6, 2011 11:58 PM

  • How to install only catalog manager in obiee 11g client

    hi,
    i have obiee 11.1.1.5 sever on linux & client on windows.
    since obiee 11g client does not comes with catalog manager.
    how to install only catalog manager on windows machine.
    Just to access catalog manager, Do i need to install fresh DB & OBIEE on windows?
    thanks,

    Hi,
    Download Client tool below link and also via BI Presentation Administration home page
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/bus-intelligence-11g-165436.html
    Note: catalog manager is present in obiee11.1.1.6.0
    Thanks
    Deva
    Edited by: Devarasu on Oct 24, 2012 3:41 PM

  • No user and group in console of OBIEE 11g

    Hi,
    I'm facing a problem in OBIEE 11g, after I login the console, in security realms, there is no user and group in it, all services has been started, and it prompt following message:
    This page is not available because the necessary security providers have not been configured, or those configuration changes are pending and not yet activated. Please activate the changes and (if necessary) restart the Admin Server to make this page available.
    thank you!

    Hi Edhiggins
    Iam also facing the same issue i tried to configure the Microsoft Active Directory.Is it necessary to go to the enterprise manage and have to configure the virtualisation =true and user.login.attr ,after completion of all the steps that are needed in the console .I am unable to see weather it was configure successfully or not while i login to the console and there iam seeing the above issue.
    pls  clarify the issue more clearly

  • How to set up Query Logging in OBIEE 11g 11.1.1.6

    Hi all,
    I couldn't find the option for setting up the query logging for testing and debugging purpose. Could anyone plz help me in this ...
    Regards,
    Arun

    Hi Arun,
    For simplicity I'll direct you to a link http://obiee11gqna.blogspot.com.au/2011/04/obiee-11g-query-log-log-level.html
    Richard

  • How to Set up Map MetaData in OBIEE 11g.

    Hi Guys,
    I have one requirement in the spatial data .which am needs to show some states with color on the USA map.
    I am working as developer in OBIEE 11g.
    Dont know about the map Metadata in OBIEE.
    So kindly, share some of your experience and show some demos or steps to implement this requirement.
    my mail id : [email protected] , Bangalore.
    if you share your mail id it will be great helpfull to interact easily.
    Thanks,
    Govardhana

    Hi,
    Can anybody help on this?
    I'm getting errror like "Map metadata has not setup"
    Please help on this...
    Thanks & regards,
    Thiru.K

  • How groups are assigned in OBIEE 11g if a user is present in more security

    Suppose we have security provider1 & provider2 having the same user. If provider 1 is in top of list and it have group 1 assigned to the user1 , then how can i get group2 assigned to user1 in provider2?

    The problem was with user filter.

  • How to perform grouping like a daisy chain

    Hi:
    I have a database table of Building Inspections (InspectionID) for each Building Permit (PermittingID).  Sometimes the inspections fail and have to be re-inspected. I do not relate each re-inspection to the original inspection.  I relate each re-inspection
    to the inspection being re-inspected.  I am using daisy chain logic. 
    For example:
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
           3                     3591                                                              
    F
           3                     3843                          
    3591                            F
           3                     4437                          
    3843                            F
           3                     4777                          
    4437                            F         
           3                     5069                        
      4777                            F       
           3                     5204                          
    5069                            F
           3                     5242                          
    5204                            F
    I have been asked to create a report of ONLY the inspections/re-inspections that have failed and continue to fail (like above example). This includes any inspections that failed and were never reinspected. 
    For example:
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
           17                     8                                                                  
    F
           17                     11                        
                                            F
           17                     16                          
                                          F
           17                    236                          
                                         F         
           17                    237                       
                                            F       
           17                    238                          
                                         F
    I must Exclude any inspections that have failed, but ultimately passed. 
    For example I would exclude ALL below:
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
         105                     38                                                              
    F
         105                     76                          
    38                                P
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
           3                     3480                                                             
    F
           3                     3669                          
    3480                           F
           3                     3942                          
    3669                           P
    Any help is greatly appreciated with a query to filter out all inspections that have eventually passed.
    Thank you.
    Carmelita

    Hi CKCOMPUTER,
    Regarding your description, are you trying to exclude the records which has the  'P' InspStatus? I am confused by the last sample with the PermittingID 3, I noticed that at the very above the records with 3 were mentioned not being excluded. If that
    is a typo, you may reference the below query to achieve your requirement.
    CREATE TABLE BuildingInspection(PermittingID INT,InspectionID INT,ReinspectionRequestNum INT,InspStatus CHAR(1));
    INSERT INTO BuildingInspection VALUES(3,3591,NULL,'F');
    INSERT INTO BuildingInspection VALUES(3,3843,3591,'F');
    INSERT INTO BuildingInspection VALUES(3,4437,3843,'F');
    INSERT INTO BuildingInspection VALUES(3,4777,4437,'F');
    INSERT INTO BuildingInspection VALUES(3,5069,4777,'F');
    INSERT INTO BuildingInspection VALUES(3,5204,5069,'F');
    INSERT INTO BuildingInspection VALUES(3,5242,5204,'F');
    INSERT INTO BuildingInspection VALUES(17, 8 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 11 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 16 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 236 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 237 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 238 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(105, 38 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(105, 76 ,38,'P');
    SELECT * FROM BuildingInspection BI WHERE NOT EXISTS(SELECT 1 FROM BuildingInspection WHERE InspStatus='P' AND PermittingID=BI.PermittingID );
    DROP TABLE BuildingInspection;
    If the records with 3 are in the same table with the 3s above, please clarify the correlation.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

Maybe you are looking for

  • Brand new ideapad u300s going into depot for 2nd time in in less than a month

    Hi, I can't seem to get any help on the phone, all I get told is send the unit in.  I ask to speak to a supervisor and you tell me they will call back in 24-48 hours; it's been a week.  I call back and ask to speak to a supervisor and you tell me it'

  • Really weird problem setting up FTP in Dreamweaver MX 2004 for Mac.

    I'm new to Dreamweaver for all that I've had it for years. Been using GoLive. Using Dreamweaver that is part of Studio MX 2004. I'm trying to set up FTP. Tell Dreamweaver to Create New Dreamweaver Site. Name the site. Don't use server technology. Pic

  • Accordion on SharePoint's td element

    I'm trying to use Accordion on my SharePoint project and I have this CEWP using JavaScript that creates a header placed under <td> element (see attached) class name "sectionHeader" the problem is its not working. Do we have some work around so I can

  • Still unable to access online billing and no respo...

    Registered for online billing at the end of February, then when all the new improvements to the website happened was unable to view the bill. Have phoned, emailed and generally been given the run around by BT over the week. Then suddenly last Thursda

  • Are schools required to use the Volume Purchase Program?

    Hello, I am involved in providing a brand new school with iPads for students. The volume purchasing program lets businesses and schools download apps in bulk. However, one must pay for every app for every app one each device (even with bulk discount)