Quantcast
Viewing all 90 articles
Browse latest View live

OBIEE 11g IE8 Max Download report / dashboard button freezes screen



OBIEE 11.1.1.6.8 IE8 Max Download report / dashboard button freezes screen

We just removed the max rows button for now untill fix is released.

Bug 14772000 : UNABLE TO SCROLL AS IE 8.0 PERFORMANCE POOR FOR MAX ROWS IN DASHBOARD
Oracle has no fix.. So this was a temp workaround. They blame IE8.

If you set the below two values to the same value - the max drop down arrow dissappears this needs to done within the instanceconfig.xml

$MW_HOME/instances/instance1/config/OracleBIPresentationServicesComponent/coreapplication_obips1


Default rows displayed  = incremental button on dashboard

Max visible rows = Display max rows per page or goto end of report -- if stable number can be high
----- if the following entries dont exist add them :  refer to the Post Link Click here

<Views>
<Pivot>
<!--This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control-->
<DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
<!--This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control-->
<DefaultRowsDisplayedInDownload>8000000</DefaultRowsDisplayedInDownload>
<!--This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control-->
<DisableAutoPreview>false</DisableAutoPreview>
<MaxVisibleColumns>1500</MaxVisibleColumns>
<DefaultRowsDisplayed>3000</DefaultRowsDisplayed><MaxVisiblePages>1500</MaxVisiblePages>
<MaxVisibleRows>3000</MaxVisibleRows><MaxVisibleSections>50</MaxVisibleSections>
<MaxCells>50000000</MaxCells>
</Pivot>
<Table>
<!--This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control-->
<DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
<!--This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control-->
<DefaultRowsDisplayedInDownload>8000000</DefaultRowsDisplayedInDownload>
<DefaultRowsDisplayed>3000</DefaultRowsDisplayed><MaxVisiblePages>1500</MaxVisiblePages>
<MaxVisibleRows>3000</MaxVisibleRows><MaxVisibleSections>50</MaxVisibleSections>
<MaxCells>50000000</MaxCells>
</Table>
<Charts>
<JavaHostReadLimitInKB>0</JavaHostReadLimitInKB>
</Charts>
</Views>


OBIEE 11g Blocking Analysis (Enforcing mandatory fields to be picked and enforcing filters to be applied on Subject Area)

Enforcing mandatory fields to be picked and enforcing filters to be applied within Subject Area


Tested on OBIEE 11.1.1.6.8 working OK
Krishna M & Shahed M


Make sure the custom analytics res folder is deployed. ( Please see our post on backgrounds or watermarks)


1.Ensure customMessages folder exists below analyticsRes folder

$MW_HOME/instances/instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/analyticsRes/customMessages


2. Looks for the file answerstemplates.xml in the path

$MW_HOME/Oracle_BI1/bifoundation/web/msgdb/messages/

3. Copy it to the following directory
$MW_HOME/instances/instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/analyticsRes/customMessages

4. Look for the pattern <WebMessage name="kuiCriteriaBlockingScript" within the answerstemplates.xml script and ammend as below


 
Before Change

<WebMessage name="kuiCriteriaBlockingScript" translate="no">
<HTML>
<script type="text/javascript">function validateAnalysisCriteria(analysisXml)
{
return true; // by default, no checking is done
}</script>
</HTML>
</WebMessage>


Replace the section with the following

After Change

<WebMessage name="kuiCriteriaBlockingScript" translate="no">
    <HTML>
        <script type="text/javascript" src="/analyticsRes/mycriteriablocking.js" />
    </HTML>
</WebMessage>


5. Create a file named mycriteriablocking.js and place it in the path
$MW_HOME/instances/instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/analyticsRes


Example content mycriteriablocking.js as (Just create in notepad or something and save as all files with extension .js)


 
// This is a function to block query combinations in subject area and apply mandatory filters etc. Shahed M
function validateAnalysisCriteria(analysisXml)
{

   // Create the helper object
   var tValidator = new CriteriaValidator(analysisXml);

   // This logic will only apply to the subject area specified
     if (tValidator.getSubjectArea() == "My Subject Area")
   {

   // If Date is picked from Calendar Folder then Active filter is mandatory from the same Folder

if (    !tValidator.dependentFilterExists("Calendar","Date","Calendar","Active"))
        return "Please apply Filter on Active";

   // If any field from Fact Folder is picked then Date from Calendar Folder is mandatory

if (    !tValidator.dependentFilterExists("My Fact","Amount","Calendar","Date"))
        return "Please apply Date Filter from Calendar Folder";

        }
                   // If everything is ok then

   return true;

}

6. Bounce all Services for OBIEE incuding Weblogic.


You can keep ammending the mycriteriablocking.js without bouncing the box once the first bounce is complete

7. in OBIEE refresh Metadata within the Administration tab

8. Test solution and keep ammending the mycriteriablocking.js as needed.
 
Other Notes (David)

Change the admin console
Deployments > analytics (11.1.1) > analytics > Resource Reload Check (in seconds)" = 0 for the js code to be refreshed on the server.
And testing on the client web browser requires force refresh (Ctrl+F5).


Oracle’s Example

// This is a blocking function. It ensures that users select what
// the designer wants them to.
function validateAnalysisCriteria(analysisXml)
{
   // Create the helper object
   var tValidator = new CriteriaValidator(analysisXml);
   // Validation Logic
   if (tValidator.getSubjectArea() != "Sample Sales")
      return "Please try Sample Sales?";
   if (!tValidator.dependentColumnExists("Markets","Region","Markets","District"))
   {
      // If validation script notifies user, then return false
      alert("Region and District are well suited, do you think?");
      return false;
   }
   if (!tValidator.dependentColumnExists("Sales   Measures","","Periods","Year"))
   return "You selected a measure so pick Year!";

   if (!tValidator.filterExists("Sales Measures","Dollars"))
   return "Maybe filter on Dollars?";

   if (!tValidator.dependentFilterExists("Markets","Market","Markets"))
   return "Since you are showing specific Markets, filter the markets.";

   var n = tValidator.filterCount("Markets","Region");
   if ((n <= 0) || (n > 3))
      return "Select 3 or fewer specific Regions";
   return true;
}





List of Validator functions

Validation Helper Function
Description
CriteriaValidator.getSubjectArea()
Returns the name of the subject area referenced by the analysis. It generally is used in a switch statement within the function before doing other validation. If the analysis is a set-based criteria, then it returns null.
CriteriaValidator.tableExists(sTable)
Returns True if the specified folder (table) has been added to the analysis by the content designer, and False if the folder was not added.
CriteriaValidator.columnExists(sTable, sColumn)
Returns True if the specified column has been added to the analysis by the content designer, and False if the column was not added.
CriteriaValidator.dependentColumnExists(sCheckTable, sCheckColumn, sDependentTable, sDependentColumn)
Checks to ensure that the dependentColumn exists if the checkColumn is present. It returns True if either the checkColumn is not present, or the checkColumn and the dependent column are present. If checkColumn and dependentColumn are null, then the folders are validated. If any column from checkTable is present, then a column from dependentTable must be present.
CriteriaValidator.filterExists(sFilterTable, sFilterColumn)
Returns True if a filter exists on the specified column, and False if no filter is present.
CriteriaValidator.dependentFilterExists(sCheckTable, sCheckColumn, sFilterTable, sFilterColumn)
Checks to ensure that the dependentFilter exists if the checkColumn is present in the projection list. It returns True if either the checkColumn is not present, or the checkColumn and the dependent filter are present.
CriteriaValidator.filterCount(sFilterTable, sFilterColumn)
Returns the number of filter values that are specified for the given logical column. If the filter value is "equals," "null," "notNull," or "in," then it returns the number of values chosen. If the column is not used in a filter, then it returns zero. If the column is prompted with no default, then it returns -1. For all other filter operators (such as "greater than," "begins with," and so on) it returns 999, because the number of values cannot be determined.


OBIEE 11.1.1.7.0 New Features

New Features for Reference



Image may be NSFW.
Clik here to view.


Following are new features in OBIEE 11.1.1.7.0 as appears in the documents.


From Certification Matrix we learn they are new sources and new versions of certified data sources:
New Certified Data Sources:
·  Apache Hive 0.9.x
·  MySQL 5.5.14+

New versions of Data Sources:
·  IBM DB2 10, IBM DB2 for z/OS 9.1 (and not only DB2 9.1, 9.5, 9.7 as usual).
·  Microsoft SQL Server 2012 (not only 2005, 2008)
·  Aster Datadabase 5.0 (and not only 4.6.2)


From the Documentation we learn about many new features:

 

New installation Features:

·  Installing Oracle Business Intelligence on IBM WebSphere - Oracle WebLogic Server is the primary platform for Oracle Fusion Middleware software components. In this release, when you perform a Software Only install of Oracle Business Intelligence you can select Oracle WebLogic Server or IBM WebSphere.

·  Configuring Oracle Essbase Suite when Installing Oracle Business Intelligence -Oracle Essbase database provides multidimensional analysis, enabling rapid development of custom analytic and enterprise performance management applications. In this release, when you install Oracle Business Intelligence you can select to configure Oracle Essbase database and its associated tools.

·  Installing BI Composer - When performing a new 11.1.1.7 BI installation, BI Composer is automatically installed and configured. (in previous 11 versions you needed to configure it.) 

·  Smart View - Starting with Release 11.1.1.7, Oracle BI Add-in for Microsoft Office is replaced by Oracle Hyperion Smart View for Office (Smart View) as a comprehensive tool for accessing and integrating Oracle Business Intelligence and Enterprise Performance Management content from Microsoft Office products. Smart View provides a commonMicrosoft Office interface designed for Oracle Business Intelligence and Oracle Enterprise Performance Management.

 New UI Features:

 

·  Recommended Visualizations Feature for Creating Views - In this release, when you create a view, you can choose a recommended view type based on the data in your analysis and, optionally, what you want to use it for (for example, to analyze trends). You can choose a suggested "Best Visualization" as well as a "Recommended Subtype". Or you can instead choose the "Recommended Visualization" option, for which you specify your intent for the new view. For example, will the view compare values, compare percentages, visualize trends, or something else? From a list of suggested view types that is ordered with the best option at the top, you can then choose your preferred view type.

·  Breadcrumbs - Breadcrumbs have been added to help users understand their current location within Oracle BI content and the path that they have used to navigate Oracle BI content.  Breadcrumbs display at the bottom of the page, and users can click a breadcrumb or the breadcrumb overflow button to navigate to a specific location on their breadcrumb trail.

·  Enhancement to Dashboards - This release provides the following enhancements to dashboards:
oThe ability to create custom print layouts for high-fidelity printing of dashboard pages (Using integration with BI Publisher).
oThe new default style is FusionFX.
oThe addition of the Freeze Column option to the Column Properties menu. This option allows you to freeze a column at an edge (top or left) of a dashboard layout.
oThe addition of the following options that allow you to control the position and size of columns and sections: 
§Size option in the Additional Formatting Options area of the "Section Properties dialog" and the "Column Properties dialog"
§Page Size option in the "Dashboard Properties dialog"
oThe ability to export an entire dashboard or a single dashboard page to Microsoft Excel 2007+ (I heard many request in that direction. See picture on the right).
oThe addition of options to replace an analysis on a dashboard and to return to a dashboard from the Analysis editor:
§The Replace analysis in <dashboard name> option was added to the Save As dialog. This option displays when the user is viewing a dashboard, clicks an embedded analysis' Analyze or Edit link, edits the analysis, and selects Save As to rename and save the analysis. The Replace analysis in <dashboard name> option allows the designer to choose to include the modified analysis on the dashboard.
§The Return to <dashboard name> option was added to the Analysis editor. This option displays in the Analysis editor when the user is viewing a dashboard and clicks an embedded analysis' Analyze or Editlink. The designer can click this option to easily move from the Analysis editor to the dashboard.


·  Enhancements to Graphs - In this release graphs have been enhanced in various ways.
oNew graph types include:
§Waterfall graph. A waterfall graph lets you visualize how a value increases or decreases sequentially and cumulatively. An initial value is summed with subsequent values (both negative and positive changes or deltas) to arrive at an end value, focusing your attention on how each measure contributes to the whole.
§Stacked graph as a new subtype to the area graph. A stacked graph is useful for comparing the proportional contributions within a category. A stacked graph displays the relative value that each part contributes to the whole.
§100% stacked graph as subtypes to the bar graph and the area graph. A 100% stacked graph, like the stacked graph subtype, lets you compare the parts to the whole. But while the stacked graph shows cumulative total in the units of the measure, the 100% stacked graph always shows units as percentages of the total, and the axis scale is always zero to 100 percent.
oZoom to data range. This option lets the system evaluate the range of values on an axis, and choose appropriate minimum and maximum values for the scale. This is useful when graphing a set of large values that are all within a small percentage of each other.
oHide sliders in graph views that listen to master-detail events. For graphs in master-detail relationships, if you want to simplify the appearance of an analysis or dashboard, you can hide the slider that is created to accommodate detail columns.

·  Enhancements to Views - This release includes enhancements to various view types, including those in the following list:
oA new view type named performance tile. This view type displays a single aggregate measure value in a manner that is both visually simple and prominent.
oAction links in trellis views. In simple trellis views, action links can now be used on inner graphs per unit, including the context of the outer edges. Action links can also be used in legends and in axis labels. In advanced trellis views, action links can be used in microcharts, where the microchart functions as a single unit (such as an aggregate number), including the context of the outer edges.

oFor map views:
§Vary the width of a line by measure to accentuate a feature.
§Link a map view as a detail in a master-detail relationship.
§Auto Correct option. A map view error can occur for various reasons. If the issue appears to be related to missing layers, maps, or styles, then it might be possible to correct the map by replacing the missing map view components with similar items that exist in the spatial metadata.
§Legend and formatting highlighting.
oNull suppression at view and analysis levels. You can set null suppression options at the view level (which overrides the analysis level) for data views including: table, pivot table, trellis (both simple and advanced), graph, gauge, and funnel views when the entire row or column contains nulls.
oAbility to include or exclude calculated items and groups at the view level for columns and column headers. Specifically, two new options have been added:Include Custom Member and Exclude Custom Member. These interactions are available for tables, pivot tables, and trellises.
oFor tables, pivot tables, and advanced trellises, the ability to:
§Specify the method to be used to browse data — either scrolling or paging controls. For more information, see "Table Properties dialog: Style tab","Pivot Table Properties dialog" and "Trellis Properties dialog: General tab".
§Resize rows and columns.
oRow count. If your table or pivot table view contains a grand total or subtotal on the row edge, the display totals, that is the grand total and subtotals, are now included in the Rows per Page count for content paging. In prior releases, if you had the Rows per Page count set to 10 for example, the table or pivot table would display more than 10 records if display totals were shown in the view results.
oFor right-click interactions, the ability to specify whether the Hide Columnsinteraction is available at runtime.

·  Enhancements to Prompts - This release includes enhancements to prompts, including those in the following list:

oEnhancement to the SQL Results prompt option. If you are working with double columns, you can now write the SQL statement so that filtering is done on code values rather than display values.

oEnhancement to the prompt constraint option. The prompts designer can now limit a column prompt value list by more than one column.

oEnhancements to the parameters for prompted links.

·  New Menu Options for Exporting Views and Results - Excel 2007+ and Powerpoint 2007+ options for exporting views and results.

·  Total Member Placement for Hierarchical Columns - This release includes an enhancement that allows placement of total members on a hierarchy.

·  Browse Catalog Search Results by Object Attributes - This release provides the capability to use full-text search to find catalog objects and then filter the search results by attributes. This search is available when the administrator integrates Oracle BI Enterprise Edition with Oracle Endeca Server. After the full-text search results are returned, the Catalog area displays a list of matching  items, and the Search pane displays the search results grouped by attribute (that is, Type, Name, Path, and Created By).

·  Navigate from the Total or Grand Total in a Table or Pivot Table - If an analysis contains a total or grand total and the associated attribute or hierarchical column contains an action link or a conditional action link, the action link (or conditional action link) is applied to both the column and the total or grand total.

·  New BI Desktop Tools Available for Download - This release adds the following tools to the list of BI desktop tools that are available for download:
oOracle Hyperion Smart View for Office
oOracle Hyperion Financial Reporting Studio (if Essbase is installed)
oOracle Essbase Studio Console (if Essbase is installed)
oOracle Essbase Administrative Services Console (if Essbase is installed)

·  Enhancement to Favorites - This release provides the capability to organize your favorites from the Category Tree area and the Selected Category area in the Manage Favorites dialog. In previous releases, you could organize favorites from the Category Tree area, only.

·  Integration of Oracle BI EE with Oracle Enterprise Performance Management System -With this release, Oracle BI EE is integrated with Enterprise Performance Management Workspace.


New Features for Oracle BI Mobile:

This section describes new features for Oracle BI EE 11Release 1 (11.1.1.7). With this release, there is a brand-new application to install from the Apple App Store.
This release provides end-user enhancements in the following areas:
·  Maximize views with double-tap gesture. With this new feature, you can access on your iPad more data—even within dense dashboards—without the restrictions of the smaller form factor. You expand an individual view by double-tapping on it. The individual view then displays within the full screen of the iPad. This maximizing of views can be done on views accessed within a dashboard, and also when viewing an analysis independent of a dashboard.
·  New view and graph types (described above): Performance tiles, Waterfall graphs, 100% stacked graph as subtypes to the bar graph and the area graph, Stacked graph as a new subtype to the area graph,Fixed headers.
·  Changing between landscape and portrait orientation while viewing Oracle BI content.See "Switching Screen Orientation Between Landscape and Portrait."
·  Breadcrumbs. You can see the navigation path you have taken while moving through the catalog as a trail of breadcrumbs (near the top of the screen by the Back arrow). In this way, you can see your current location and how you got there, then decide whether to use the Back arrow to navigate in reverse, or to use the Home icon to quickly return to the Home screen. 
·   Security toolkit. The Oracle Business Intelligence Mobile Security Toolkit provides the ability to generate a signed version of the Oracle BI Mobile HD application. The toolkit includes the instructions and necessary content to build this application making use of Apple's Xcode and the IOS SDKs. The Oracle BI Mobile Security Toolkit will be updated on a regular basis in order to synchronize with the Oracle BI Mobile HD application available on the Apple App store. 
·   Viewing of Oracle BI Publisher reports in dashboards. (Bug in previous version.)



New metadata repository features:

·  Changing the Repository Password From the Command Line -You can now change the repository password from the command line using the obieerpdpwdchg utility.
·  New Options to Enforce Consistent Versions in Multiuser Development Environments -You can now add options to the multiuser development option file to enforce Administration Tool, MUD protocol, and RPD version consistency among MUD developers. 
·  New Utilities Available to Generate and Compare Logical Column Type Information -You can use the Administration Tool utilities Generate Logical Column Type Document and Compare Logical Column Types to generate a list of logical column types, and then compare it with logical column types in a subsequent version of the repository. You can also use the command-line utility biservergentypexml to generate the list of logical column types.
·  Additional Database Support for Cardinality Estimates in Oracle BI Summary Advisor -The Prefer Optimizer Estimates feature, which improves performance by using cardinality estimates during the Summary Advisor process, is now available for Microsoft SQL Server and IBM DB2.
·  Oracle BI Summary Advisor Measure Subset Recommendations - Oracle BI Summary Advisor now recommends only aggregates that contain specific measures that are both present in the analyzed query workload, and that can optimize the query workload if aggregates are created.
·  Model Check Manager Enhancements - Model Check Manager now runs parallel queries against the database for better performance. In addition, you can now check models from the command line using the validaterpd utility with the -L option.
·  Access to Apache Hadoop Data Sources - Oracle BI EE now supports Apache Hadoop as a data source.
·  Support for Multi-Source Session Variables - Oracle BI EE now supports session variables that can be populated from multiple data sources and retain values from all source systems.
·  NUMERIC Data Type Support for Oracle Database and TimesTen - You can now change a configuration setting to enable NUMERIC data type support for Oracle Database and TimesTen.
·  Ability to Map Flex Object Changes Using the biserverextender Utility - You can now use the biserverextender utility to import flex object changes from ADF data sources and map them to the Business Model and Mapping layer and Presentation layer.
·  Support for Servlet Communication Between the Oracle BI Server and Oracle OLAP -The Oracle BI Server now uses a servlet for communication with Oracle OLAP data sources, rather than relying on the JavaHost service.


New Privileges - The following new privileges were added to the Presentation Services Administration page:
·  Access to Export
·  User Population - Can List Application Roles
·  Access to Permissions Dialog
·  Add to snapshot briefing book
·  Download Entire Dashboard To Excel
·  Download Single Dashboard Page To Excel
·  Add/Edit Performance TileView


New system administration features:


·  Support for Oracle Endeca Server - You can configure Oracle Endeca Server as a search engine for full-text searching.
·  Support for Multitenancy - You can configure Oracle BI EE so that it supports the use of multiple tenants.
·  Integration of Oracle BI EE with Essbase - Essbase functionality is closely integrated with Oracle BI EE.
·  New Configuration Required for Performance Tiles - To specify the scaling factor that accompanies a number in a performance tile view, you must manually edit the localedefinitions file, as described in Section 15.2.1.5, "Specifying the Scaling of Numbers in Performance Tiles."
·  New Configuration Element for Dashboards - A new configuration setting is available to enable the ability to export dashboard pages to Oracle BI Publisher.
·  New Configuration Element and New Default Values for Interactions in Views - A new configuration setting, InteractionPropertyHideColumns, is available to specify the default setting for the Hide Columns option in the Analysis Properties dialog: Interactions tab. In addition, only InteractionPropertyDrill,InteractionPropertyInclExclColumns, InteractionPropertyMoveColumns, and InteractionPropertySortColumns are set to true by default.



Calling the Oracle Business Intelligence Metadata Web Service Asynchronously
The Oracle Business Intelligence Metadata Web Service provides asynchronous and synchronous calls to Oracle BI Server stored procedures. You use these procedures to obtain information about the metadata and to modify the metadata. 





New features for report designers in Oracle BI Publisher:

·  Connect Directly to Oracle BIEE Subject Areas to Create Reports -
·  You can now create BI Publisher reports that use a direct connection to an Oracle BI server subject area without having to build an additional data model in BI Publisher!!!
·  Excel Template Builder Enhancements - The Excel Template Builder now supports automatic insertion of fields and repeating groups removing the requirement to manually assign defined names to cells. You can also connect directly to the BI Publisher server to download sample data, create new reports in the catalog, and upload templates from your Excel session.
·  Layout Editor Enhancements -Enhancements added to the layout editor are:
oTime series axis formatting
oHide axis option
oIndependent axis formatting
·  Enhanced Create Report Guide -The Create Report guide is enhanced to assist report designers with the process of creating a report from selecting the data model to configuring the report layout.
·  PDF to PCL Conversion for Embedding PCL Commands in RTF Templates
·  BI Publisher now provides a PDF to PCL converter. Using this utility, you can embed PCL commands in an RTF template and, after generating PDF output, the delivery manager converts the PDF to PCL before sending it to the printer to enable support for PCL printers. This feature is provided to support check printing.
·  Support for PDF 1.7 Specification
·  In versions of BI Publisher earlier than 11.1.1.7, the PDF utilities required that all PDF input documents be PDF version 1.4. Starting with this release users can pass PDF documents of later versions to the BI Publisher PDF utilities. The instructions in Chapter 7, "Creating PDF Templates" have been revised, removing this requirement.




New features for administrators in Oracle BI Publisher:

·  Integration with Oracle Endeca - BI Publisher now supports integration with Oracle Endeca as a data source for reports.
·   PDF to PCL Converter - BI Publisher now provides a PDF to PCL converter to enable the printing of PDF output to a PCL printer. This enables the embedding of PCL commands in RTF templates that are executed by the printer when the document is printed. For example, the ability to switch to a specific font cartridge.
·  Support for Private Data Sources - Data model developers can now create and manage private JDBC and OLAP data source connections for use in SQL or MDX data sets without having to depend on Administrators. However, Administrator users can still view, modify, and delete private data source connections, as well as extend access to other users.



New features for data model developers in Oracle BI Publisher:

·  MDX Query Builder - You can now use the MDX Query Builder to build a MDX query by selecting OLAP cube dimension members for Column, Row, Page, & slicer (for Point of View) axes. This feature enables you to build member selections in the MDX query by using specific members, relations such as children and descendants, and layers such as levels and generations.
·  Support for Local XML File Data Source - You can now use a locally stored XML or shared XML file as data source for data sets. This file can then be refreshed on demand from the data model definition.
·  Support for CSV File as a Data Source -You can now use a locally stored CSV or shared CSV file as data source for data sets. This file can then be refreshed on demand from the data model definition.
·  Support for Endeca as a Data Source -You can now use Endeca as a data source.
·  Support for Private Data Sources - You can now use private JDBC or ODBC data source connections to create a data set with a BI Publisher data model.
·  Enhancements for Sample Data Usability - You can now view and save data model results on the new View tab without browser dependencies. These improvements are intended to make working with sample data in BI Publisher easier and more consistent.


·         Enhancements to Event-Driven Schedules - Now when you define an event-driven schedule, you can also set a retry interval to have BI Publisher automatically re-execute the trigger to test for the condition to run the report. Two new fields have been added to support this feature: Retry Limit and Pause Time. Using these fields you can define the number of times for BI Publisher tocheck the condition and the time interval to wait between attempts.

·         New Parameter Type: Flexfields (for Oracle E-Business Suite Users) - For Oracle E-Business Suite users, support for the flexfield parameter type has been added in this release. BI Publisher's report viewer can now integrate with flexfield definitions in Oracle E-Business Suite to enable you to select flexfield segment value ranges to pass to your report.

Analysis Blocking ( Complex Scenarios)

Analysis Blocking ( Complex Scenarios)

OBIEE 11.1.1.6.8
Shahed Munir & Krishna M

As Oracle example does not work on OBIEE 11.1.1.6.8 , we had to figure out a work around to achieve more complex scenarios. Such as one Presentation folder(Multiple fields) and enforce a filter from dimension folder.  This is code that is inserted into the mycriteriablocking.js file.

! = Does Not exist
& = AND
|| = OR

Oracle Example does not work !! , Well would not work for us. 

   if (!tValidator.dependentColumnExists("Sales   Measures","","Periods","Year"))
   return "You selected a measure so pick Year!";


Working DeliverBI Examples

Blocking Anaylsis based on any column within a Presentation Folder and enforcing a mandatory filter from another Folder


if  (tValidator.tableExists("Fact Table") )
  {
   if (!tValidator.filterExists("DimensionTable","DimensionColumn"))
    return "Please apply DimensionColumn Filter from Dimension table folder when choosing data from Fact Table";
  }

Blocking Anaylsis based on usage of any two Folders and enforcing a mandatory filter from a 3rd folder.

if  (tValidator.tableExists("DimensionTable") & tValidator.tableExists("Fact Table") )
  {
   if (!tValidator.filterExists("DimensionTable2","DimensionColumn2"))
    return "Please apply DimensionColumn2 Filter from DimensionTable2";
  }



Example using a java or condition which is ||

Check 2 tables independantly to see if they exist and if they do apply filters from 2 different dimension tables and 3 columns.

Use this method so if multiple folders/tables uses the same criteria you dont have to keep repeating the logic . Just use OR on the table ||

if  (tValidator.tableExists("Fact Folder") || tValidator.tableExists("Another Fact Folder") )
  {
   if (!tValidator.filterExists("Calendar","Active Flag") || !tValidator.filterExists("Calendar","Date") || !tValidator.filterExists("Regions Dimension","Region") )
   return "Please apply Date and Active Flag filters from Calendar folder along with Region filter from Region Dimension folder";
  }


Example to check 2 columns from 2 different fact folders and apply a filter from a dimension folder  column and restrict the dimension column filter to 1 value

if  (tValidator.columnExists("Fact Table 1","Fact Region Amount") || tValidator.columnExists("Fact Table 2","Fact City Amount"))
  {
  var n = tValidator.filterCount("Region Folder","Region");
   if ((n <= 0) || (n > 1))
      return "Please filter region from region folder and restrict region filter to only 1 region";
   }

When a dimension folder is used with any of our 3 fact folders then atleast 1 column filter should exist from the the dimension folder

Will force either the city or region column filter to exist if any of the three fact tables are used independantly of each other.

if  (tValidator.tableExists("Region Dim"))
{ if (tValidator.tableExists("Fact 1") || tValidator.tableExists("Fact 2") || tValidator.tableExists("Fact 3"))
  {
   if (!tValidator.filterExists("Region Dim","Region") & !tValidator.filterExists("Region Dim","City"))
    return "Please apply filter on either Region or City field from Region Dim Folder";
  }
}

This was a complex one for us as our java is a bit rusty, Hey we got it to work so great

When Any two or more dimensional folders are used without a FACT table being introduced this will flag an error and not let the user continue without a FACT. You must state all dimension tables within the MYArray below for this to work. We have included only four dimension tables in this example.

We achieved this by adding up the dimension tables used


if  (!tValidator.tableExists("Fact Table 1") & !tValidator.tableExists("Fact Table 2") & !tValidator.tableExists("Fact Table 3") )
        {  var c = 0;
       var MYArray = ["Region Dim","Calendar Dim","Product Dim","Department Dim"];
       for (var i=0;i<MYArray.length;i++)
              { if (tValidator.tableExists(MYArray[i])) { c = c + 1;}}
       if (c > 1)  { return "Please choose at least one fact table";}
    }



There are many other combinations that can be achived with basic Java Script and examples above.

OBIEE 11.1.1.7.0 Bug Fixes

OBIEE 11.1.1.7.0 Bug Fixes


Metalink oracle list Click here


OBIEE


bug 6197675 - PROVIDE CAPABILITY TO DOWNLOAD REPORT WITH FILTERS USING GO-URL ACTION=DOWNLOAD
bug 6791298 - DOWNLOAD EXCEL HAS CELL FORMAT PROBLEMS WHEN SPECIAL CHARACTERS ARE USED
bug 7217747 - THE "DRILL" INTERACTION IS SELECTED AT RESULT COLUMNS PROPERTIES OF UNION
bug 7902570 - HAVE A TOOL TO REPORT WHAT EMAIL ADDRESS WERE ENTERED BY USERS IN EMAIL DEVICE
bug 8198137 - GENERATE METADATA DICTIONARY FAILS A COMPLETE EXPORT ON BIG RPD (OUT OFMEMORY)
bug 8802091 - BE ABLE TO RETROACTIVELY SET WEB CATALOG FOR MORE THAN 4000 USERS.
bug 8969962 - EXPORT MULTIPLE ANSWERS REPORTS/DASHBOARDS INTO EXCEL ON SEPARATE SHEETS
bug 10137467 - ENABLE "ZOOM TO DATA RANGE "
bug 10199188 - CHARTS X AXIS LABEL IS BLURRED AT 45/60 ANGLE
bug 10316972 - Y AXIS SCALE IS REPEATING
bug 10348812 - DATA IS WRITTEN BACK WITH FIRST VALUE WHEN WE RE-ENTER THE VALUE TO WRITE BACK
bug 10417235 - LAYOUT PANE IS CORRUPTED AT TABLE VIEW EDITING
bug 10647655 - COLUMN DATA FORMAT IS IGNORED ON WRITEBACK
bug 11657725 - MALFORMED URL ERROR WHEN PRINT KPI WATCHLIST TO PDF ON DASHBOARD PAGE
bug 11768139 - ROW AND COLUMN IN PIVOT TABLE ARE DISPLAYED IN DIFFERENT ROWS
bug 11780223 - DASHBOARD PROMPT PS VAR NOT PASSED TO BIP REPORT DISPLAYED AS LINK
bug 11815935 - NLS:THE SETTING FIRSTDAYOFWEEK IN LOCALEDEFINITIONS.XML DON'T AFFECT CALENDAR UI
bug 11824623 - DOUBLE PERCENT SIGN AND WRONG DATA IN PIVOT TABLE ON FRENCH LOCALE
bug 11826989 - FRAGMENTATION CONTENT DEFINED IN RPD DOES NOT WORK AS EXPECTED
bug 11858890 - MONTHNAME FN DOES NOT RESPECT USE_LONG_MONTH_NAMES = NO SETTING IN NQSCONFIG.INI
bug 11873942 - WHEN USER TRIES TO CHANGE GAUGES PER ROW GETS UNDEFINED
bug 12325889 - SAVING A NEW REPORT TITLE VIEW IS NOT AUTOMATICALLY UPDATED WITH REPORT NAME
bug 12326455 - DOWNLOAD ALL THE CONTENT OF A DASHBOARD IN ONE EXCEL SHEET
bug 12331603 - OBI 11.1.1.3: ACT AS PROXY FAILS WITH BI PUBLISHER REPORTS IN DASHBOARDS
bug 12411977 - TERADATA RANK() IS NOT ALLOWED IN THE SUBQUERY
bug 12591649 - THE SAME COLOR IS USED FOR TWO MEASURES ON STACKED BAR
bug 12612904 - TOTAL PICKS VALUE IN FIRST ROW AND GIVES NOT A NUMBER WHEN AVERAGING NULL
bug 12633881 - WEBCATALOG GETS SEVERELY CORRUPTED AFTER MIGRATION/UPGRADE FROM 10G TO 11.1.1.5
bug 12652014 - ABILITY TO EXPORT REPORTS TO EXCEL 2007 (XLSX FILE FORMAT)
bug 12677704 - ERROR IN UPGRADED PIVOT: DXE EXPRESSION INTERPRETER ERROR
bug 12685154 - VERTICAL AXIS LABELS ARE SHOWING 0'S AND 1'S ON 100% STACKED
bug 12687758 - MAPS WITH 500+ TILES TAKE TIME TO LOAD IN FIREFOX AND CHROME (IE FINE)
bug 12701483 - BAD PERFORMANCE IN A PIVOT TABLE WITH ESSBASE "USE UNQUALIFIED MEMBER" OFF
bug 12703129 - ADD BACK FEATURE TO NAVIGATE TO A PREVIOUS REPORT OR VIEW IN ORACLE BI MOBILE
bug 12703163 - EASIER LOGOUT PROCEDURE FOR USERS OF THE ORACLE BI MOBILE APP
bug 12726753 - JAPANESE CHARACTERS ARE INCORRECT IN PDF
bug 12787619 - EXPORTED EXCEL:THE 11TH COLUMN HEADING'S FONTS INCORRECT AND LINES ARE MISSING
bug 12811359 - VIEW SELECTOR ONLY SHOWS 25 RECORDS FOR PRINT PDF
bug 12825632 - ABILITY TO EXPORT THE DASHBOARD
bug 12848174 - DIMENSION BAR ISSUES ON KPI WATCHLIST WHEN MODIFY KPI DEFITION
bug 12860532 - PIVOT VIEW REPORT DATA EXPORTED TO EXCEL SHOWS MERGED COLUMN BEF
bug 12870901 - PRINT PDF DOES NOT CONSIDER ROWS PER PAGE FOR A TABLE VIEW
bug 12887464 - MISSING FORMAT OF EXPORTED EXCEL WHEN ENABLE ALTERNATING ROW "GREEN BAR" STYLING
bug 12905237 - MAP VIEW DOES NOT FIT FILTERED LAYERS
bug 12908486 - GAUGE TITLES FOOTER CHANGED FROM "@1 %" TO "@0 %"
bug 12910535 - "STACKED LINE-BAR COMBO CHART" SHOULD BE DRAWN SAME AS 10G
bug 12917780 - PROVIDE ABILITY TO MINIMIZE AND HIDE PROMPTS & SLIDERS FOR M/D IN CHARTS
bug 12918041 - EXPORT TO CSV WHEN USING COLUMN SELECTOR DOWNLOADS ALL DATA
bug 12918563 - FMW EM CONTROL BROWSE TO COREAPPS VERY SLOW ( BI SERVER COMP ISSUE)
bug 12939713 - MAX TIME QUERY LIMIT GOVERNOR DOES NOT CANCEL THE DATABASE QUERY
bug 12952452 - DEFAULT VALUE FOR COLUMN SELECTOR VIEW IS THE FIRST VALUE OF THE COLUMN LIST
bug 12959578 - EXPORT TO EXCEL FILES ARE TOO LARGE
bug 12962772 - UPGRADE FROM 10G TO 11.1.1.5G FAILS WITH SEVERE: ELEMENT TYPE: JEE_SERVER[
bug 12963080 - LINE BAR 3D GRAPH IS UPGRADED TO CYLINDRICAL BAR 3D GRAPHS
bug 12978196 - COLUMN SELECTOR DOES NOT PASS VALUES FROM SUMMARY REPORT TO DETAILED REPORT
bug 12981896 - MAPVIEWER HOVER TOOLTIPS SHOW WRONG VALUES
bug 12992697 - PAGE BREAK WITH COLUMN BREAK DOES NOT WORK IN PRINTABLE HTML
bug 13002210 - CANNOT ADD A DASHBOARD TO "MY FAVORITES" IN IPAD.
bug 13004399 - EXPAND INTO HIERARCHIES IS NOT WORKING
bug 13008956 - DISABLE AUTO-PREVIEWING OF RESULTS NOT WORKING
bug 13024366 - SOLARIS CRASH WHILE MODIFYING GRAPH IN ANALYTIC REPORTS
bug 13040934 - UNABLE TO DENY ACCESS TO A PRESENTATION COLUMN TO AN APPLICATION ROLE
bug 13043745 - PIVOT TABLE'S LAYOUT COLLAPSES WHEN HIDDEN ROW AND TOTALS BEFORE IS USED
bug 13054445 - REPLACING NULL VALUES WITH "0" IN A PIVOT TABLE IS NOT WORKING
bug 13062842 - HORIZONTAL SCROLL BAR IS NOT DISPLAYED ON EDITING DATABASE DIRECT REQUEST
bug 13063155 - FATAL:INVALID STATE IDENTIFIER -1006880667 ERROR
bug 13065019 - USAGE TRACKING ISSUE AFTER APPLYING PATCH 12925206- QUERY NOT INSERTED IN LOG
bug 13066183 - NO INTERACTION ON MAPTOOL TIP
bug 13071711 - CIRCULAR JOIN ERROR WHEN RUNNING ANALYSIS USING UPGRADED REPOSITORY
bug 13073003 - ODBC.INI FILE UPDATED BY BI SERVICES RESTART
bug 13083074 - PROMPTS CREATING UNSPECIFIED ERROR WHEN SELECTING MULTIPLE CONSTRAINED CRITERIA
bug 13087113 - UPGRADED 10G DASHBOARD FAILS WITH ASSERTION FAILURE: (*IBASEFORMULA).GETNAME() =
bug 13087952 - CACHE SEEDING IS INCONSISTENT AND SOMETIMES GET PURGED
bug 13089754 - BORDER LINE IS MISSING IN ANSWERS IN IE8 BROWSER
bug 13098323 - AN ARITHMETIC OPERATION IS BEING CARRIED OUT ON A NON-NUMERIC TYPE ERROR
bug 13106514 - BI SERVER 11G ODBC CONNECTION IN EXCEL "MICROSOFT QUERY" NOT WORKING
bug 13107723 - 'NO RESULTS' IS DISPLAYED WHEN CHOOSING THE HIERARCHY AND MEAS WITH METAREADSEC
bug 13110980 - THE SECTION PROPERTIES OF PIVOT TABLE ARE NOT EFFECTIVE OR NOT CORRECT
bug 13111799 - GRAPHING ENGINE IS NOT RESPONDING
bug 13115271 - THE FILTER OF UNION REQUEST DOES NOT APPLY CORRECTLY WHEN BI SERVER CACHE HIT
bug 13241617 - AFTER APPLY PATCH:1156057, INTERNAL ERROR OCCURRED.
bug 13249783 - AFTER APPLYING PATCH 129725592, OBIEE 11G THROWS BAD XML INSTANCE
bug 13250108 - ADMIN TOOL CONSISTENCY CHECK WARNING WHEN USING NEGATIVE NUMBERS
bug 13253545 - ADDING A NEW GROUP SHOWS EMPTY COLUMN
bug 13255221 - SPECIFIC COLUMN VALUES WITH ONLY CUSTOMGROUPS SHOULD NOT SHOW COLUMN VALUES
bug 13256635 - VIEWUICONTAINER ERRORS
bug 13256990 - GETTING "NODE WADS NOT FOUND" ERROR
bug 13258962 - BI SERVER CRASHING WITH ORA-24550 ERROR THEN RESTARTING
bug 13327051 - BI SERVER CRASHING FREQUENTLY WITH USAGE TRACKING ERRORS
bug 13331075 - UNABLE TO DRAG MULTIPLE CATALOG ITEMS TO A DASHBOARD
bug 13331703 - RENAMING THE CATALOG FOLDER RUNS THE AGENT/IBOT AGAIN AUTOMATICALLY
bug 13337142 - WHEN DOING A CONSISTENCY CHECK, RPD THROWS ERROR "OUT OF MEMORY"
bug 13345706 - ADMINTOOL CONSISTENCY CHECK ERROR DISPLAYED INTERMITTENTLY FOR DIM -ASSESSMENT
bug 13350175 - ADDING FILTER TO DIFFERENT LEVELS OF A HIERARCHY GETS IGNORED IN MDX
bug 13359653 - ANALYSIS QUERY IS NOT CANCELED PROPERLY
bug 13362302 - CHANGES MADE TO ONLINE BI SERVER USING BISERVERXMLCLI IS NOT UPDATED RPD FILE
bug 13370386 - "THE CURRENT XML IS INVALID WITH THE FOLLOWING ERRORS: BAD XML INSTANCE!" OCCURS
bug 13372432 - FONT OPTIONS DO NOT WORK CORRECTLY FOR GAUGE VIEWS
bug 13383976 - PERFORMANCE REGRESSION IN CLIENT DATA SCROLLING IN BIPS
bug 13386650 - DOWNLOADING INTO EXCEL WITH CONDITIONAL FORMAT BREAKS DATA FORMAT
bug 13386728 - EVALUATE FORMULA FAILS IF PARAMETERS HAS % OR /
bug 13393602 - RSUM NOT CALCULATING CORRECTLY WHEN THERE ARE EXCLUDED COLUMNS
bug 13398245 - PROMPT VALUE IS NOT PASSED ON NAVIGATION IF THE PROMPT SECTION IS COLLAPSED
bug 13400140 - MULTI-STEP PROMT MISSING THE DASHBOARD PROMPT WHICH "LIMIT VALUES BY" IS SET
bug 13401386 - AUTO PREVIEW ARE NOT PREVENTED EXCEPT PIVOT VIEW
bug 13401775 - RESET BUTTON DOES NOT CLEAR MESSAGE ABOUT WRONG DATE FORMAT
bug 13403713 - ADMINTOOL CRASHES DURING MUD CHECKOUT
bug 13403816 - AFTER APPLIED MLR 13110245 STILL HAVING THE HIERARCHICAL PROMPT ISSUE
bug 13404035 - SETTING UP DATABASE CONNECTION TO SQL SERVER - FAILED
bug 13405110 - OPENING REPORT CRASHES BI PRESENTATION SERVICES
bug 13411365 - EVERYONE AND AUTHENTICATED USER GROUPS ARE NOT GETTING UPGRADED TO 11G
bug 13414690 - FORMATTING ON GRAPH IS LOST IN PDF OUTPUT OF PRINT/EXPORT TO PDF
bug 13414934 - NEW PRIVILEGE TO SECURE"EXPORT" REPORT LINKS BASED ON APPLICATION ROLES IN OBIEE
bug 13415919 - [NQSERROR: 26002] WHEN DRILL DOWN QUERY GENERATES QUERY WITH LONG IN-LIST
bug 13418590 - EXPORT TO EXCEL NOT WORKING PROPERLY (LINUX 64)
bug 13420388 - MAXIMUMLOGAGEDAY SETTING NOT WORKING, OLD FILES ARE NOT BEING DELETED
bug 13428056 - USER IS NOT GETTING PROMPT VALUES BACK WHEN RESET > CLEAR ALL
bug 13434349 - "LIMIT ROWS BASED ON SECTION VALUES" PROPERTY IS NOT EFFECTIVE FOR GRAPH PIVOT
bug 13440792 - EXPORT TO EXCEL WITH REGIONAL SETTINGS OTHER THAN ENU
bug 13442252 - NULL VALUE OF LOGLEVEL FROM INIT BLOCK WILL CAUSE SERVER CRASH
bug 13442285 - EXPORT TO EXCEL WITH REGIONAL SETTINGS TO ENU AND BI LOCALE ITALIAN
bug 13447368 - COLUMN FORMAT PROPERTY IS NOT SAVED
bug 13448188 - DOUBLE COLUMN FILTERS DOES NOT RENDER CORRECTLY FOR LARGE VOLUME DATA
bug 13449738 - MISSING ALT TEXT IN TABLE AND PIVOT TABLE
bug 13449747 - PIVOT TABLE CONTEXT MENU NOT WORKING WITH KEYBOARD
bug 13458667 - HIDDEN OPTION NOT AVAILABLE FOR DATE COLUMNS IN TABLE LAYOUT
bug 13468775 - AFTER AD SETTING, BI_SERVER1 NOT START
bug 13470220 - NQSERRORS AFTER APPLYING PATCH 12587722 FOR OBIEE 11.1.1.5
bug 13471332 - NEW MEMBER STEP WINDOW DOESN'T FIT ALL REQUIRED MEMBER SELECTION
bug 13475901 - OBIEE CATALOG IS NOT VIEWABLE USING PUBLISHER URL
bug 13476700 - SERVICES FAIL TO COME UP ON RESTART DUE TO INIT BLOCK CRASH
bug 13477147 - CREATE PROMPTED LINK CREATES A LINK WITH THE NAME OF THE VARIABLE
bug 13479613 - CANNOT MODIFY REPORT/DASHBOARD WHEN USER HAS READ-WRITE BUT NO DELETE PERMISSION
bug 13482511 - ISSUE WITH TERADATA UNION ALL BEHAVIOR AND OBIEE HIERARCHIES
bug 13498324 - PERFORMANCE DEGRADATION FOR PARENT-CHILD HIERARCHY QUERY
bug 13501903 - EXCEL DOWNLOAD ERRORS WITH DOUBLE QUOTES AND EMBEDDED COMMAS
bug 13502763 - DRILL DOWN ON REGULAR COLUMN WITH CUSTOM DATE FORMAT
bug 13511145 - ERROR WHEN MEMBER_VALUE IN MSAS CUBE HAS DATES STORED IN MM/DD/YYYY
bug 13511501 - REPORT WITH MULTI-VALUE SESSION VARIABLE IN FILTER RETURNS WRONG RESULTS
bug 13516292 - REPOSITORY INIT BLOCKS LOSE CONNECTION TO DATABASE AND NEVER REGAIN IT
bug 13517767 - POSITIONAL CALC CAN CAUSE XMLWRITER EMPTY DOCUMENT ERROR
bug 13517856 - IPAD PAGE BEHAVIOR IS NOT THE SAME AS SEEN IN THE BROWSER
bug 13522060 - RPD SESSION VARIABLE UNABLE TO IDENTIFY THE DYNAMIC SCHEMA NAMES FOR OLAP
bug 13522214 - VALUE-BASED HIER PROMPT SEARCH RESULTS IN ODBC ERROR
bug 13526747 - PIVOT CHART LEGEND DUPLICATES MEASURE LABELS
bug 13527811 - REPEATED VALUES ON Y SCALE FOR AXIS GRAPHS WHEN ALL DATA POINTS ARE '0'
bug 13529303 - OBIEE 11G PROMPT DOES NOT INCLUDE "ADD ANOTHER VALUE"
bug 13529441 - MULTI DASHBOARD PROMPT DOESN'T WORK WITH BI PUBLISHER INTEGRATED
bug 13531449 - COMMON HEADER SHOWS UP WHEN CLICKING ON DASHBOARD PAGE TAB IN PORTAL PAGES
bug 13533404 - SECTIONS HEADERS ARE CAUSING DASHBOARD SPACING ISSUES
bug 13535937 - NEGATIVE VALUE IN CACHE MANAGER
bug 13539267 - HIERARCHY IN PIVOT TABLE AND BAR CHART CAUSES ERROR
bug 13541432 - PIVOT SORT BUTTON DISAPPEARS WHEN SELECT "AFTER" FROM THE TOTAL OF "COLUMNS"
bug 13542145 - UNION ERROR WHEN FILTERING A COLUMN THAT HAS A DESCRIPTOR ID COLUMN
bug 13542805 - INVALID CACHE ENTRY BEING GENERATED DUE TO SESSION VARS IN LTS FILTERS
bug 13546009 - SELECT PIVOT TABLE IN VIEW SELECTOR CAUSES COLUMN TO BE EXCLUDED WHEN DRILLING
bug 13552972 - GRAND TOTAL IS PASSED IN A NAVIGATION FROM A PIVOT PROMPT TO A DASHBOARD PROMPT
bug 13563229 - CLICKING ON COREAPPLICATION LINK TAKES SEVERAL MINUTES TO PROCEED
bug 13563526 - REMOVE THE 'EXPORT' OPTION
bug 13564003 - SAVING AN IBOT(AGENT) GIVES ORACLE BI SCHEDULER ERROR:[NQSERROR: 76016]
bug 13567100 - CASE WHEN USED IN MEASURE IN PIVOT IS NOT WORKING AS EXPECTED
bug 13570406 - MAP VIEW DOESN'T DISPLAY THE CORRESPONDING LEVEL DATA AFTER DRILL DOWN
bug 13571561 - MASTER-DETAIL REPORT WITH COLUMN SELECTOR DOES NOT REFRESH DETAIL GRAPH
bug 13577428 - PIVOT TABLE FORMATTING ISSUE
bug 13578508 - EXADATA - BI APPLICATION DOES NOT COME BACK AUTOMATICALLY AFTER A NODE REBOOT
bug 13579221 - EDITING DIRECT SQL REQUEST CAUSES ACCESS PRIVILEGE ERROR
bug 13581549 - NAVIGATE TO BI CONTENT ACTION LINK WITH OPTION OPEN IN NEW WINDOW DOES NOT WORK
bug 13585714 - USING "FORMAT TITLE VIEW" IN ANSWERS- RESULTS - TITLE THROWS "INVALID XML" ERROR
bug 13586829 - ANSWERS REPORTS WITH NULLS DOES NOT EXPORT TO PDF/PPT CORRECTLY
bug 13590740 - REPORT PROMPT ON ANSWERS REPORT WITH UNION QUERY DOES NOT WORK
bug 13599283 - BRIEFING BOOK DOESNT SHOW SAVED CUSTOMIZATIONS VIA A LINK.
bug 13606302 - "DO NOT DISPLAY IN A POPUP" ACTION LINK INCORRECT BEHAVIOR (HIERARCHY LEVEL COL)
bug 13615153 - GETTING 'NO CHARACTER DATA IS ALLOWED BY CONTENT MODEL ' ERROR
bug 13615198 - RIGHT CLICK INCLUDE MSR NEEDS TO ADD TO MSR BIN, NOT COLUMN
bug 13616593 - AUTO PREVIEW IS NOT PREVENTED FOR GRAPH
bug 13623096 - AFTER APPLYING PATCH:13428026, SEGMENTATION FAULT OCCURS
bug 13624421 - AGENTS NOT DELIVERING TO USERS ERROR THE AGENT, AP FLASH, HAS COMPLETED WITH WAR
bug 13626491 - CONSISTENCY CHECK UPDATE FOR FACT JOINS DIRECTLY WITH A NON LEAF TABLE
bug 13627902 - MAPS ARE PRINTED IN GREY WHEN LOG IN USING ITALIAN LANGUAGE
bug 13634467 - EXCEL DOWNLOAD FORMAT CHANGED WHEN USING IMAGE ICON IN CONDITIONAL FORMAT
bug 13635238 - SASEEDQUERY FUNCTION CAUSES "NQSERROR: 26002" FOR LONG QUERIES
bug 13639557 - EXPORT TO EXCEL LOST CURRENCY FORMAT (NEGATIVE VALUES IN RED)
bug 13639701 - NO DATA RETURN FROM CACHE WITH "IS NULL" FILTER
bug 13641219 - DLEDGESLICES.CPP ERROR WHEN MOVING MEASURE LABELS TO COLUMN SECTION
bug 13641963 - BACKSPACE BUTTON AFFECTS THE MAIN WINDOW INSTEAD OF POP-UP WINDOW
bug 13645029 - MALFORMED ESSBASE MDX WITH REDUNDANT FILTER USING EXPRESSION AND QUERY FILTER
bug 13646082 - WHEN INTRODUCING A COLUMN SELECTOR, YOU CANNOT USE CONDITIONAL FORMATTING
bug 13647053 - BI SERVER PERIODIC FAILS WITH WARNING MESSAGE 52010
bug 13647309 - GRAND TOTAL FUNCTIONALITY INCORRECT AND INCONSISTENT WITH OLAP CUBES
bug 13651788 - INCLUDE A DELETE OPTION WITH THE CATALOG MANAGER RUNCAT COMMAND LINE INTERFACE
bug 13680368 - PRINTABLE PDF'S RESULT IS NOT THE SAME AS GRAPH DISPLAYED ON BROWSER
bug 13682411 - CALC ITEM NOT DISPLAYED IN A PIVOT TABLE
bug 13683564 - TABLE PROMPT NOT WORKING WHEN SOURCED FROM COLUMN BINS
bug 13683883 - DISTRIBUTING REPOSITORY --> FAIL
bug 13684825 - THE SIZE OF THE FILTER BOX EXPANDS WHEN VALUES SELECTED WITH CALENDAR ICON (IE7)
bug 13685763 - NQSERROR59001 OCCURS WHEN USING SUBSTRING, POSITION AND LENGTH AT SAME TIME
bug 13685787 - OBIEE: WEBLOGIC ADMIN SERVER STATE CHANGED TO FORCE_SHUTTING_DOWN
bug 13688051 - CONTEXT VALUES ARE NOT BEING PASSED WHEN USING GO URL IF &FORMAT=PDF IS SET
bug 13688304 - REPORTS NOT RENDERED IN HTML AFTER APPLYING PATCH 12667254
bug 13688544 - 'CASE WHEN' CHANGES TO 'CASEWHEN' IN XML AND CAUSES ERROR WHEN SET XML
bug 13689187 - PRIMARY INTERACTION SET TO NONE IGNORED WHEN DIMENSION STRUCTURE SET TO RAGGED
bug 13689319 - AFTER PS1 PATCH 13562882, XLS/PDF DEGRADATION & MEMORY NOT RELEASED
bug 13695192 - INCORRECT PAGE HEADER ON NAVIGATING BY ACTION LINK
bug 13704274 - SECURITY FILTERS ARE INCORRECTLY APPLIED TO LEVEL-BASED MEASURES
bug 13708781 - ORACLE OLAP PARENT-CHILD QUERY PERFORMANCE ISSUE - LIMIT TO BOTTOMDESCENDANTS
bug 13709093 - RENAMING A DASHBOARD FOLDER W PRESERVING REFERENCES TO OLD NAME CAUSES DUPLICATE
bug 13712709 - CHART RANGE SCALE MARKERS DOES NOT WORK WITH DECIMAL VALUES
bug 13717923 - PROBLEM PASSING NORWEGIAN LETTERS TO FILTERS THROUGH THE GO URL
bug 13721961 - NEW LOG FILE CREATED WHEN RESTARTING ON LINUX, NOT OBEYING ROTATION SETTINGS
bug 13722531 - INTERNAL SERVER ERROR WHEN ACCESSING ADVANCED TAB
bug 13723775 - RECIEVING ERROR WHEN ADDING FIELD INTO ANALYSIS AFTER ADDING CUSTOM CSS
bug 13727327 - SEARCHING USERS BY DISPLAYNAME DOES NOT WORK
bug 13735753 - WHEN RUNNING USAGE TRACKING, ORA-01704 ERROR IN NQSSERVER.LOG
bug 13737150 - UNABLE TO VIEW LOG FILE FROM ADMINISTRATION > MANAGE SESSIONS
bug 13738790 - DELIVERY CONTENT FOR AGENTS CAN'T HAVE "/" IN ITS NAME
bug 13739632 - ODBC ERROR WHEN YOU ADD KPI TO KPI WATCH LIST AND WHEN USING SHARED LOGON
bug 13740536 - WHEN TIME SLIDER IS USED, BUBBLE CHART LEGEND LABEL IS WRONG
bug 13770496 - CREATE LARGE ANALYSIS IN IE8, NAVIGATING IN IT CAUSES UPTO 100% CPU USAGE
bug 13774538 - GRAPH TITLE DISPLAYING VARIABLE CODE @{TESTCASE} ON EXPORTED TO PDF FILE.
bug 13774635 - OBIPS THROWING ASSERTION WHILE RUNNING THE CACHE SEEDING AGENT
bug 13775242 - FREQUENT COREDUMP OF NQSERVER ON AIX-64
bug 13778877 - UNABLE TO MOVE MEASURE COLUMNS AFTER FORMATING THE HEADER
bug 13780895 - ACCENTED CHARACTERS FROM OBIEE TO OBIP WITH ACTION LINK PASSED CORRECTLY
bug 13788259 - EXTRA COLUMN CREATED WHEN EXPORT PIVOT TABLE TO EXCEL
bug 13788536 - GRAPH PIVOTED RESULTS PREVENTS ADDING NEW COLUMNS TO CRITERIA
bug 13791979 - NARRATIVE VIEW DOES NOT USE CRITERIA DATA FORMAT
bug 13792237 - ADMINTOOL CRASHES WHEN DELETING MULTIPLE PHYSICAL TABLES
bug 13794350 - PIVOT TABLE CALCULATED ITEMS GRAND TOTAL IS NOT CORRECT
bug 13794653 - BIN OF A CALCULATED MEASURE CAUSES INCORRECT GRAND TOTALS
bug 13802667 - COMMA DELIMITED CSV FORMAT FOR AGENTS/IBOTS.
bug 13807619 - DATATYPE VALUE FOR NODE_ID COLUMN IN USAGE TRACKING SCHEMA TO BE UPDATED
bug 13811755 - AGGREXTERNAL EXPRESSION ERROR FOR ESSBASE SOURCE WITH EVALUATE IN QUERY
bug 13813867 - VALUE IS NOT LEFT-ALIGNED IN GRAPH VIEW
bug 13814665 - "EDIT COLUMN FORMULA" PRIVILEGE DOES NOT WORK AS EXPECTED
bug 13815409 - MULTIPLE PIE CHARTS DISPLAYED FOR PIVOT TABLE REPORT WHEN SHOULD BE ONE
bug 13815455 - FUSION APPS SCALED OUT BI SERVER NOT WORKING- AUTHENTICATION ERROR
bug 13819360 - FACILITY TO REORDER COLUMNS IN KPI WATCHLIST
bug 13819952 - SCORECARD NEEDS TO SUPPORT LOGICAL COLUMN'S "DESCRIPTOR ID COLUMN" PROPERTY
bug 13820712 - DASHBOARD/NEW/OPEN MENU LINKS DISAPPEAR BEHIND AN EMBEDDED PDF DOCUMENT
bug 13826958 - UNABLE TO COMPLETE MERGE AFTER RESOLVING RPD CONFLICTS - BUTTONS NOT ENABLED
bug 13829904 - DUPLICATE OF BUSINESS MODEL MAY EXCEED THE LIMIT OF THE LENGTH OF THE JOIN NAME
bug 13830870 - PAGE BREAK WITH COLUMN BREAK GIVES BLANK IN THE DASHBOARD PAGE
bug 13834241 - LOCALIZING CATALOG CAPTIONS COULD NOT EFFECT TO IPAD.
bug 13839209 - RESTRICTING VALUES IN DOUBLE COLUMN PROMPT DOES NOT RETURN THE DESCRIPTOR ID
bug 13843053 - UNABLE TO SET LABEL AS BLANK FOR A COLUMN PROMPT
bug 13844868 - BI PRESENTATION SERVICE FAILS TO START IN PARALLEL WITH OTHER BI COMPONENTS
bug 13848152 - MSAS 2008 METADATA IMPORT, IMPORTS ONLY NAMED SETS NAME WITHOUT VALUES
bug 13848284 - DOUBLE COLUMN (DESCRIPTOR ID) DASHBOARD PROMPT - ENABLE SQL RESULTS ON CODE COL
bug 13852572 - QRY FAILS AS ACTION LINK PARAM VALUE '>28' PASSED AS '&AMP;GT;28'
bug 13852705 - PROMPT COLUMN ORDER RESULTS IN ERRPR
bug 13852931 - INTEGRATIONS WITH MS ACCESS TO BI SERVER FAILS THROUGH ODBC
bug 13854379 - COLUMN HEADING CANNOT SHOW VARIABLE'S VALUE ON THE RIGHT CLICK MENU
bug 13860089 - ADMINTOOL CRASHES DURING CONSISTENCY CHECK
bug 13860440 - REPORT SHOWS AN ERROR WHEN A FILTER CONTAINS [ ] AGAINST ESSBASE
bug 13868067 - DATABASE HINTS BASED ON TABLE IDENTIFIERS LOST DURING RPD MERGE
bug 13868155 - CONDITIONAL ANALYSIS AGENT NOT WORKING
bug 13870943 - USAGE OF BI DASHBOARD REPORTS IN PAGE CAUSING ISSUE  
bug 13871009 - HIDE DETAILS OPTION DOES NOT WORK FOR SUM(*) IN CUSTOM FORMULA CALC ITEM
bug 13872382 - PRESENTATION VARIABLE BREAKS WHEN LIMIT VALUE BY ALL REPORTS CHECKED 27005 ERROR
bug 13875210 - REFRESH ISSUE OF ALL VALUES DROPDOWN NOT RESIZED AND VALUES NOT VISIBLE
bug 13879336 - ON IPAD ACTION LINK DOESNT WORK IN SCORECARD VIEW ON DASHBOARD PAGE
bug 13880033 - [NQSERROR: 46036] INTERNAL ASSERTION: CONDITION ROWVALUES.SIZE() == NUMCOLUMNS
bug 13886662 - DATE FILTER: THE VALUE ENTERED MUST BE IN PROPER FORMAT
bug 13888163 - DASHBOARD PROMPT INCORRECTLY SETS TO CODE VALUE INSTEAD OF DISPLAY VALUE
bug 13895504 - UNEXPECTED SORT ORDER
bug 13897448 - FILTER ON A COLUMN WITH A FOMULA CREATED BY BIN DOES NOT COMPLETE
bug 13898454 - FIELD NAMES WITH DOTS ARE NOT PROPERLY DISPLAYED WHEN YOU CREATE A SAVED FILTER
bug 13899403 - CONDITION USING SWEDISH CHARACTERS THROWS NO RESULTS ERROR
bug 13901928 - DELETING DUPLICATE COLUMN CAUSES OTHER TWO COLUMNS TO BECOME THE SAME
bug 13907668 - VIEW SELECTOR CAUSES ANALYSIS TO DISSAPPEAR FROM DASHBOARD WITH COND. SECTION
bug 13916943 - "WRAP TEXT" IS INCORRECTLY TRANSLATED AS "DÖLJ TEXT" IN SWEDISH LOCALE
bug 13918691 - CRASH WHEN USING FILTER ( USING ) ON EVALUATE AGGREGATE MEASURE
bug 13919339 - "ALL COL VALUES" CHKBOX IN PROMPT IS NOT WORKING WITH DISABLED APPLY BUTTON
bug 13921437 - SUBTOTAL CALCULATION IMPACTS PERFORMANCE IN OBIEE 11.1.1.6 UPON UPG FROM 10G
bug 13922366 - SEARCH A MEMBER IS NOT WORKING FOR HIER COL PROMPTS WITH SPECIFIC COLUMN VALUES
bug 13926291 - OBIEE 11G RENAME BUTTON FOR BIP REPORT LINK IN DASHBOARD IS MISSING
bug 13928312 - MORE THAN ONE VALUE NOT GETTING PASSED TO BI PUBLISHER REPORT IN 11.1.1.6
bug 13933221 - PIVOTED GRAPH DRILL BEHAVIOR CONCERN
bug 13938404 - FILTER NOT WORKING WITH MSAS CUBE REPORT CONTAINING & IN VALUES
bug 13939310 - ADDING A NEW COLUMN TO UNION IS NOT WORKING PROPERLY
bug 13939850 - ONLY HEADER IS DISPLAYED WHEN THE'DISPLAY IN BROWSER WHEN APPLICABLE' OPTION IS
bug 13944009 - INCORRECT REPORT LINK GETS GENERATED IN IE8
bug 13945570 - DESCRIPTOR ID REPLACES LOGICAL COLUMN IN TITLE OF EXPORTED REPORT
bug 13949566 - MASTER DETAIL VIEW INTERACTION CONTEXT IS LOST
bug 13950601 - CONDITIONS LIST OF VALUES DO NOT WORK, NOTHING GETS RETURNED
bug 13956072 - PROBLEM WITH UNION , PIVOT TABLE, AND NEW CALCULATED ITEMS
bug 13958101 - TYPE=DISPLAYVALUEMAP IS TAKING LONGER THAN RUNNING THE ACTUAL REPORT
bug 13958976 - ENCOUNTER DXE COMPILER ERROR WHEN REPORT HAS COMBINE WITH SIMILAR RESULTS
bug 13959839 - AFTER APPLYING BP2, REQUEST RETURNS ERROR GETTING CURSOR IN GENERATEHEAD
bug 13961101 - QA: IE: SWITCHED TO STYLE 'FUSIONFX' SHOWS BROKEN IMAGES ON DASHBOARD.
bug 13967932 - IE7, IE8 SLOW, CONSUMING CPU AND APPEARS TO HANG EDIT ANALYSIS
bug 13969710 - QUERY REFRESH DOES NOT SHOW COLUMN DRAGGED FROM EXCLUDED SECTION
bug 13972011 - USER GUID WITH BACKSLASHES WILL CAUSE FAILURES
bug 13972487 - ASSERTION FAILURE PROMPTFILTERVALUUEVISITOR.CPP ACCESSING 11.1.1.6 DASHBOARDS
bug 13973535 - UNEXPECTED BEHAVIOR OF ORDER BY ON TIMESTAMP COLUMN
bug 13973660 - CONTAIN OPERATOR AND VARIABLE :ASSERTION FAILURE: !LASTEXPRESSIONPOINTLESS()
bug 13974012 - PIVOT TABLE CALC ITEM W/ HIDE DETAILS HAS INCONSISTENT TOTALS
bug 13975074 - WANT TO NAVIGATE TO ENTIRE RESULTSET IN PIVOT TABLE WHEN CLICK GRAND TOTAL VALUE
bug 13976546 - UNRESOLVED COLUMN ERROR
bug 13977716 - CAN'T SEE THE MSSAS PREDEFINED CALCULATED MEMBERS FROM ADMINTOOL PHYSICAL LAYER.
bug 13980940 - SELECTION STEPS APPLY CONDTION NOT WORKING WITH FILTER BASED ON ANOTHER
bug 13982089 - BI INSTALLATION ISSUES IN THE INSTALL LOGFILES 11.1.1.6 ON OEL5
bug 13982971 - PERMISSIONS ON WEB CATALOG OBJECTS NOT APPLIED IMMEDIATELY
bug 13983172 - ADMIN TOOL CRASHES WHEN OPENING OBIEE RPD
bug 13983193 - ALIAS THAT HAS AN '&' IN THE NAME CAUSES ERROR ROOT XML NODE NQW NOT FOUND
bug 13983360 - WHEN RUNNING AS A SERVICE BI SERVER STOPS AFTER CONSOLE LOGOFF EVENT
bug 13984729 - CAN'T MODIFY COLUMNS PROPERTY (CAPTION, BACKGROUND COLOR, ETC.)
bug 13986088 - INCORRECT “TAB DELIMITED FORMAT” EXPORT FOR ITALIAN LANGUAGE
bug 13986374 - BI SERVER WITH SAP BW 7.0 CRASHES AFTER HIGH MEMORY & CPU UTILIZATION
bug 13989722 - AFTER SETTING CONDITIONAL FORMATTING, JAVA.LANG.NUMBERFORMATEXCEPTION HAPPENS
bug 13990203 - CONDITIONAL FORMATTING NOT WORKING FOR CHARTS
bug 13991011 - UNNECESSARY WHERE CLAUSE IS GENERATED BY PHYSICAL SQL WHEN USING FILTER.
bug 13993435 - ABILITY TO HIDE RUN TIME OPTION 'HIDE COLUMN' FROM ANALYSIS PROPERTIES
bug 13994110 - VARIABLES CANNOT BE USED IN COLUMN SELECTOR
bug 13996544 - ACTION LINK DOES NOT FILTER PROPERLY ON BINNED FORMULA COLUMN
bug 13997389 - ONLY FIRST MEMBER SHOWN IF DRILL DOWN ON TABLE VIEW
bug 14002032 - CRASH IN SEARCHSUBSYSTEM::VIEWCATALOGGROUP
bug 14002708 - OBIEE UPGRADE FROM 11.1.1.5 -> 11.1.1.6 FAILS TRYING TO CREATE A RESPONSE FILE
bug 14003224 - CATALOG GROUPS DO NOT APPEAR UNDER MY ACCOUNT
bug 14005093 - OBIEE PRESENTATION SERVER AND JAVAHOST FAILS AFTER CONSOLE LOGOFF EVENT
bug 14006464 - UNABLE TO SORT DESCENDING WITH NULL VALUE FIRST
bug 14007380 - TEXT DATA NOT DISPLAYED PROPERLY IN OBIEE 11.1.1.6.0 WITH TERADATA 13.10.02.02
bug 14008896 - ADMIN TOOL ERROR OPENING MDS XML REPOSITORY
bug 14011040 - DIRECT DB REQ REPORT ARE NOT REFERESHED WHEN PROMPT VALUE CHANGES IN DASHBOARD
bug 14013626 - LARGE PIVOT TABLE SHOWS WRONG DATA IN COLUMNS WHEN EXPORTED TO EXCEL
bug 14020717 - PROBLEM TO DISPLAY SPECIAL CHARACTERS WHEN EXPORT AN ANALYSIS TO PDF FORMAT
bug 14021125 - INCORRECT PRIMARY KEY IS CONFIGURED WHEN IMPORT METADATA FROM ORACLE DB WITH OCI
bug 14021534 - MISSING PROMPT FIELD IF THE DASHBOARD PAGES CONTAIN DUPLICATE PROMPT PAGE
bug 14025087 - UNCHECK "SHOW APPLY BUTTON" CAUSE PROBLEM ON RESTRICTED DASHBOARD PROMPT COLUMN
bug 14026714 - RESET TO DEFAULT VALUES DOESN'T WORK IF IT'S LOCATED IN AN ANALYSIS AS CONDITION
bug 14027230 - REMOVE ACTION LINK FORMATTING EXCEL DOWNLOAD
bug 14031064 - 11.1.1.6.0 - PROMPT 'INCLUDE "ALL COL VALUES" IN THE LIST' UNCHECKED IN LIST BOX
bug 14033090 - IN VIEW SELECTOR, SOME VIEWS IN CONDITIONAL SECTION NEED TO BE REFRESHED
bug 14035710 - DESCENDING SORT ORDER DOES NOT WORK PROPERLY
bug 14040387 - ISSUE AN EXPLICIT DISTINCT FROM ADVANCE TAB DISABLES DRILL DOWN
bug 14040587 - OPENING WEB QUERY (.IQY) FILE IN EXCEL SHOWS INVALID CHARACTERS
bug 14045275 - OTBI NEEDS TO SUPPORT FLEXFIELDS REPORTING FOR SAAS CUSTOMERS
bug 14049919 - NAVIGATION NOT WORKING WHEN CLICKED ON A VALUES ON IE7, WORKS FINE ON IE8/9&FF
bug 14050064 - THE TIMESTAMP IS OFF BY 7 HRS IN LOG MESSAGES VIEW OF EM FOR NQSERVER.LOG
bug 14050451 - MY ACCOUNT PREFERENCE CHANGES TO “MY DASHBOARD” FROM “DEFAULT”
bug 14053924 - MULTI-BYTE CHARS GARBLED WHEN TRY TO VIEW LOG IN MANAGE SESSIONS PAGE
bug 14055261 - PIVOT CORNER CANNOT BE STYLED EASILY
bug 14058655 - "INCLUDE COLUMN" IN PIVOT TABLE SHOWS THE COLUMN FORMULA INSTEAD OF THE HEADING
bug 14060693 - DASHBOARD IS DELETED WHEN SAVE DASHBOARD AS WITH THE SAME NAME AND LOCATION
bug 14060738 - FORMATTING DIALOG DOES NOT ALLOW UNIT TO BE ENTERED
bug 14063997 - SUBQUERY CONTAINS TOO MANY VALUES ERROR IN 11.1.1.6
bug 14068722 - TRAFFIC LIGHTS SYMBOLS ALONG WITH VALUES GETTING DISPLAYED IN THE EXCEL SHEET
bug 14069552 - ACTION LINKS SHOWING UNFILTERED DATA WHEN USED WITH UNIONS
bug 14070348 - IBOTS CALLING JAVA PROGRAM NOT WORKING IN CLUSTERED ENVIRONMENT
bug 14075002 - PROMPT WITH MULTIPLE PAGES DOES NOT KEEP VALUES OF PREVIOUS PAGES
bug 14080249 - CUSTOM CSS STYLE DOES NOT WORK ON COLUMN HEADING
bug 14080494 - DELIVERS NOT ABLE TO SEND CONTENT USING DX-MAIL AS SMTP SERVER
bug 14081202 - "AGENT FAILED" MESSAGE WHEN ACTION IS EXECUTED FINE IN BACKGROUND
bug 14082430 - DEFAULT SELECTION FOR A COLUMN IN DASHBOARD PROMPT DOES NOT APPEAR AFTER BP2
bug 14086868 - PERFORMANCE ISSUE CUST GROUP ON SLICER INSTEAD OF SINGLE MEMBER FOR ESSBASE
bug 14087030 - REPORTS COMING FROM FOLDER OBJECT DOESN'T SHOW DASHBOARD LINKS
bug 14088142 - 10G->11G UPGRADE, DASHBOARD PROMPT DISPLAYING EXCLUDED VALUES
bug 14092611 - MASTER-DETAILS DOESN'T WORK WHEN A VALUE INCLUDES "&"
bug 14096957 - KEY CHANGED WHEN DELETING AN OBJECT FROM PHYSICAL LAYER
bug 14097320 - RESTORE CONTEXT WHEN BI APP RETURNS FROM BACKGROUND ON IPAD
bug 14103211 - REPORT DRILL DOWN WITH SPECIAL CHARACTERS DOES NOT WORK
bug 14108109 - CONDITIONMET - XML ERROR WHILE SAVING CURRENT CUSTOMIZATIONS
bug 14109565 - DASHBOARD MENU ITEMS ARE NOT WORKING ON DASHBOARD VIEW PAGE
bug 14111737 - DIAGNOSTIC LOGS MISSING AFTER OBIEE INPLACE UPGRADE FROM 11.1.1.5 TO 11.1.1.6
bug 14113844 - INVALID JSON PAYLOAD
bug 14114097 - BISERVERXMLCLI ERROR WHEN TRYING TO UPDATE ONLINE RPD
bug 14115975 - GETTING 'ARE YOU SURE YOU WANT TO NAVIGATE AWAY FROM THIS PAGE' MESSAGE
bug 14116139 - UPGRADE OBIEE 11.1.1.5 TO 11.1.1.6.0 - INSTALLATION STALLED
bug 14116160 - DASHBOARD PROMPT VALUES DOES NOT PRINT FOR HTML
bug 14116839 - PUBLISH TO NETWORK MODIFIES CONNECTION POOL PROPERTIES IN MASTER REPOSITORY
bug 14117651 - TITLE USING CUSTOM FORMAT FOR DATE TYPE PRESENTATION VARIABLE NOT DISPLAYED 1ST
bug 14119791 - CANNOT CREATE BI PUBLISHER DATA MODEL FROM BI ANALYSIS
bug 14120190 - EXPORT TO EXCEL DOESN'T SHOW GRAPHS
bug 14122616 - BAD XML INSTANCE ERROR WHEN SELECT BLANK VALUES IN TABLE PROMPT
bug 14124978 - ARCHIVING CATALOG PROHIBITED WHEN TRYING TO ARCHIVE SHARED FOLDER
bug 14125079 - CATMAN OFFLINE UNARCHIVE THROWS AWAY USER AND APPROLE ACES FROM ACLS AND PRIVS
bug 14125085 - OBIPS METADATA RELOAD DOESN'T RELOAD PRIVS
bug 14126057 - EXTERNALIZE STRINGS CANNOT SEE HIERARCHY DESCRIPTIONS IN TOOLTIPS
bug 14133796 - ERROR Q4NU7XSN OCCURS IN AN ANALYSIS
bug 14133832 - MULTIPLE PAGE DASHBOARD PROMPT DOES NOT CHANGE SELECTED VALUE
bug 14135397 - WHEN SORT WITH HIERARCHY IN PIVOT TABLE, GET ERROR
bug 14136472 - JAVASCRIPT IN TEXT DASHBOARD OBJECT WORKS IN 11.1.1.5.0 DOES NOT WORK 11.1.1.6.0
bug 14137805 - BI SERVER CRASH WHEN REPORT TOTAL HAVING DUPLICATE CONST IN BY
bug 14137827 - UNABLE TO FIND SCHEMA WHEN UPGRADING MDS SCHEMA FOR 11.1.1.5.0 TO 11.1.1.6.0
bug 14147197 - EXCEL EXPORT NOT SAME AS IN DASHBOARD IN IT LOCALE : 1.200,50 AS 1200,500
bug 14147801 - MEASURES ARE NOT AGGREATED BY THE DIMENSION COLUMNS WITH CASE STATEMENT
bug 14158152 - DASHBOARD PROMPT WITH SPECIFIC VALUES & DEFAULT SELECT FILTER BY ONLY 1ST VALUE
bug 14159610 - ADDING REPORT TO BRIEFING BOOK WITH COLUMN SELECTOR RESULTS IN SAWSERVER CRASH
bug 14163224 - RIGHT CLICK INTERACTION ERROR ON REMOVE MEMBER
bug 14165073 - NQSERROR: 23004, SUBTOTAL GROUP BY CLAUSE CANNOT CONTAIN AN AGGREGATE EXPRESSION
bug 14167578 - SYNTAX ERROR FOR CASE STATEMENT WITH HTML MARKUP
bug 14170374 - OBIEE KEEPS WRITING [NQSERROR: 12008] MESSAGES TO SYSTEM EVENT LOG
bug 14171179 - IE8: FX EFFECTS: EXCEPTION 'TYPE' ERROR IF DOUBLECLICK ADD COL PIVOT LAYOUT
bug 14174457 - SAWSERVER CRASH IN FILTERUTILS::FINDFILTERBYCOLUMNFORMULA
bug 14180857 - NO INTERACTION FOR PIVOTED GRAPH
bug 14181830 - UNABLE TO SHOW THE VALUES AS PERCENTAGE FOR A COLUMN, ERRORS OUT
bug 14182112 - FOOTER PRINTED TWICE WHEN EXPORTED TO EXCEL
bug 14192766 - IFRAME CODE FAILS ERROR CANNOT EXECUTE CODE FROM FREED SCRIPT SESSIONINFO.JS
bug 14195418 - 11.1.1.6: CLEAR ALL WITH OPTION LIMIT VALUES BY IN PROMPT DOES NOT CLEAR VALUES
bug 14196425 - SCORE IS NOT CALCULATED CORRECTED IN WEIGHTED KPI
bug 14201003 - CRASH IN MODULES - GDCUSTOMLINKS::SERIALIZEJSON
bug 14213424 - SUMM ADV ISSUES CAUSED BY SOURCECELLLEVELIDVECTOR SET TO 4000 CHAR IN RPD
bug 14214357 - RPD CONSISTENCY ERRORS AFTER 10G TO 11G UPGRADE - LEADING/TRAILING SPACE(S)
bug 14217214 - INCONSISTENT BISAMPLE TEST DATA ON TIME DIMENSION
bug 14220560 - BI SERVICES CRASHING ON SPECIFIC QUERY THAT CONSUMES LARGE MEMORY
bug 14222286 - INCONSISTENT NAVIGATIONS WITH CONTEXT PASSING
bug 14224902 - INCORRECT RESULT CALCULATION OF 2 COLUMNS IN TOP N 'OTHERS' OPTION
bug 14225712 - JAVAHOST THROWS INDEXOUTOFBOUNDS EXCEPTION RUNNING JOBMANAGER JAVAJOB
bug 14227363 - EXCEL REPORTS DELIVERED THOUGH AN AGENT ARE UNREADABLE
bug 14228686 - COLUMN VALUE SUPPRESSION DOES NOT APPLY IN COLUMN SELECTOR VIEW
bug 14228857 - SAWSERVER CRASH IN FINDPROPERTYINCONTEXTANDFINDSCOPEINNERLOOP
bug 14228975 - RECURSION LIMIT EXCEEDED ERROR WHEN USING SAVED FILTERS
bug 14229043 - MOUSE HOVER SHOWS SORT ASCENDING AND DESCENDING EVEN WHEN THE SORT IS DISABLED
bug 14232829 - DASHBOARD REPORT LINKS GOING TO THE WRONG COMPOUND VIEW ON INITIAL CLICK
bug 14233806 - ENABLING ORACLE SSO(OAM) BREAKS ACT AS PROXY FUNCTIONALITY IN OBIEE 11.1.1.6.1
bug 14235209 - NAVIGATION WITH ACTION LINK AND PRESENTATION VARIABLE FAIL ON A DASHBOARD
bug 14237147 - MUD MERGE CHANGES PERMISSIONS ON OBJECTS IN PROJECTS NOT CHECKED OUT BY DEVELOPE
bug 14241896 - ACTION LINKS OPEN IN NEW WINDOW IN SIEBEL INTEGRATED MODE.
bug 14243759 - ISSUE WHEN FILTER BASED ON THE RESULTS OF ANOTHER REQUEST
bug 14249279 - WRONG NAME GIVEN TO THE ICON IN THE CATALOG IN OBI 11G CHINESE ENVIORNMENT
bug 14249563 - 'SIGN OUT' OPTION DISAPPEARS IN AN OBIEE 11.1.1.6.1 ENVIRONMENT (VIA EBS)
bug 14249908 - OBI 11.1.1.6.0: PROMPT DOES NOT FILTER WHEN USING DATE COLUMN WITH DESCRIPTOR ID
bug 14249948 - GSKIT TO CREATE .KDB FILE FORMAT
bug 14250060 - ASSERTION FAILURE WITH DATE PROMPT WITH CHOICE LIST AS USER INPUT
bug 14257065 - AUTHENTICATED USER ROLE IS NOT GETTING PROPAGATED CONSISTENTLY ON UPGRADE
bug 14257626 - APP ROLE NAMES WITH SPACES CAN CAUSE PROBLEMS WITH SOME SECURITY CONFIGURATIONS
bug 14262536 - OBIEE SSL DOES NOT WORK FOR ACTIONABLE INTELLIGENCE/ACTION LINK
bug 14263988 - NEED TO UPDATE OPMN.XML FOR THE FIX OF BUG# 14170374 TO WORK.
bug 14265536 - ALL DATA IS 100% WHEN USING PERCENT OF IN THE PIVOT TABLE
bug 14271918 - EXCEL IS NOT EXPORTED CORRECTLY WHEN TOTALS AND HIERARCHY ARE USED
bug 14274454 - BI SERVER CRASHES DUE TO INTERNAL PROCESSING CONDITION THAT OVERRUNS MEMORY
bug 14276169 - EXPORT TO EXCEL OR PDF IS NOT WORKING IN IE8 ON FIRST CLICK OF THE EXPORT LINK
bug 14278346 - DASHBOARD CANNOT READ BI PUBLISHER REPORTS NAMED IN KOREAN AS LINK
bug 14278839 - POSITIONAL CALC ITEM, GRAND TOTAL PROBLEM WITH PERCENTAGE
bug 14280283 - ACTION LINK DOES NOT POPULATE WEB PARAMETER WITH SESSION VARIABLE.ADF_INTGRT
bug 14281842 - DEFAULT COLORS USED IN STACKED BAR GRAPHS DIFFER FROM THOSE IN NORMAL BAR GRAPHS
bug 14283549 - INVALID EXPRESSION ERROR WITH OLAP AW DATA SOURCE
bug 14299059 - ORACLE OLAP PARENT-CHILD QUERY PERFORMANCE ISSUE
bug 14301220 - NAVIGATE TO A PROMPTED REPORT DOESN'T SHOW PROMPT, BUT DISPLAYS RESULTS DIRECTLY
bug 14301662 - EXPORTED EXCEL LINES ARE MISSING
bug 14302133 - UNABLE TO EDIT KPI STATES IF CUSTOM EXPRESSION USED FOR SCORE
bug 14305365 - CUSTOM FOLDER HEADING USING VARIABLES NOT WORKING CORRECTLY
bug 14307348 - REPORT IN 11.1.1.6.2 BP1 DIFFERS IN RESULTS FROM 11.1.1.6.0 DUE TO RPD UPGRD
bug 14307382 - NQSERROR: 37005 WHEN RUNNING BISERVERXMLCLI TO UPDATE ONLINE REPOSITORY
bug 14312246 - RUN IBOT ERROR ON EXCEL/PDF FORMAT
bug 14313177 - DRAG AND DROP CREATES INCONSISTENT SUBJECT AREA FROM A CONSISTENT BMM
bug 14318709 - NQSSERVER CRASH IN PRODUCER::CANCELPRODUCER
bug 14319835 - NQSERROR 96002 ESSBASE ERROR INPUT MDX QRY TOKEN 'CROSSJOIN' IN 11.1.1.6.2BP1
bug 14324595 - BISERVERXMLEXEC FAILS TO CREATE LTS FOLDER FOR LOGICAL TABLES
bug 14325240 - CUSTOM NUMERIC FORMAT 00:00:00 NOT EXPORTED TO EXCEL
bug 14325973 - COPYING A LOGICAL FOLDER CONTAINING A DESCRIPTOR ID DOES NOT REF THE NEW COLUMN
bug 14326379 - SCORE CARDS FROM MULTIPLE SUBJECT AREAS DO NOT REPORT DATA CORRECTLY
bug 14327682 - BI PUBLISHER 11.1.1.6 FAILS IF ADMINSERVER BOUND TO SPECIFIC IP ADDRESS
bug 14331884 - ANALYSIS PROPERTIES WITH INTERACTIONS ARE NOT ENFORCING CONFIGURATION
bug 14333831 - COLUMN PROPERTIES DIALOG DOESN'T DISPLAY PROPERLY AFTER CLICKING IGNORE ERROR
bug 14335552 - SAX PARSER EXCEPTION THROWN WHEN CREATING SUBSTRING EXPRESSIONS
bug 14335601 - OBIEE 11G TOTAL OF COUNT DISTINCT COLUMN NOT CORRECT WHEN A COLUMN IS EXCLUDED
bug 14336964 - AGENT IS ERRORING OUT WHILE RUNNING VBSCRIPT
bug 14337710 - BI SERVER CRASH ON AIX-64 FOR OBIEE 11.1.1.5 BP2
bug 14342137 - TABLE VIEW WITH PROMPT HAS PERFORMANCE ISSUE
bug 14343129 - NULL PROMPT VALUE IS NOT APPLIED WHEN 'LIMIT VALUES BY' OPTION IS SET
bug 14344399 - OBIEE SERVER GENERATE WRONG SYNTAX FOR SQLSERVER WHEN IT'S A DUAL TABLE QUERY
bug 14344956 - CRITERIA TAB WORKS INCORRECTLY WHEN A COLUMN IS DELETED
bug 14349315 - INCONSISTENT SLIDER PROMPTS BEHAVIOR IN 11.1.1.6.2
bug 14350128 - DRILLING NOT WORKING WHEN USING SERVER VARIABLE IN PROMPT - NUMERIC VALUE ERROR
bug 14351306 - SHOW DATA AS PERCENTAGE OF GENERATES ERROR
bug 14351575 - VALUE SKIPPED WHEN EXPORTING TO EXCEL
bug 14352647 - ACTION LINK ON GRAPH FROM PIVOT TABLE DOES NOT PASS FILTERS
bug 14353393 - GROUP IN A TABLE PROMPT NOT WORKING - SHOWS ALL VALUES IN TABLE
bug 14354251 - FILTEREXPRSQLVISITOR.CPP ERROR WHEN TRYING TO NAVIGATE BETWEEN PAGES
bug 14354616 - CANNOT ENTER UNIT INTO WIDTH PROPERTY
bug 14366286 - RUNCAT RENAME ACCOUNTS DOES NOT WORK ON INIT BLOCK USERS
bug 14366456 - INCORRECT RESULT IN CALCULATED ITEM IN TABLE VIEW WITH EXCLUDED COLUMN
bug 14372406 - DELETE AGGREGATES RESULTS IN A CHECKIN FAILURE
bug 14372679 - REQUEST VARIABLE NOT OVERRIDING SESSION VARIABLE RUNNING THRU A GO URL
bug 14374517 - PROMPT VALUES ARE NOT PASSED TO A SCORECARD IN A DASHBOARD
bug 14375027 - CANNOT CREATE LOGICAL COLUMN WITH NAME "SUM"
bug 14377892 - NEED TO OBTAIN NULL_VALUES_SORT_FIRST SETTING
bug 14379318 - SERVER CRASHES AFTER UPGRADING FROM 11.1.1.5 BP2 TO 11.1.1.6.2 BP1
bug 14389433 - ROW-WISE INITIALIZED SESSION VARIABLE SHOULD NOT BE EVAL'ED DURING NAVIGATION
bug 14390445 - IE8 FAILS WHEN NARRATIVE VIEW WITH TAG IS USED AS COMPOUND VIEW
bug 14394636 - PROMPT VALUES ARE NOT BEING APPLIED TO KPI WATCHLIST VIEW ON A DASHBOARD PAGE
bug 14394878 - JAVASCRIPT ERROR – “M IS UNDEFINED” FOR SAVED UNION JOIN
bug 14395876 - MAP VIEW OF THE REPORT AFFECTS PERFORMANCE
bug 14398506 - INSTALLATION FAILING WHEN SETTING CUSTOM PORT VALUES FOR OBIEE
bug 14404528 - SORT ORDER IN CRITERIA DOES NOT AFFECT PIVOT CALCULATED ITEMS
bug 14405668 - CONDITIONS NOT WORKING AFTER APPLYING 11.1.1.6.2BP1
bug 14406555 - ACTION LINK INTERACTION FAILS WITH GETLEVELINFO ERROR
bug 14407827 - ERROR ELEMENT NAMEVALUEPAIR IS NOT VALID FOR CONTENT MODEL WHEN UPGRADE CATALOG
bug 14456047 - FILTERS ARE NOT GETTING PASSED IN PIVOT TABLE AFTER APPLYING FIX
bug 14458674 - SET UP A ROW-WISE INITIATION SESSION VARIABLE FOR INTERNAL TESTING
bug 14460449 - OBIEE 11G MSSAS EXECUTION PLAN NOT CORRECT WITH MULTIPLE TABLE VIEWS
bug 14460639 - CONCATENATED MEMBER NAME AND ALIAS IN HIERCHARY LVL NOT DISPLAYED CORRECTLY
bug 14461064 - INCORRECT WRITEBACK TEMPLATES USED WHEN DASHBOARD HAS MULTIPLE REPORTS
bug 14462680 - QUERY WITH ONLY EVALUATE FUNCTION IN SELECT CLAUSE CAUSES ERROR
bug 14468408 - CHROME: CHART TEXT/LEGENDS ARE DISTORTED AND NOT READABLE
bug 14478215 - BRIEFING BOOKS ISSUES WITH PROMPT SELECTIONS, NOT CORRECT IN BB
bug 14479153 - ERROR WHEN USING FILTER METRIC WITH SUM AGGREGATION FOR MDX SOURCES
bug 14480101 - CRASH IN SPATIALMAPMDMANAGER MODULE DURING SHUTDOWN
bug 14480118 - STOP RUNNING THIS SCRIPT? IS NOT LIMITING REPORT COLUMN PROMPT VALUES
bug 14480353 - MOVE COLUMNS ON INTERACTION TAB FOR ANALYSIS PROPERTIES NOT WORKING
bug 14482274 - SEGMENT DESIGNER POPUP WINDOWS ARE TOO SMALL
bug 14484236 - OPTION TO SPECIFY DIRECT CONNECTION TO SQL SERVER WITHOUT DEFINING A DSN
bug 14486202 - MISSING COLUMN MAPPINGS IN LTS AFTER MUD REPOSITORY MERGE
bug 14486957 - SUB TOTAL (LABELS ONLY) WORKS INCORRECTLY WHEN COLUMNS ARE HIDDEN
bug 14487190 - ASSERTION ERROR WHEN DRILLING ON PIVOT TABLE WITH MULTIPLE ROW SORTS
bug 14489430 - OPTION TO HANDLE 'ACCESSIBILITY MODE' OPTION AS A SESSION VARIABLE
bug 14490674 - OBIEE 11.1.1.6.2 BP1 - GO URLS DO NOT PASS THROUGH DASHBOARDS PROPERLY
bug 14496153 - OBJECTIVE DOESN'T REFRESH IF KPI IS MODIFIED AFTER IT IS ADDED TO OBJECTIVE
bug 14496280 - OBIEE 11.1.1.5.0 CREATING HUGE CORE DUMP FILES
bug 14503598 - AGO AND TODATE FUNCTION NOT WORKING WITH ESSBASE CUBE
bug 14503722 - ACCESSIBILITY MODE CONVERTING PIE CHARTS INTO SINGLE CELL TABLES
bug 14507094 - BI SERVER WON'T START WITH INVALID INIT BLCK REFRESH INTERVAL IN 11.1.1.6.2 BP1
bug 14514491 - SESSION NQID IS NOT CREATED CORRECTLY WITH USER /PASSWORD ON URL
bug 14519423 - EXCLUDING COLUMN WITH COLUMN SELECTOR RESTRICTS REPORT
bug 14520731 - PIVOTED LINE-BAR CHART CAUSES CRASH
bug 14521397 - DURING CONSISTENCY CHECK ERROR IN SACLIENTRP.H OR SOSECURERPGATEWAY.CPP
bug 14526118 - CANNOT REACH SUB-MENUS IN DASHBOARD EDIT MODE WHEN WORKING IN HEBREW
bug 14526920 - MUD MERGE IN 11.1.1.6.2.1 DROPS LOGICAL DISPLAY FOLDERS
bug 14531609 - INHERIT REPORT LINK SETTINGS ARE NOT WORKING WHEN REPORT IS EMBEDDED AS LINK
bug 14531658 - % CHANGE AND TREND ICON ARE NOT CALCULATED CORRECTLY
bug 14532515 - SINGLE ACTION LINK POPUP ISSUE
bug 14540736 - SCORECARD DOCUMENT WITHIN CONDITIONAL SECTION
bug 14543914 - PRESENTATION SERVER AND JAVAHOST ARE SHUTTING DOWN AFTER CONSOLE LOGOFF EVENT
bug 14550926 - COLUMN SELECTOR DATA NAVIGATION LOST : LAYOUT OF THE VIEW COMBINED WITH THE DATA
bug 14556654 - PROMPT VALUES ARE NOT APPLIED IF YOU EXPAND A HIERARCHICAL COLUMN BEFORE
bug 14557262 - DOWNLOAD TO EXCEL DOES NOT DISPLAY ALL THE DATA
bug 14558044 - INFINITE RECURSION IN FILTEREXPRCONTENTSQLVISITOR (CRASH)
bug 14562009 - RECURSION LIMIT EXCEEDED IN XML EXPRESSION VISITOR ERROR FOR UNION REPORTS
bug 14562676 - CSV AND TAB LIMITED DOWNLOAD IS NOT PICKING THE COLUMN SELECTED
bug 14570910 - CANNOT REMOVE/EXCLUDE COLUMN FROM COLUMN SELECTOR
bug 14578141 - RUN, EDIT OR VIEW REPORT AFTER UPGRADE 10G TO 11G ERRORS WITH AGFIXBO2:EIRWWH9E
bug 14586268 - NQCMD IMPERSONATION ON LINUX IS NOT ACCEPTING PUSHED BISYSTEMUSER PASSWORD
bug 14592976 - BUBBLE GRAPH SHOWS ERROR MESSAGE BISVSEXCEPTION WHEN USING A SLIDER
bug 14597626 - DASHBOARD PAGE ORDER ISSUE IN OBIEE 11.1.1.6.2 BP1 ENVIRONMENT
bug 14599136 - EXPORT TO EXCEL IN FOREIGN LANGUAGE CAUSES DATA FIELD TO HAVE MANY DIGITS
bug 14599771 - INTERACTIVE OPTION (HIDE COLUMN) IS NOT WORKING PROPERLY
bug 14611639 - EXTRA UNION BLOCK IS ADDED WHEN MEASURE IS ON EDGE AND TOTAL IS ON
bug 14622910 - AN AGENT SENDS EMAILS THOUGH IT IS CONFIGURED NOT TO SEND AN EMAIL
bug 14629224 - INCORRECT AGGREGATION WHEN ESSBASE MEASURE IS SET TO TIME BALANCE LAST,
bug 14639764 - BIEE 11G LIST FORMAT FILE NAME EXTENSION REMAINS TXT
bug 14642441 - REPORT DOESN'T GET REFRESHED WHEN VARIABLE IS CHANGED USING SAVED FILTERS
bug 14643648 - CATALOGCRAWLER CRASH IN ODBC
bug 14643982 - BROWSERDOM.JS THROWS MEMBER NOT FOUND ERROR WHILE SORTING ON TABLE VIEW ON IE8
bug 14644246 - ERROR EXECUTING THE XUDML TRANSACTION: [NQSERROR: 92008] RUNNING BISERVERXMLCLI
bug 14650526 - JUNK CHARACTERS ADDED WHEN WRITE BACK COLUMNS WITH SPECIAL CHARACTERS
bug 14651133 - TRELLIS VIEW DOWNLOAD TO PDF NOT WORKING
bug 14652744 - FOCUS DOESN'T STAY ON THE DEFAULT VALUE FIRST TIME YOU EXPAND DASHBOARD PROMPT
bug 14665812 - SAWSERVER CRASH IN SQLBASE::GETMAPPEDGROUPBYFORMULAFROMKEY
bug 14667592 - UNRESOLVED COLUMN WHEN USING RSUM
bug 14675117 - GENERATED SQL QUERY FROM BIEE 11G SEGMENT DOESN'T CATER UTC OFFSET
bug 14689090 - QUERY LIMITS TIME OF DAY RESTRICTION IS NOT TAKING EFFECT IN APPROLE HIERARCHY
bug 14696885 - SCORES ARE REVERSED WHEN GOAL IS LOW VALUES ARE DESIRABLE
bug 14697631 - PERFORMANCE ISSUE ON QUERY TO MICROSOFT SSAS
bug 14697990 - IE8 PERFORMANCE ISSUE, BROWSER HANGS WHEN OPENING REPORT FROM CATALOG
bug 14699214 - IE8 : PIE CHARTS ARE NOT DISPLAYED WHEN OPENING A LARGE SCORECARD
bug 14702357 - INSUFFICIENT DATA CELL MARKUP FOR A SCREEN READER IN ACCESSIBILITY MODE
bug 14702378 - NQSSERVER CRASH AFTER APPLYING PATCHES 14318709,13740577,14520731,14494920
bug 14702961 - MEASURE IN PIVOT TABLE MASTER DOES NOT PASS CONTEXT FROM ROW EDGE TO DETAIL VIEW
bug 14706473 - SUBTOTALS ON CALCULATED COLUMNS ARE WRONG WITH DEFAULT AGG RULE
bug 14707370 - OBIEE 11G - CONFIG FAILURE - INST-08072: OPERATING SYSTEM DOES SUPPORT IP V4
bug 14728833 - CHANGE THE BEHAVIOR ABOUT PRESENTATION VARIABLE
bug 14734495 - NAVIGATION FROM DASHBOARD GRAPH TO DETAIL REPORT RESULTS IN TITLE VIEW ONLY
bug 14743801 - REPORTS FAIL WHEN USING ESSBASE DIMENSIONS WITH MULTIPLE HIERARCHIES
bug 14753650 - THE LABEL VALUE OF GRAPH IS NOT CORRECT
bug 14762038 - SERVER VARIABLES ARE NOT AUTO-APPLIED TO SCORECARD VIEWS ON DASHBOARD PAGES
bug 14762243 - TODATE() IN KPI WITH TRENDING ENABLED CAUSES ODBC ERROR
bug 14762365 - DIMENSION VALUES CONTAINING "&" CAUSE SAX PARSER ERROR IN OSSM
bug 14770689 - DELETING WRONG NODES FROM STRATEGY MAP
bug 14771782 - IBOTS CALLING JAVA PROGRAM IN CLUSTER STICK AT STATUS 'RUNNING'
bug 14775115 - BIEE 11G IPAD EXPORT TO PDF DOES NOT PROVIDE PAGING, SCROLL, THUMBNAIL CONTROLS
bug 14778743 - KPI WATCHLIST FAILS WHEN CONTAINING KPIS THE USER DOESN'T HAVE ACCESS TO
bug 14781767 - RUNTIME PROMPTS ARE NOT WORKING IN FIREFOX 16
bug 14781786 - SESSIONS NOT GETTING PURGED IN MANAGE SESSIONS IN THE CURSOR CACHE SECTION
bug 14781986 - BIPS CRASH WHEN POSITIONAL CALC ITEM AND “DISPLAY AS RUNNING SUM" ENABLED
bug 14799549 - EDITING MYDASHBOARD CAUSES PATH NOT FOUND ERROR #U9KP7Q94
bug 14808491 - SOCKET COMMUNICATION ERROR AT CALL=RECV: (NUMBER=10038) ERROR ON BI APPS RPD
bug 14813238 - JAVAHOST THROWS INDEXOUTOFBOUNDS EXCEPTION RUNNING JOBMANAGER JAVAJOB
bug 14845282 - PATCH MERGE HAS DIFF BETWEEN RPD AFTER PATCHRPD AND RPD AFTER ADMINTOOL MERGE
bug 14846369 - EXPORTING NUMBER DATA TO CSV SHOW EXTRA TRAILING DIGITS
bug 15856618 - REPORT NOT OPENING - GETTING ASSERTION FAILED
bug 15857492 - CRASH IN SAW::FOHELPER::CALCULATEHEIGHTANDWIDTHS
bug 15872710 - OBIEE CRASHES WITH LARGE PDF EXPORTS, NEED GOVERNORS ADDED TO PREVENT CRASHES
bug 15886643 - CALC ITEM DISPLAY 0 OR NAN IN TABLE IF EDIT MEASURE FORMULA, EXCLUDED COL
bug 15887277 - DIRECT DB REQUEST SHOWS INCORRECT LOV IN TABLE PROMPTS WHEN COL ORDER DIFFERENT
bug 15891959 - CRASH IN SAW::SECTIONINDEXOFFSET::ORDERSECTIONS
bug 15916915 - CRASH IN DASHBOARDVIEWSUBMITCONDITIONFUNCTOR::GETCONDITIONCURSOR
bug 15934601 - NQSERROR22032 WHEN SORT ON COMBINED RESULTS BASED ON UNIONS,INTERSECT,MINUS
bug 15934766 - BIPS FAILS TO START WITH DNSUTILS::DNSNAMELOOKUPFAILED
bug 15942044 - OBIEE 11G - GRAND TOTAL NOT SUMMING UP CORRECTLY
bug 15942630 - MOUSE-OVER IN PIE CHART NO LONGER GIVES PERCENTAGES
bug 15954886 - GCMAP/GCWAP: ERROR IN CAMPAIGN LOADS AND LAUNCHES
bug 15958318 - EXPORT TO EXCEL/PDF DISPLAYING VIEW DISPLAY ERROR-LENGTH URL EXCEEDS
bug 15963008 - DIFFERENT RESULTS ARE SHOWN WHEN ACTION LINKS ARE USED WITH CONDITION
bug 15997192 - FILTER ON A FORMULA COLUMN SHOWS THE ERROR NQSERROR: 46008 SQORRQEXPR.CPP
bug 15998769 - CANNOT SEE SOME OF THE TOTAL ROWS WHEN EXPORT THE REPORT USING EXCEL OR PDF
bug 16059256 - SAWSERVER MAY ALLOCATE VERY LARGE ALLOCATION WITH ODBC ERROR
bug 16074032 - IE8 SCROLL HANGS WHEN OPENING LARGE REPORT HAVING 13000 ROWS AND 54 COLUMNS
bug 16076735 - EXPORTING FLOAT TO CSV SHOW EXTRA DIGITS
bug 16173934 - LOCALE SETTING IS NOT APPLIED TO DATA TYPE OF DATETIME, ONLY DATA TYPE OF DATE
bug 16185055 - DASHBOARD NOT SHOWING RESULTS EVEN THOUGH REPORTS EXECUTION IS FINISHED
bug 16222825 - EEF - INVESTIGATION OF RPD CONSISTENCY PROBLEMS
bug 16447124 - RAGGED HIERARCHY IN ORACLE OLAP DOES NOT WORK IN ANSWERS ANALYSIS
bug 16568285 - CREATING AN ANALYSIS USING 'COMBINE RESULTS/UNION' GET PAGE SWITCH ERROR


BI Publisher


bug 9350060 - ALLOW TO SEE XML FIELD NAMES IN TEMPLATE BUILDER
bug 9911938 - FIRST RESULT REPEATS WHEN USING MANY XDOFX:IF STATEMENTS
bug 9914102 - SUPPORT DIGITAL SIGNATURE FOR PDF AS PART OF BURSTING CONTROL FILE
bug 10085305 - ATTACHING EXTERNAL XSL STYLESHEET DOES NOT WORK WITH ORACLE BI PUBLISHER REPORT
bug 10314086 - MYSQL CASE STATEMENT THROWS ERROR IN BI PUBLISHER
bug 11678983 - LDAP CONFIG ASSUME ADMIN IS DEFINED UNDER DISTINGUISHED NAME FOR USERS
bug 11723579 - LAYOUT OF A REPORT WHICH HAS A JOINED CELL IS CHANGED WHEN REOPENED
bug 12606666 - PROBLEM WITH LIST COMPONENT IN ORACLE BI PUBLISHER 11.1.1.5
bug 12697624 - DATA TEMPLATE ESCAPING XML CONTENT FROM VARCHAR/CLOB COLUMNS IN TERADATA DB
bug 12814240 - PDFOVERLAY CLASS CORRUPT PDF OUTPUT
bug 12825409 - INTERACTIVE VIEWER CONDITIONAL FORMATTING FAILS FOR NON DISPLAY COLUMN
bug 12877824 - WEBSERVICE API - GETSCHEDULEDREPORTSTATUS ALWAYS RETURNS JOB STATUS AS SCHEDULED
bug 12912473 - BI PUBLISHER 11G SHARE REPORT XMODE=3 AND XMODE=4 NOT WORKING FOR PDF OUTPUT
bug 13041306 - ER: PRINTING HARD FONTS FROM PUBLISHER USING PCL
bug 13066991 - UPGRADE ASSISTANT DOESN'T UPGRADE A DATA TEMPLATE CORRECTLY WHEN WE USE: XDO_USE
bug 13067882 - FIRST VALUE OF LOV APPLIED WHEN NO VALUES SELECTED
bug 13086493 - DATATRIGGER BEFORE DATASTRUCTURE IN 10G CONVERTED TO AFTER TRIGGER IN 11G
bug 13100220 - HOW TO USE 11.1.1.5 WITH THE IDENTITY ASSERTER
bug 13115460 - UNABLE TO DOWNLOAD BRIEFING BOOK IN FORMAT PDF
bug 13147747 - IE9: SIZE OF LOV MENU WINDOW KEEPS INCREASING FOR EACH SELECTION OF LOV VALUE
bug 13330718 - DELIVERY CONFIGURATION EMAIL FROM ADDRESS OVERRIDES BURSTING FROM EMAIL ADDRESS
bug 13341249 - BACKGROUND ON SCHEDULED REPORT DOES NOT PRINT
bug 13351305 - QUERY BUILDER DOES NOT BUILD CORRECT SYNTAX FOR SQL SERVER
bug 13364491 - REPORT VIEWER NOT SHOWING ANIMATED CLOCK FOR LARGE REPORT IN IE7 & SOMETIMES IE8
bug 13385828 - COULD NOT GET DATASOURCE WHEN SCHEDULING REPORT ON BI PUBLISHER WITH MANY MANAGE
bug 13391941 - QUERY BUILDER - COLUMNS THAT HAVE SPACES ARE NOT DISPLAYED
bug 13393658 - PRINTER DELIVERY [0] STATUS: FAILED PRINTING FROM WEB SERVICE CALL FROM EXTERNAL
bug 13406212 - ORA-00923 WHEN USING CONNECT BY IN DATA MODEL AFTER 13325316
bug 13441079 - ORA-01756 - ERROR DURING EDIT SQL QUERY IN PUBLISHER
bug 13473493 - XMLP TRANSLATION ISSUE OF MILLION (ENG) TO MILLIONES (SPANISH)
bug 13480933 - WEB SERVICES PASS NULL FOR HOST NAME IN NOTIFICATION
bug 13496612 - "EXCEL FOUND UNREADABLE CONTENT.." IF EXPORT SIMPLE TRELLIS TO EXCEL 2007
bug 13501838 - ORA-00923 ISSUE WHEN CREATING A BI PUBLISHER DATASET
bug 13516890 - CONDITIONAL FORMATTING IN TABLE FAILS WITH HIERARCHICAL COMPARISON
bug 13519154 - BI PUBLISHER 11G DOES NOT ACCEPT '>' AND '<' SIGNS IN THE DATA SOURCE QUERY
bug 13521951 - BIP UPGRADE FROM 10G TO 11.1.1.5.0 IS NOT SUCCESSFULL FOR TIAA-CREF
bug 13529494 - REPORT NOT GENERATED WHEN HTML CONTAINS INVALID ATTRIBUTES
bug 13553123 - CREATE USER THROUGH SOAP FAILS WITH JAVAX.XML.WS.SOAP.SOAPFAULTEXCEPTION:
bug 13553275 - ASSIGNROLESTOUSER() OF PUBLISHER WEB SERVICE SECURITYSERVICEAN GIVE AN ERROR
bug 13553999 - CAN'T GROUP MORE THAN 6 COLUMN IN REPORT TABLE
bug 13558099 - CARRIAGE RETURN AND LINE FEED (CR LF) NOT GENERATED IN E-TEXT TEMPLATE.
bug 13562801 - XML TAG DISPLAY SHOULD DEFAULT TO 'FOLLOW THE DATA STRUCTURE'
bug 13568043 - BIP QUERY FAILING VALIDATION DUE TO 'COALESCE' KEYWORD
bug 13568865 - JAVA.LANG.ARRAYINDEXOUTOFBOUNDSEXCEPTION ERROR ACCESSING PAYMENT FILE FORMATS BI
bug 13570702 - BI PUBLISHER REPORT HEADER OUTPUT IS BLANK UNLESS USED WITH PAGE HEADER
bug 13571066 - BI PUBLISHER GAUGE GRAPHICS INSERTS BLANK LINES
bug 13583737 - STYLE TEMPLATE DOESN'T WORK WITH BI PUBLISHER REPORT
bug 13592901 - THE REPORT IS THROWING AN SQL ERROR THAT REFERENCES CHECKING FOR NULL VALUES
bug 13611515 - CAN'T SEE PERMISSIONS FOR JAPANESE FOLDER, REPORTS.
bug 13631491 - GENERATEREPORT FAILED: DUE TO : INVALID FORMAT REQUESTED: HTML
bug 13635235 - CAN NOT SEE/CHANGE CATALOG PERMISSION AFTER PATCH 13554951
bug 13647553 - USER WITH BI AUTHOR ROLE GETS ERROR WHEN CREATING A NEW DATA MODEL
bug 13652600 - ATTEMPT TO RESET BI PUBLISHER USER PASSWORD AS ADMINISTRATOR NEEDS OLD PASSWORD
bug 13685912 - BI PUBLISHER: RUNREPORT USING WSDL ERROR WITH NULL POINTER EXCEPTION
bug 13689132 - DUE TO STRICTER RULES FOR DATA TYPE CASTING SOME TEMPLATES MAY FAIL IN .3.4.2
bug 13700272 - IN DASHBOARD OPEN THE BI PUBLISHER PDF REPORT ERROR 'UNAUTHORIZED ACCESS'
bug 13702448 - CALENDAR ATTRIBUTE IS SET TO NULL WHEN USING V2:SCHEDULEREPORT
bug 13704241 - CHECK PRINTING FORMAT NOT PRINTING MICR FONT IN PDF OUTPUT
bug 13708130 - RTF LAYOUT USING BULLETS WITH NO BODY CAUSE RTF OUTPUT TO FAIL TO RENDER
bug 13720037 - BISERVER QUERY FAILS IF AMPERSAND IS USED IN COLUMN NAME
bug 13724944 - CUSTOMIZED SIEBEL TEMPLATES WITH XDOFX CALLS FAIL AFTER UPGRADE TO 10.1.3.4.2
bug 13727334 - ADD BETTER UI CONTROL OVER PARAMETER APPEARANCE (SCROLL BARS OR VARIABLE WIDTH)
bug 13769907 - PDF TEMPLATE WITH REPEATING GRP DISPLAYS DISTORTED OUTPUT AND WRONG ORIENTATION
bug 13776599 - CASE SELECT STATEMENTS IN A JOIN ARE UNLINKABLE TO ANOTHER DATA SET.
bug 13791535 - WEBSERVICE SCHEDULE OPTN TO SET BURSTING OFF NOT WORKING FOR BURST-ENBLD REPORTS
bug 13802969 - USER COULD NOT LOGIN AFTER ASSIGNING ROLE USING ASSIGNROLESTOUSER SERVICE METHOD
bug 13809860 - BUG - BI PUBLISHER - PDFBOOKBINDER TITLE PAGE
bug 13811049 - BUG BIPUBLISHER 11G WEB SERVICE DOESN'T ACCEPT ATTRIBUTEFORMAT POWERPOINT
bug 13811882 - BI PUBLISHER: QUERY BUILDER RESULTS RETURN COLUMN TYPE (APPEARS) INSTEAD VALUE
bug 13836696 - BI PUBLISHER REPORT NOT GENERATED WHEN A TEXT FIELD START WITH "E.<SPACE>"
bug 13853759 - AIX: CAN NOT GET XML DATA BY DATA MODEL UNDER THE JAPANESE FOLDER
bug 13863279 - BI PUBLISHER INSTALL - INST-07407: UNABLE TO DETECT MACHINE PLATFORM OR JVM BIT
bug 13870707 - MISSING ATTRIBUTE IN PUBLICREPORTSERVICE.WSDL IN VERSION 11G COMPARING TO 10G
bug 13873267 - FUSIONAPPS - SCALED OUT BI_SERVER NOT WORKING-500 ERROR ON AUTHENTICATIO
bug 13874185 - BI PUBLISHER 11G - EXPORTED REPORT NOT OPENING WHEN ONE PARAMETER HAS NULL VALUE
bug 13877261 - CAN NOT DISABLE BURSTING IN BI PUBLISHER REPORT IF BURSTING EXISTS IN DATA MODEL
bug 13877850 - MHTML OR EXCEL OUTPUT FORMAT TAKES LONG TIME FOR LARGE REPORT
bug 13882805 - EXCEL SPREAD SHEET IS NOT RENDER IF DATA IS SINGLE DOT OR SINGLE DASH
bug 13883040 - NUMBER ROUNDING IS INCORRECT IN BIP REPORTS
bug 13887911 - EMAILBODY CONTENTS NOT VISIBLE IN WEBSERVICES (SCHEDULESERVICE) SOAP CALL
bug 13891126 - DATA MODEL GROUP BY ISSUE IN IE7
bug 13904225 - UNREADABLE CONTENT, HYPERLINKS REMOVED FOR XSLX OUTPUT AND USE OF LIST
bug 13914438 - LINE GRAPH DISPLAY NOT ACCURATE AROUND CURVES EXCEPT FOR INTERACTIVE OUTPUT
bug 13920603 - INCORRECT TRANSLATIONS OF TO_CHECK_NUMBER FOR ITALIAN
bug 13921691 - QUERY BUILDER UNABLE TO PARSE CERTAIN QUERIES, DISALLOWING EDIT OF SUCH QUERIES
bug 13933184 - STEPS TO CONFIGURE CUSTOM SSO WITH BIP 11.1.1.6.0
bug 13945647 - AFTER BUG 13635235 WE NOTICE DATA MODEL AND REPORT ISSUE
bug 13948833 - MANAGE CONDITIONAL FORMATS LIMITATION
bug 13960606 - TIME ZONE FOR DATE PARAMETER IS NOT PREFRENCES TIME ZONE
bug 13981523 - BI PUBLISHER ON 64-BIT WINDOWS CAN'T CONNECT TO MS ANALYSIS SERVICES CUBE
bug 14027199 - REGARDING UNDERLINE DISPLAY IN BI PUBLISHER
bug 14033594 - PIVOT TABLE LOOSES CUSTOM FUNCTION WHEN CONVERTED INTO A CHART AND SWITCHED BACK
bug 14039229 - GET ORA-00923 WHEN SQL COLUMN ALIAS EMBEDS SET OPERATOR KEYWORDS
bug 14040357 - WEB SERVICE DELIVERYSERVICE NOT INCLUDING PRINTER CUSTOM FILTER
bug 14055793 - REPORT FAILS BECAUSE DATE PICKER PASSES DATE IN WRONG FORMAT
bug 14059851 - UNABLE TO GRANT PRIVILEGES TO ROLE: DOMAIN USERS; GET ERROR ROLE DOES NOT EXIST
bug 14066028 - BI PUBLISHER CANNOT CREATE SAW SESSION USING MSAD CUSTOM AUTHENTICATOR
bug 14087557 - EXCEL TEMPLATE PARSING THE DATA ISSUE FROM BI PUBLISHER 11G
bug 14095131 - CHINESE CHARACTERS IN EXPORTED CSV OUTPUT FORMAT BIP REPORT DISPLAY MESS VIA MS
bug 14099741 - 13869494 CONT:PAMENT FILES ARE NOT BEING TRANSMITTED WHEN SFTP IS USED
bug 14119736 - FA PAYMENTS WEBSERVICE CALL IS NOT RETURNING OUTPUT FROM ETEXT TEMPLATES
bug 14123119 - UNABLE TO SAVE DATAMODEL QUERY WITH LEXICALS THAT USES UNDERSCORE IN ITS NAME
bug 14129147 - HTML OUTPUT FROM RTF LAYOUT IN 11G DOES NOT RESIZE COL WIDTH LIKE IT DID IN 10G
bug 14146406 - CALENDAR DATE PICKER FAILS TO SELECT A DATE FROM A 30-DAY MONTH IF TODAY IS 31ST
bug 14153799 - BI PUBLISHER DOESN'T SUPPORT EXCEL 2010 OUTPUT FORMAT (EXTENSION
bug 14162848 - QUERY BUILLDER (11.1.1.5) ERRORS WITH ""COULD NOT LOAD SCHEMA INFORMATION"
bug 14163973 - IE7: DATA MODEL EDITOR VIEW XML DATA OPTION DOES NOT SHOW XML DATA
bug 14167915 - DATE FORMAT CANNOT BE NULL ERROR WHEN PASSING VALUE TO POPULATE PARM
bug 14181601 - SLOW HTML GENERATION FOR WIDE AND LONG TABLE
bug 14183123 - HOW TO FORMAT THE DATE TO JAPAN EMPEROR REIGN WHICH START FROM A LETTER
bug 14201065 - SET VARIABLE DOES NOT WORK IN DATA SET FOR OBIEE 11G
bug 14227625 - INTEGER DATA TYPE MISSING IN INTERACTIVE VIEW PRESENT IN HTML
bug 14235558 - CANNOT OVERRIDE PUBLISHER DATAMODEL WHEN USING BIEE CATALOG WINDOW.
bug 14240045 - EDITING SCHEDULED REPORTS DOES NOT REFLECT VALID VALUES FOR EDITED SCHEDULES
bug 14243545 - EXTENSION FUNCTION ERROR: ERROR INVOKING 'ROUND':'JAVA.LANG.NUMBERFORMATEXCEPTION
bug 14245312 - ENABLING SSL FOR OBIEE BREAKS BI PUBLISHER (XMLP) INTEGRATION
bug 14265190 - THERE IS INSTABILITY TO OPEN THE CATALOG AFTER BIP WITH LDAP
bug 14301306 - PPR SHOWS TRANSMITTED BUT THE PAYMENT FILE DOES NOT GET TO THE BANK
bug 14304427 - SEARCH DIALOG OPENED FROM LOV MENU DOES NOT WORK WITH BIND PARAMETER IN SQL QRY
bug 14326151 - SOME PARAMETERS IN XML REPORT 'TRANSACTION HISTORICAL SUMMARY (XML)' NOT WORKING
bug 14338158 - PASSWORD FIELD NOT TO BE DISPLAYED UNDER MY ACCOUNTS WHEN SECURITY MODEL IS FMW
bug 14359228 - AFTER UPGRADE TO 11.1.1.6.2BP1, BI PUBLISHER LOGIN PAGE SHOWS UP IN ENGLISH ONLY
bug 14377257 - NUMBER SHOWS EXPONENTIAL E CHAR IN A PIVOT TABLE OF RTF TEMPLATE FOR FEW LOCALES
bug 14380117 - BIP REPORT FAILS WITH ERROR DUE TO SPECIAL CHARACTER IN DATA
bug 14393825 - OBIEE11G: LARGE NUMBER OF OBIPS SESSIONS CREATED WHEN USING SSO AND BI PUB
bug 14398785 - XDOXSLT:TRUNCATE DOESN'T WORK CORRECTLY IF THE DATA IS GREATER THAN 262144.1.
bug 14458962 - MDX QUERY CONTAINING SUBSTITUTION VAR WHICH WORKS IN 10G DOES NOT WORK IN 11G
bug 14478219 - AIX WITH IBM JVM: USERS SEE JAVA.LANG.NULLPOINTEREXCEPTION UNDER HIGH LOAD
bug 14538688 - BI PUBLISHER DOES NOTE OVERWRITE EXISTING REMOTE FILE WHEN USING SFTP FOR DELIVE
bug 14540066 - ACC:JAWS: NEED A WAY TO ADD CODE FOR ACCESSIBILITY TO TEMPLATES IN LAYOUT EDITOR
bug 14551713 - ARIAL NARROW CONVERTS TO NARROW ARIAL NARROW IN BI PUBLISHER DESKTOP UTILITY
bug 14558377 - EDITING SCHEDULES IN BI PUBLISHER RESETS OUTPUT TO 'ALL' FOR ALL DESTINATIONS
bug 14605689 - IN AIX USING DATA SET OF REMOTE WEB SERVICE RETURNS NULL DATA
bug 14623100 - MISSING UK TIME ZONE FOR BI PUBLISHER STANDALONE
bug 14630317 - ACC: CHARTS NEED TO SUPPORT ALTERNATE TEXT FOR 508 COMPLIANCE
bug 14630348 - EXCEL TEMPLATE FAILS WHEN XML DATA HAS AN 'E' CHARACTER FOLLOWED BY NUMBERS
bug 14633340 - REPORT WITH 2 DATE PARAMETERS:TIME PASSED THRU 1ST DATE CALENDAR IS SAME FOR 2ND
bug 14636805 - DATA MODEL REJECT VALID RUNNABLE QUERY IN EDITOR THAT WAS ENTERED IN 11.1.1.5
bug 14643894 - LDAP QUERY USING MSAD DOES NOT WORK IN THE DATA MODEL
bug 14672582 - EBUSINESS SECURITY INTEGRATION FAILS ON FIRST CONNECT
bug 14680717 - BI PUBLISHER 11.1.1.6:TIMES NEW ROMAN FONT DISPLAYS WRONG FONT IN RTF OUTPUT
bug 14700519 - DATE ERRORS WHEN IN BRITISH SUMMER TIME (BST)
bug 14705265 - CAN'T VIEW A REPORT WHEN DATA SOURCE IS ANSWER SAVED IN THE JAPANESE NAME
bug 14738403 - 11G V2/SCHEDULEREPORT EMAIL FROM ADDRESS IGNORED FOR SERVER DEFAULT
bug 14741093 - ERROR OCCURS ON BIP 11.1.1.6.2 WITH IIS7.0
bug 14744132 - CANNOT DISPLAY MORE THAN 8 STACKED BARS IN CHART FOR HTML OR PDF OUTPUT
bug 14781914 - BI PUBLISHER - UNABLE TO HIGHLIGHT TEXT IN DATA SET EDITOR USING IE8
bug 14813229 - REPEATED MESSAGE POPS UP WHEN LEAVING DATA MODEL PAGE USING IE 9
bug 15855872 - STRESS: JAVA.LANG.SECURITYEXCEPTION DURING BIP STRESS TEST
bug 15869175 - QUERY BUILDER TRUNCATES THE SECOND RANGE OF BETWEEN CLAUSE IN WHERE CONDITION
bug 15903842 - USING A 'COMPLEX WEB SERVICE' DATA SET ONLY GENERATES DATA FOR INTERACTIVE OUTPUT
bug 15973732 - BI PUBLISHER LOGOUT ISSUE DUE TO INCORRECT SSO PROVIDER LOGOFF URL
bug 15992028 - REPORT WITH MORE THAN 4 PROMPTS DOES NOT WORK FOR INTERACTIVE VIEW IN DASHBOARD
bug 16069375 - UNABLE TO CHANGE PROPERTIES IN BIP DATA SET COLUMN - NO MENU APPEARS AFTER CLICK
bug 16575411 - SUBTOTAL SET TO FALSE HAS NO EFFECT IN LAYOUT EDITOR


Essbase


bug 11839965 - MAXL ENCRYPTION INCORRECTLY REMOVES FIRST BUFFER USED WHEN USING BUFFER_ID
bug 12949431 - RUNNING A REPORT SCRIPT WITH INCORRECT SYNTAX CAUSES THE APP TO STOP RESPONDING
bug 13483901 - PARSING ERROR WHEN RUNNING AN ENCRYPTED MAXL SCRIPT THAT CREATES DRILLTHROUGH
bug 13883641 - DATAEXPORT COMMAND IN CALC CHANGES MEMBER NAME IN EXPORT FILE
bug 13906119 - THE DEPLOY MAXL STATEMENT ENCOUNTERS A PARSING ERROR WHEN ENCRYPTED
bug 13995902 - @DATEPART CALC FUNCTION IN MEMBER FORMULA DOES NOT UPDATE VALUE
bug 14031563 - RUNNING MDX TO SHOW A LARGE NUMBER OF LEAF MEMBERS RETURNS MEMORY ERROR
bug 14103464 - APP TERMINATES DURING CERTAIN CALCULATIONS WHEN ESSBASE UNDER HEAVY LOAD
bug 14189474 - "ESSOTLQUERYMEMBERSBYNAME" API RETURNS INCORRECT PARENT NAME FOR SHARED MEMBER
bug 14209988 - ASO CUSTOM CALCULATION SCRIPT CRASHES THE ASO CUBE DATABASE
bug 14210803 - RUNNING A SQL DATA IMPORT USING AN OCI CONNECTION NO DATA GETS LOADED NO ERROR.
bug 14221692 - ASO DB WHICH IS TARGET OF A TRANSPARENT PARTITION TERMINATES WHEN RUNNING MDX
bug 14228984 - DATA CAN BE ACCESSED IF PROPERTY_EXPR IS USED IN DIMENSION PROPERTIES
bug 14252473 - ESSBASE TERMINATES IF DELETING APP WHILE ACTIVE USERS CONNECTED
bug 14278594 - EXECUTING MDX USING FILTER USER CRASHES ESSBASE SERVER
bug 14301062 - ESSBASE TERMINATES IF USING MAXL TO EXPORT AN OUTLINE WITH VARYING ATTRIBUTES
bug 14498391 - CALC ON REPLICATED PARTITION DOESN'T WORK IF TARGET PARTITION OPTION NOT SELECT
bug 14538369 - ESSBASE TERMINATES WHEN RUNNING MDX SCRIPT WITH APP OR DB MISSING
bug 14618630 - SSAUDIT IS NOT LOGGING "LOCK & SEND' OPERATION IN ".ALG AND .ATX" FILE
bug 14658729 - ESSBASE API PROGRAM ON WINDOWS 2008 R2 (64-BIT) CONSUMES TOO MUCH MEMORY
bug 14669283 - TRANSPARENT PARTITION DOESN'T CALCULATE DYNAMIC TIME SERIES MEMBERS PROERLY
bug 14710347 - SSAUDIT RESETTING ROW NUMBERING TO 1 IN THE .ALG FILE AFTER ESSBASE RESTART
bug 14844850 - MAXL SHELL TERMINATES DURING NESTED SCRIPT WITH AN ERROR CONDITION NOT HANDLED
bug 15845424 - UNABLE TO CREATE A TRANSPARENT PARTITION WHEN MEMBER NAMES CONTAIN '$'
bug 15856456 - OCI DATA LOAD WITH HIGH PRECISION DATA RETURNS ERROR: INVALID MEMBER [MEMBER]
bug 15880564 - ESSBASE AGENT STOPS RESPONDING DURING A MAXL DISPLAY SESSION OPERATION ON AIX
bug 15884510 - ASO APP STOPS RESPONDING DURING QUERY WITH MDX FORMULA WITH CASE/WHEN EXPRESSION
bug 16178344 - ESSBASE APP TERMINATES DURING MDX WITH DIM SIGNATURE MISMATCH IN CROSSJOIN

11.1.1.6.2 BP1 Patch Now Available

Another Patchset out . Fixes quite alot .. 11.1.1.6.2.1 BP1 Patch

Patches 11.1.1.6.2 BP1

OBIEE Version
11.1.1.6.2 (Build 120605.2000 BP1 64-bit)


 
- 14223977 Patch 11.1.1.6.2 BP1 (1 of 7) Oracle Business Intelligence Installer
- 14226980 Patch 11.1.1.6.2 BP1 (2 of 7) Oracle Real Time Decisions
- 13960955 Patch 11.1.1.6.2 BP1 (3 of 7) Oracle Business Intelligence Publisher
- 14226993 Patch 11.1.1.6.2 BP1 ( 4 of 7) Oracle Business Intelligence ADF Components
- 14228505 Patch 11.1.1.6.2 BP1 (5 of 7) Enterprise Performance Management Components Installed from BI Installer
- 13867143 Patch 11.1.1.6.2 BP1 (6 of 7) Oracle Business Intelligence
- 14142868 Patch 11.1.1.6.2 BP1 (7 of 7) Oracle Business Intelligence Platform Client Installers and MapViewer

Pre Requisite Patch is the 11.1.1.6.2 Patch in earlier post.

Some of the Fixes

Fixes SQL Direct Database Requests with a Prompt not refreshing on dashboard


6197675 PROVIDE CAPABILITY TO DOWNLOAD REPORT WITH FILTERS USING GO-URL ACTION=DOWNLOAD
9884975 11G ADMIN TOOL RECEIVES NQSERROR: 37005 WHEN SAVING ONLINE RPD CHANGES
10199188 CHARTS X AXIS LABEL IS BLURRED AT 45/60 ANGLE
10295403 EXCEL DOWNLOAD : TOTAL RULE LINES ARE MISSING
10353891 TEXT IN ANGLED BRACKETS IS MISSING FROM FILTER VIEW
10417235 LAYOUT PANE IS CORRUPTED AT TABLE VIEW EDITING.
10647655 COLUMN DATA FORMAT IS IGNORED ON WRITEBACK
11793832 MULTIPLE VALUES IN A DASHBOARD PROMPT DOESN'T WORK WITH BI PUBLISHER
11815935 NLS:THE SETTING FIRSTDAYOFWEEK IN LOCALEDEFINITIONS.XML DON'T AFFECT CALENDAR UI
12325889 SAVING A NEW REPORT TITLE VIEW IS NOT AUTOMATICALLY UPDATED WITH REPORT NAME
12355716 HTML TAGS IN OBIEE 11G REPORTS DOESN'T WORK
12391045 FUNCTION REPORT_AGGREGATE REQUIRES AT LEAST ONE MEASURE COLUMN IN ITS FIRST ARGU
12612904 TOTAL PICKS VALUE IN FIRST ROW AND GIVES NOT A NUMBER WHEN AVERAGING NULL
12638186 EXCEL EXPORT GENERATES A SPACE BEHIND ANY MEASURE VALUE WHEN USING ACTION LINK
12656913 OBI 11G ONDEMAND - DASHBOARD MENU ITEMS DISAPPEAR FROM MENU
12687758 MAPS WITH 500+ TILES TAKE TIME TO LOAD IN FIREFOX AND CHROME (IE FINE)
12696084 FORMAT HEADINGS > HORIZONTAL ALIGNMENT IS NOT WORKING IN TABLE, PIVOT VIEW IN FF
12701383 DOWNLOAD TO EXCEL INCLUDES A BLANK TEXT ROW BELOW THE LAST ROW OF DATA
12715885 HORIZONTAL ALIGNMENT WON'T WORK FOR NARRATIVE, STATIC TEXT VIEW IF EXPORT TO PDF
12725139 VARIABLE VALUES NOT RESOLVED IN TITLE/LEGEND OF CHART, SHOWS FORMULA
12728253 DRILL DOWN TO DETAIL LEVELS DOES NOT WORK FOR THIRD DIMENSION ON ROW EDGE
12776086 REPORT COLUMN SELECTOR IS NOT BEING UPGRADED PROPERLY
12787619 EXPORTED EXCEL:THE 11TH COLUMN HEADING'S FONTS INCORRECT AND LINES ARE MISSING
12807186 OPTION TO NOT SUPPRESS POPUP DOES NOT WORK WITH COLUMN SELECTOR ACTIONS
12822192 DOWNLOAD TO EXCEL WITH DATA FORMATTED COLS AND LOCALE OTHER THAN ENGLISH ISSUE
12826429 MULTIPLE-SELECT PROMPTS DO NOT APPEAR IN UPGRADED ENVIRONMENT
12905237 MAP VIEW DOES NOT FIT FILTERED LAYERS
12908486 UPGRADING 11.1.1.3 TO 11.1.1.5 GAUGE TITLES FOOTER CHANGED FROM "@1 %" TO "@0 %"
12911049 EXPORT (PDF, EXCEL, ETC.) OPTION IS NOT EXPORTING ALL ROWS OF A REPORT
12914177 DON'T SHOW NULL PROJECT_INACCESSIBLE_COLUMN_AS_NULL COLUMN IN SUBJECT AREA
12921728 DXE MAKING UNNECESSARY COPY OF DATA FOR SINGLE AXIS LAYOUTS
12952452 DEFAULT VALUE FOR COLUMN SELECTOR VIEW IS THE FIRST VALUE OF THE COLUMN LIST
12960177 ADDING CALCULATION TO THE HIERARCHY COLUMN IN SELECTION STEPS RESULTS IN ERROR
12963080 LINE BAR 3D GRAPH IS UPGRADED TO CYLINDRICAL BAR 3D GRAPHS
12977729 HIERARCHICAL COL DRILLING ON MORE THAN ONE PAGE OF RESULTS LOSES FOCUS ON DRILL
12978196 COLUMN SELECTOR DOES NOT PASS VALUES FROM SUMMARY REPORT TO DETAILED REPORT
12981896 MAPVIEWER HOVER TOOLTIPS SHOW WRONG VALUES
12992697 PAGE BREAK WITH COLUMN BREAK DOES NOT WORK IN PRINTABLE HTML
13008956 DISABLE AUTO-PREVIEWING OF RESULTS NOT WORKING
13024366 SOLARIS CRASH WHILE MODIFYING GRAPH IN ANALYTIC REPORTS
13054445 REPLACING NULL VALUES WITH "0" IN AN OBIEE PIVOT TABLE IS NOT WORKING
13062842 HORIZONTAL SCROLL BAR IS NOT DISPLAYED ON EDITING DATABASE DIRECT REQUEST
13084799 QUERIES AGAINST BISERVER NOT LEVERAGING FORWARD ONLY OPTION
13110980 THE SECTION PROPERTIES OF PIVOT TABLE IS NOT EFFECTIVE OR NOT CORRECT
13111799 GRAPHING ENGINE IS NOT RESPONDING ERROR HAPPENED.
13249783 AFTER APPLYING PATCH 129725592, OBIEE 11G THROWS BAD XML INSTANCE
13253545 ADDING A NEW GROUP SHOWS EMPTY COLUMN
13256635 VIEWUICONTAINER ERRORS FOR UPGRADED REPORTS
13256990 "NODE WADS NOT FOUND" ERROR OCCURS WHEN UPGRADE 10G CATALOG AND REPOSITORY
13258962 BI SERVER CRASHING STD::BAD_ALLOC ORA-24550 ERROR THEN RESTARTING
13331075 UNABLE TO DRAG MULTIPLE CATALOG ITEMS TO A DASHBOARD
13359653 ANALYSIS QUERY IS NOT CANCELED PROPERLY.
13366675 INAPPROPRIATE PRE-RESERVES WITH STRINGBUFFER
13370386 "THE CURRENT XML IS INVALID WITH THE FOLLOWING ERRORS: BAD XML INSTANCE!" OCCURS
13383217 QDR ISCUSTOMGROUPUNIQUEID DOES UNNECESSARY STRING CONCATENATION
13384157 LARGE SMA BUCKET SIZES NEED TO BE ALIGNED TO POWERS OF 2
13386650 DOWNLOADING INTO EXCEL WITH CONDITIONAL FORMAT BREAKS DATA FORMAT
13386728 OBIEE 11G EVALUATE FORMULA FAILS IF PARAMETERS HAS % OR /
13393602 RSUM NOT CALCULATING CORRECTLY WHEN THERE ARE EXCLUDED COLUMNS
13398245 PROMPT VALUE IS NOT PASSED ON NAVIGATION IF THE PROMPT SECTION IS COLLAPSED
13400140 MULTI-STEP PROMT MISSING THE DASHBOARD PROMPT WHICH "LIMIT VALUES BY" IS SET
13401386 AUTO PREVIEW ARE NOT PREVENTED EXCEPT PIVOT VIEW
13401775 RESET BUTTON DOES NOT CLEAR MESSAGE ABOUT WRONG DATE FORMAT
13403816 AFTER APPLIED MLR 13110245 STILL HAVING THE HIERARCHICAL PROMPT ISSUE
13405110 OPENING REPORT CRASHES BI PRESENTATION SERVICES
13409646 CALCULATED ITEMS CAUSE MANY INTERNAL CUBES WITHIN DXE
13416870 RACE CONDITION IN PRESORTED CUBE
13418590 EXPORT TO EXCEL NOT WORKING PROPERLY (LINUX 64)
13434349 "LIMIT ROWS BASED ON SECTION VALUES" PROPERTY IS NOT EFFECTIVE FOR GRAPH PIVOT
13440792 EXPORT TO EXCEL WITH REGIONAL SETTINGS OTHER THAN ENU
13444157 ERROR WHEN USE "IS IN TOP" OPERATOR IN FILTER WITH PRESENTATION VARIABLE
13447368 COLUMN FORMAT PROPERTY IS NOT SAVED
13458667 HIDDEN OPTION NOT AVAILABLE FOR DATE COLUMNS IN TABLE LAYOUT
13471332 NEW MEMBER STEP WINDOW DOESN'T FIT ALL REQUIRED MEMBER SELECTION
13477147 CREATE PROMPTED LINK CREATES A LINK WITH THE NAME OF THE VARIABLE
13479613 CANNOT MODIFY REPORT/DASHBOARD WHEN USER HAS READ-WRITE BUT NO DELETE PERMISSION
13498324 PERFORMANCE DEGRADATION FOR PARENT-CHILD HIERARCHY QUERY FROM 11.1.1.6.0
13501903 EXCEL DOWNLOAD ERRORS WITH DOUBLE QUOTES AND EMBEDDED COMMAS
13502763 DRILL DOWN ON REGULAR COLUMN WITH CUSTOM DATE FORMAT
13516292 REPOSITORY INIT BLOCKS LOSE CONNECTION TO DATABASE AND NEVER REGAIN IT
13517767 POSITIONAL CALC CAN CAUSE XMLWRITER EMPTY DOCUMENT ERROR
13522214 VALUE-BASED HIER PROMPT SEARCH RESULTS IN ODBC ERROR
13522246 DASHBOARD EMBEDDED IN IFRAME MODIFIES PORTALPATH OF SINGLETON SESSIONINFO
13523548 ERROR OUT WHEN USING MULTIPLE DOUBLE COLUMNS IN SAVED FILTERS
13526747 PIVOT CHART LEGEND DUPLICATES MEASURE LABELS.
13529441 MULTI DASHBOARD PROMPT DOESN'T WORK WITH BI PUBLISHER INTEGRATED
13533404 SECTIONS HEADERS ARE CAUSING DASHBOARD SPACING ISSUES
13539267 HIERARCHY IN PIVOT TABLE AND BAR CHARTCAUSES ERROR
13541432 PIVOT SORT BUTTON DISAPPEARS WHEN SELECT "AFTER" FROM THE TOTAL OF "COLUMNS"
13542145 UNION ERROR IN WHEN FILTERING A COLUMN THAT HAS A DESCRIPTOR ID COLUMN
13546009 SELECT PIVOT TABLE IN VIEW SELECTOR CAUSES COLUMN TO BE EXCLUDED WHEN DRILLING
13567100 CASE WHEN USED IN MEASURE IN PIVOT IS NOT WORKING AS IN 10G
13570406 MAP VIEW DOESN'T DISPLAY THE CORRESPONDING LEVEL DATA AFTER DRILL DOWN
13577428 PIVOT TABLE FORMATTING ISSUE
13585714 USING "FORMAT TITLE VIEW" IN ANSWERS- RESULTS - TITLE THROWS "INVALID XML" ERROR
13586709 GRAPH PIVOTED VIEW POSITION DOES NOT REMAIN SAME.
13599283 BRIEFING BOOK DOESNT SHOW SAVED CUSTOMIZATIONS VIA A LINK.
13605450 'MY FOLDERS' DOESN'T SHOW IN DASHBOARD EDITOR WHEN USERNAME HAS PARENTHESES
13606302 "DO NOT DISPLAY IN A POPUP" ACTION LINK INCORRECT BEHAVIOR (HIERARCHY LEVEL COL)
13615198 RIGHT CLICK INCLUDE MSR NEEDS TO ADD TO MSR BIN, NOT COLUMN.
13616593 AUTO PREVIEW ARE NOT PREVENTED FOR GRAPH
13627902 MAPS ARE PRINTED IN GREY WHEN LOG IN USING ITALIAN LANGUAGE
13641963 BACKSPACE BUTTON AFFECTS THE MAIN WINDOW INSTEAD OF POP-UP WINDOW
13647309 GRAND TOTAL FUNCTIONALITY INCORRECT AND INCONSISTENT WITH OLAP CUBES
13682411 CALC ITEM NOT DISPLAYED IN A PIVOT TABLE
13688544 'CASE WHEN' CHANGES TO 'CASEWHEN' IN XML AND CAUSES ERROR WHEN SET XML
13704274 SECURITY FILTERS ARE INCORRECTLY APPLIED TO LEVEL-BASED MEASURES
13724002 PIVOT TABLE TITLE TRANSLATING PROBLEM
13774538 GRAPH TITLE DISPLAYING VARIABLE CODE @{TESTCASE} ON EXPORTED TO PDF FILE.
13774635 OBIPS THROWING ASSERTION WHILE RUNNING THE CACHE SEEDING AGENT
13788536 GRAPH PIVOTED RESULTS PREVENTS ADDING NEW COLUMNS TO CRITERIA
13792237 ADMINTOOL CRASHES WHEN DELETING MULTIPLE PHYSICAL TABLES
13815409 MULTIPLE PIE CHARTS DISPLAYED FOR PIVOT TABLE REPORT WHEN SHOULD BE ONE
13827099 ADD ADDITIONAL ASCENDING SORT RESULTS IN ERROR
13844868 BI PRESENTATION SERVICE FAILS TO START IN PARALLEL WITH OTHER BI COMPONENTS
13897448 FILTER ON A COLUMN WITH A FOMULA CREATED BY BIN DOES NOT COMPLETE
13933009 DOUBLE COLUMN (DESCRIPTOR ID) DASHBOARD PROMPT - ENABLE SQL RESULTS ON CODE COL
13944009 INCORRECT REPORT LINK GETS GENERATED IN IE8
13946535 REFRESH ISSUE OF ALL VALUES IN FILTERDROPDOWN NOT RESIZED AND VALUES NOT VISIBLE
13963768 HIDE COLUMNS ON DASHBOARD NOT WORKING CORRECTLY
13983193 ALIAS THAT HAS AN '&' IN THE NAME CAUSES ERROR ROOT XML NODE NQW NOT FOUND
13986530 OBIEE CRASHES IF RUN MULTIPLE QUERIES CONCURRENTLY ON SAP/BW FOR THE FIRST TIME
14005093 OBIEE PRESENTATION SERVER AND JAVAHOST FAILS AFTER CONSOLE LOGOFF EVENT
14021534 MISSING PROMPT FIELD IF THE DASHBOARD PAGES CONTAIN DUPLICATE PROMPT PAGE
14025087 UNCHECK "SHOW APPLY BUTTON" CAUSE PROBLEM ON RESTRICTED DASHBOARD PROMPT COLUMN
14053994 ACTION LINKS DON'T WORK WHEN HAVING COLUMN SELECTOR AND USING CHROME

Extra Steps

Copy Client Tools etc.

cd $MW_HOME/Oracle_BI1/clients/bipublisher/repository/Tools
cp BIPublisherDesktop*.exe $MW_HOME/user_projects/domains/bifoundation_domain/config/bipublisher/repository/Tools/


Update client tools from get started section in OBIEE.

The Admin Tool lists its version in

C:\Program Files x86\Oracle Business Intelligence Enterprise Edition Plus Client\oraclebi\orahome\bifoundation\version.txt

Build: 11.1.1.6.0.BIFNDN_11.1.1.6.2BP1_NT_120604.0813
Release Version: Oracle Business Intelligence 11.1.1.6.0
Package: 120604.0136.000



Clear presentation cache auto script

  • OBIEE 11G has a catalog manager command called “ClearQueryCache” to clear out the PS cache.
  • The syntax of ClearQueryCache command is: 
    runcat.cmd/runcat.sh -cmd clearQueryCache  -online <OBIPS URL> -credentials <credentials properties file>
  • Create a catalog manager credential properties file. Open a text file and type the following entries.
              Login = <weblogic_admin_Username>
              Pwd = <weblogic_Admin_Userpassword>  
    And save in a directory with the file name as catmancredentials.properties.
  • Now open command prompt and navigate to <MW_HOME>instances\instance1\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\catalogmanager\
  • And Run the following command to clear OBIPS query cache:
    runcat.cmd -cmd clearQueryCache -online http://host:9704/analytics/saw.dll -credentials E:\catmancredentials.properties

OBIA Special Characters Missing or ? Malformed


OBIA Special Character Problem in ETL Informatica ...


When ETL routines are run, German Characters or Special Characters are not how they should look. Such as an german umlaut is being transferred as a ?

Below is a document that can be utalised to diagnose the problem


https://app.box.com/s/ql8ov4g40kbug3o48xp3

Regards

The Deliver BI Team

OBIA Starting and Stopping Linux



Starting and Stopping OBIA 10g for 11g the BI Services are replaced by OPMN etc.

DAC Server
cd /u01/obimgr/product/Dac/bifoundation/dac
Stop:
./stopserver.sh
Start:
nohup ./startserver.sh > startserver.out 2>&1 &
BI Services
Stop:
/u01/obimgr/product/OracleBI/setup/run-saw.sh stop
/u01/obimgr/product/OracleBI/setup/run-sa.sh stop
/u01/obimgr/product/OracleBI/setup/run-sch.sh stop
Start:
/u01/obimgr/product/OracleBI/setup/run-saw.sh start
/u01/obimgr/product/OracleBI/setup/run-sa.sh start
/u01/obimgr/product/OracleBI/setup/run-sch.sh start
Informatica
Stop:
/u01/obimgr/product/Informatica/PowerCenter8.6.1/server/tomcat/bin/infaservice.sh shutdown
Start:
/u01/obimgr/product/Informatica/PowerCenter8.6.1/server/tomcat/bin/infaservice.sh startup
Install Specific
 
OAS (can take 3-4 min to stop)
Stop:
/u01/obimgr/product/10.1.3/opmn/bin/opmnctl stopall
Start:
/u01/obimgr/product/10.1.3/opmn/bin/opmnctl startall
Status:
/u01/obimgr/product/10.1.3/opmn/bin/opmnctl status
(Http and OC4J should be up)
 

OBIEE 11G and Internet Explorer 11 IE11


One of my clients approached me a while back, they are on OBIEE version 11.1.1.7+ , There Web Client is Internet Explorer 11

When trying to create a report in Analysis OBIEE is not responding or working as expected.

Oracle have stated they are aware of this problem and Version 11.1.1.9+ Will support IE 11

We can expect OBIEE 11.1.1.9+ to be released summer of 2014.

So I suppose we will have to wait or use another browser... :<

 

OBIA 11.1.1.7.1 BIACM Querys

OBIA 11.1.1.7.1 BIACM 

BR100 Querys


When Creating a Document on Domain values that have been mapped to target values etc in BIACM we can use the BIACOMP schema to derive various pieces of information.

Below are some querys that can be used to get information on mappings etc.

Offerings enabled

select offering_code,offering_name
from c_bia_offering
where installed_flag = 1;



Functional Areas in the Offerings

select offering_key,funcarea_key
from c_bia_offering_funcarea_rel where offering_key in
('FIN_AN_OFRNG',
'PROC_SPEND_AN_OFRNG',
'SCOM_AN_OFRNG')
order by 1,2


Data Load Parameters


select c_param.param_category_key,c_param.param_code,
c_param.param_key,c_param.param_name
,c_param.param_descr,c_param.param_type,c_param.param_value_type,param_value_varchar2
,param_value_date,param_value_number,c_param_dw_val.datasource_num_id
from c_param
,c_param_dw_val
where c_param.param_key = c_param_dw_val.param_key
and product_line_version_key = 'EBS_12_1_3'
--and c_param.param_code = 'HR_ACCRUAL_OTHER_AMT'
and datasource_num_id > 0
order by datasource_num_id,c_param.param_category_key,c_param.param_code;


 Top level mapping


select distinct dom_map.src_domain_key,
c_domain.domain_code source_code,src_dom.domain_name src_domain_name
,dom_map.trg_domain_key
,trg.domain_code target_code,trg_dom.domain_name trg_domain_name
from c_domain_map dom_map
,c_domain
,c_domain_tl src_dom
,c_domain trg
,c_domain_tl trg_dom
where  
dom_map.src_domain_key = c_domain.domain_key
and dom_map.src_domain_key   = src_dom.domain_key
and src_dom.src_language_code = 'US'
and dom_map.trg_domain_key    = trg.domain_key
and dom_map.trg_domain_key   = trg_dom.domain_key
and trg_dom.src_language_code = 'US'
--and trg.ref_product_line_key = 'EBS';



 All Mappings and Member Domain Values etc 

select q1.*,dom_map.src_domain_member_code,dom_map.trg_domain_member_code,dom_map.datasource_num_id
,source_member.domain_member_name source_member_name
,target_member.domain_member_name target_member_name
 from c_domain_member_map dom_map
,c_domain_member dom_member
,(select distinct dom_map.src_domain_key,
c_domain.domain_code source_code,src_dom.domain_name src_domain_name
,dom_map.trg_domain_key
,trg.domain_code target_code,trg_dom.domain_name trg_domain_name
from c_domain_map dom_map
,c_domain
,c_domain_tl src_dom
,c_domain trg
,c_domain_tl trg_dom
where
dom_map.src_domain_key = c_domain.domain_key
and dom_map.src_domain_key   = src_dom.domain_key
and src_dom.src_language_code = 'US'
and dom_map.trg_domain_key    = trg.domain_key
and dom_map.trg_domain_key   = trg_dom.domain_key
and trg_dom.src_language_code = 'US'
and trg_dom.domain_name in ('Conformed Currency Rate Type')
) q1
,(select * from c_src_domain_member_tl where language_code = 'US') source_member
,(select * from c_domain_member_tl where language_code = 'US') target_member
where dom_map.src_domain_key = q1.src_domain_key
and dom_member.domain_key = q1.trg_domain_key
and   dom_map.src_domain_member_code = dom_member.domain_member_code
and dom_map.domain_plv_key = source_member.domain_plv_key
and dom_map.src_domain_member_code = source_member.domain_member_code
and q1.trg_domain_key = target_member.domain_key
and dom_map.trg_domain_member_code = target_member.domain_member_code
order by source_code,target_code,src_domain_member_code;


Cheers

Krishna Mohan & Shahed M

OBIA 11.1.1.7.1 (ODI) Externalize RPD Presentation Layer


OBIA 11.1.1.7.1 (ODI) Externalize RPD Presentation Layer


How to Add String Localizations for Oracle BI Repository Metadata



OBIEE RPD – Init Block : RPD Msgs
If you added a new Column or Subject Area, follow this procedure to add string localizations in the Oracle BI Repository metadata.

To add string localizations for Oracle BI repository metadata:
1. Stop the OPMN services.
Use the command:
opmnctl stopall.
2. Open a database administration tool, and connect to the Oracle Business Analytics Warehouse schema.
3. Identify the strings for the following presentation objects:
- Subject area
- Presentation table
- Presentation hierarchy
- Presentation level
- Presentation column
For example, for the subject area Payables Invoices - Prepayment Invoice Distributions Real Time, you would enter the following strings:
Table 4-1 Example of Localization Strings

String
Presentation Object
Payables Invoices - Prepayment Invoice Distributions Real TimeSubject area
TimePresentation table
Date – YearPresentation hierarchy
TotalPresentation level
YearPresentation level
Calendar YearPresentation column



 
4. For each subject area, externalize the strings for localization and generate custom names for the presentation objects:
a. In the Oracle BI Administration Tool, right-click the subject area and select Externalize Display Names, and then select Generate Custom Names.
b. Save your work.
For more information about localizing strings, see "Localizing Metadata Names in the Repository," in Oracle Fusion Middleware System Administrator's Guide for Oracle Business Intelligence Enterprise Edition.
5. Check the consistency of the repository, and remove any inconsistencies.
For instructions, see "Checking the Consistency of a Repository or Business Model," in Oracle Fusion Middleware Metadata Repository Builder's Guide for Oracle Business Intelligence Enterprise Edition (Oracle Fusion Applications Edition).
6. Enter the custom name of one of the presentation objects into the table C_RPD_MSGS:
7. INSERT INTO C_RPD_MSGS(MSG_ID, CREATED_BY, CREATION_DATE)
8. VALUES('<CUSTOM NAME OF PRESENTATION OBJECT>', 'CUSTOM', SYSTIMESTAMP);
9. COMMIT;
Note: To view the values for custom names and logical columns in the Administration Tool, right-click the presentation object and select Properties. The data in the "Custom display name" field appears in the format VALUEOF(NQ_SESSION.VALUE, where VALUE is the custom name for a presentation object, or the logical value for a presentation column. This value is the value that you need to enter in the VALUES section of the SQL statement above.
10. Enter the localized string for the presentation object in the previous step into the table C_RPD_MSGS_TL:
11. INSERT INTO C_RPD_MSGS_TL(MSG_ID, MSG_TEXT, LANGUAGE_CODE, CREATED_BY, CREATION_DATE)
12. VALUES('<CUSTOM NAME OF PRESENTATION OBJECT>', '<LOCALIZATION OF THE STRING'>, '<LANGUAGE CODE FOR TRANSLATED LANGUAGE>', 'CUSTOM', SYSTIMESTAMP);
13. COMMIT;
To identify the language code for a particular language, use the following SQL:
SELECT LANGUAGE_CODE, NLS_LANGUAGE, NLS_TERRITORY
FROM FND_LANGUAGES_B
WHERE INSTALLED_FLAG IN ('B', 'I');
14. Enter additional details about the presentation object into the table C_RPD_MSGS_REL as indicated by the following SQL:
15. INSERT INTO C_RPD_MSGS_REL(MSG_ID, MSG_NUM, MESSAGE_TYPE, CREATED_BY, CREATION_DATE)
16. VALUES('<CUSTOM NAME OF PRESENTATION OBJECT>', '<TRANSLATION OF THE STRING'>, '<LANGUAGE CODE FOR TRANSLATED LANGUAGE>', 'METADATA','CUSTOM', SYSTIMESTAMP);
17. COMMIT;
18. Repeat steps 6 through 8 for each presentation object requiring localization.
19. Validate that the physical connection of the session initialization block INIT_USER_LANGUAGE_CODE is operable:
a. In the Oracle BI Administration Tool, select Manage, Variables, Session Initialization Block.
b. Right-click INIT_USER_LANGUAGE_CODE.
c. In the Properties dialog, click Edit Data Source.
d. Click Test, and input the value for the language code. Then, click OK.
For example, for Arabic enter 'AR'.
The value
USER_LANGUAGE_CODE = '<language code>' should be returned.
If this value is not returned, the TNS entry for the data source is not properly configured.
20. Restart the OPMN services.
21. Verify the localized strings in Oracle BI Answers. On the login page, specify the appropriate language.
 

OBIA 11.1.1.7.1 Table Maintenance Customisation


OBIA ODI Default Behaviour on Table Maintenance


 

The table Maintenance procedure only currently works under the Oracle BI Applications model Folder

The below solution involves altering a procedure / generating a scenario / Duplicating and Altering an IKM

Oracle BI Applications
Dimension_Stage = Truncate after load in IKM
Fact_Stage = Truncate after Load in IKM

 

The truncate is handled by the Table Maintenance Program in ODI this is called from the Integration Knowledge Modules…

To alter the Table Maintenance program so it supports other models  folders do the following

Navigate to: 
1.       Bi Apps Project àComponents àDW à Table Maintenance
2.       Duplicate TABLE_MAINT_PROC Procedure

3.       Edit the New TABLE_MAIN_PROC Procedure and remove the following piece of code

||td.mTableModelCode.equals("ORACLE_BI_APPLICATIONS")

This will now enable the TABLE_MAINT_PROC to work on any Model



I wanted to create a model called RX Oracle BI Applications not linked to BI Applications so that I can keep the custom models separate from the seeded models. Remember you still need to name your folders Dimension_Stage .. same as seeded etc

4.       Duplicate the Existing Package Exec TABLE_MAINT_PROC and refer the procedure step to the new duplicated procedure above.

5.       Generate a new scenario
6.       Duplicate a seeded IKM

Left Click to Duplicate an object

 
7.       Edit the duplicated IKM

Under Details then step “Table Maintenance Before”

Alter the python code – Update to new Scenario name generated above with new Procedure to support a model apart from Oracle Applications.

OdiStartScen "-SCEN_NAME=RX_EXEC_TABLE_MAINT_PROC""-SCEN_VERSION=001"


That’s it test your new interfaces using the New Knowledge Module. Import the Knowledge module into your project.

 

---------- Reference Code in TABLE_MAINT_PROC

   if (td.mTableModelCode.equals("BIAPPS")||td.mTableModelCode.equals("BIAPPS_DATALINEAGE")||td.mTableModelCode.equals("ORACLE_BI_APPLICATIONS")) {

                optOverride = odiRef.getFlexFieldValue(Integer.toString(td.mTableId), "2400", "OBI_TAB_MAINT_BEHAVIOR"); //FlexField for Over-riding the default Sub Model Behaviour

   } else { optOverride = "NEVER_SKIP_ALLSTATS"; // For non-BIAPPS model do nothing

   }

---------- I Have included the snippet that requires changing  in earlier steps.

 

BIACM Load Plan Generation Errors Error


BIACM Load Plan Generator Errors.


The definition of these errors dont exist anywhere hence the post.

1.
 
Error Message :
 
********WARNING: Load Plan template referenced in a master load plan template but not defined => 3 SIL Fact X_CUSTOM_FG

 
This error means that in ODI Studio under Load Plans - Location ->


LOAD PLAN – DEV COMPONENTS – SIL

The above Load Plan Does not exist . Create a new load plan under the above location and rename to to the name the error requires ie 3 SIL Fact X_CUSTOM_FG.


I will add more as they appear.
 

OBIA 11.1.1.7.1 / 11.1.1.8.1 Custom BIACM Offerings for Load Plan / Custom Fact Group

We are Taking on New Clients at the Moment as Independant Contractors for OBIA 11.1.1.7.1 / 11.1.1.8.1 , ODI and Informatica projects



Me and Krishna at DeliverBI had to create a new CUSTOM BIACM Offering and Fact group for one of our longstanding clients, to seperate E Business Suite data loads Out Of the Box and their own Custom data sources. On the Back of the changes we wrote a setup document. 



So we have decided to share this with the OBIA / OBIEE Community.
Extension Documented was Applied to OBIA 11.1.1.7.1 and OBIA 11.1.1.8.1+

I have uploaded a document which covers setting up new functionality that is not available out of the box. We have included scripts needed to expand the offerings within the BIACM tool within OBIA and instructions to configure


BIACM Config. 2
Step 1: Creation of Custom Offering. 2
Step 2: Creation of Source for the new offering. 2
Step 3: Creation of Custom Functional Area. 2
Step 4: Creation of relation between Offering and Functional Area. 3
Step 5:  Creation of fact group (Repeat for each Fact Group). 3
Step 6: Creation of Func Area to Fact Group Relation (Repeat for each Fact Group). 3
Linking BIACM Fact Groups to ODI Objects. 4
Fact Model / Dimension Model4
Load Plan Steps (provided only for SILs, but SDE steps will be the same). 5
Dev Components. 5
Load Plan System Component (Required for a New Fact Group or Dim Group). 7
Generate the Custom Load Plan in BIACM... 8

Link to Document

Click Here to Download the Custom BIACM Offering within Load plan document
Click Here to Download the Custom BIACM Offering within Load plan Scripts


Regards
Shahed Munir and Krishna Mohan 
 
 

IE11 and OBIEE

Update 20/01/2015 IE11 and OBIEE 11g

Internet Explorer 11 and OBIEE 11g Oracle Business Intelligence Enterprise Edition 11...

Patch has been released for Official IE11 Support

11.1.1.7.140527
Patch 18507268: BI BUNDLE PATCH 11.1.1.7.140527

Superseeded by a newer patch 20/01/2015

Patch 20124371: BI BUNDLE PATCH 11.1.1.7.150120

Available from Oracle Support Download

https://support.oracle.com/epmos/faces/DocumentDisplay?id=1615805.2

BI Publisher JDBC Teradata Connection



Teradata Connection in BI Publisher

Connection Type : Teradata JDBC

Shahed Munir --- DELIVERBI


I could see a database connection type of Teradata in BI Publisher but it would not connect.

If there is an error would be something like this : java.sql.SQLException: No suitable driver found for jdbc:teradata:

These are the steps to make it work....


1.Get Files  terajdbc4.jar,tdgssconfig.jar,jtds-1.3.1.jar from Teradata Website . I will put these files in the deliverbi box location or email us for the files...

Link to Files : Click Here to Download Zip file from DeliverBI

2. FTP or goto Server Location for weblogic path MW_HOME is your mw home directory : 

MW_HOME/user_projects/domains/bifoundation_domain/lib

3. Stop all BI Services including weblogic and Copy the files above to the location above 1-2.

4.  Take a backup of the weblogic temporary files in the below location and place in another location and then delete folders .. This will clear the Bipublisher application Cache: 

MW_HOME\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\bipublisher_11.1.1

Once BI Publisher is accessed the application cache is restored and you will see the folders again. I took a back up as i wanted to be sure....

5. Start all BI Services

6. Test Connection - Should say Connection Established Successfully.



Good Luck.. Over and Out.

OPMNCTL Status all process showing STOP and not DOWN Problems


OBIEE 11g OPMN Problems


 

 

 

I had an occasion where processes in OPMNCTL get stuck and show STOP and not down when you try to startall OPMNCTL processes.

An OBIEE OPMNCTL Process will not start and fail due to a process being in stop. 
 
./opmnctl status
 
If they or 1 process show stop then read on 

If the PID - Unix Process is not alive for the process in STOP then you have to delete some files in a specific OPMN directory

Start with Stopping all OPMN processes

./opmnctl shutdown
 
Then goto Directory
 
$ORACLE_HOME/opmn/logs/states
 
Or if that dont exist then $MW_HOME/Instances/Instance1/OPMN/opmn/states
 
Remove all files in the states directory
 
./opmnctl start
 
./opmnctl status - All process should now be DOWN
 
./opmnctl startall - OBIEE should now start as normal 
 

OPMN and EM is out of sync.. Says Alive in EM and Down in OPMNCTL Status

 
Ports in File $ORACLE_HOME/sysman/emd/targets.xml need to match 
the opmn ports being used
 
You may also need to use a dcmctl in combination 
with opmnctl to repair this. 
 


OBIEE 11.1.1.9.0 RPD Cant edit presentation layer Column and Table Names


OBIEE 11.1.1.9+ RPD Cant edit presentation layer Column and Table Names


In 11.1.1.9.0 + there is functionality that needs to be enabled in the Oracle BI Administration tool options that enables the use of editing presentation object table and column names.

Turn it on .... and your  off.


Tools .. Options


OBIEE 12c has been released and ready to download


OBIEE 12c released



What’s New

BI 12c delivers a major update to the Oracle BI platform, with enhancements across the entire platform, as well as new Data Visualization capabilities.  Highlights and benefits include:
  1. Easy to upgrade:  BI 12c offers a radically simple and robust upgrade from 11g, saving customers time and effort in moving to the new version.  BI 12c includes a free utility to automate regression testing, the Baseline Validation Tool, which verifies data, visuals, catalog object metadata, and system-generated SQL across 11g and 12c releases.
  2. Faster:  Sophisticated in-memory processing includes BI Server optimizations and support for multiple in-memory data stores, while in-memory Essbase on Exalytics offers enhanced concurrency and scalability, as well as significant performance gains.
  3. Friendlier:  Usability updates throughout BI 12c demonstrate Oracle’s continued commitment to making analytics as fast, flexible, and friendly as they are powerful and robust.  A new user interface simplifies the layout for the homepage, Answers, and Dashboards, making it easier for users to quickly see what’s important; HTML-5 graphics improve view rendering; and it’s easier for users to create new groups, calculations, and measures, for simpler, more direct interaction with results.
  4. More Visual:  A consistent set of Data Visualization capabilities are now available across Oracle BI Cloud Service and Oracle BI 12c, as well as the upcoming Oracle Data Visualization Cloud Service, offering customers a continuity of visual experience unmatched by our competitors.  Business users can point and click to upload personal data and blend it with IT-managed data in BI 12c, which automatically infers connections between data sets.  Visualizing data is as easy as dragging attributes onto the screen, with optimal visualizations automatically displayed – no modeling or upfront configuration required.  Related data is automatically connected, so highlighting data in one visual highlights correlated data in every other visual, immediately showing patterns and revealing new insights.  These insights, along with narrative comments, can be shared as interactive visual stories, enabling seamless collaboration that drives fact-based decisions.
  5. More Advanced:  Predictive analysis is more tightly integrated, enabling customers to more easily forecast future conditions based on existing data points, group elements that are statistically similar, and expose outliers.  BI 12c includes the ability to run the free Oracle R distribution on BI Server, and extend existing analytics with custom R scripts, which can point to any engine (R, Oracle Database, Spark, etc.) without needing to change the BI RPD to deliver results.
  6. More Mobile:  Keyword search (“BI Ask”) empowers users to literally talk to their data, asking questions and having visualizations automatically created as responses, opening up an easy entry point for authoring.  Additionally, the interface for iOS has been completely redesigned; and Mobile BI for Android offers sharing and following for nearby devices, as well as the ability to project any dashboard or story to GoogleCast-enabled devices.
  7. Bigger Data:  BI 12c enables customers to use new data, from local, Oracle, and Big Data sources, including personal files uploaded by users; direct access to data in Hyperion Financial Management and Hyperion Planning applications; and ODBC access to Cloudera Impala.  Apache Spark will be accessible via native Spark SQL in an upcoming update.
  8. Higher ROI, Lower TCO:  Streamlined administration and life cycle management reduce the time and resources required to manage BI 12c, decreasing costs and increasing value for this and future releases.  Enhancements include separating metadata from configuration; simpler, more robust security; easier backup, restore, and disaster recovery; hot patching of metadata; and many more.
Viewing all 90 articles
Browse latest View live