Obiee 11.1.1.6.6 - analysis displays two dates instead of one prompted

Hi all,
my analysis somehow displays two dates instead of one prompted.
How can it be?
Tell me please what additional information should I include for you to help me.
obiee 11.1.1.6.6
Upd: prompt screenshots
http://marchello.ccx-grads.org/img/BI_prompt_001.png
http://marchello.ccx-grads.org/img/BI_prompt_002.png

This is from "Administration" -> "Manage Sessions" section of obiee
1) everything seems fine, WHERE clause shows correct date
SET VARIABLE QUERY_SRC_CD='Report',SAW_SRC_PATH='/shared/VB/8.RB-213.BI.1';SELECT
   0 s_0,
   "VB"."VBIREP8"."AASYSDATE" s_1,
   "VB"."VBIREP8"."ADAY" s_2,
   "VB"."VBIREP8"."AMONTH" s_3,
   "VB"."VBIREP8"."ARCDATE" s_4,
   "VB"."VBIREP8"."AYEAR" s_5,
   "VB"."VBIREP8"."CONTRAGENTID" s_6,
   "VB"."VBIREP8"."CONTRAGENTNAME" s_7,
   "VB"."VBIREP8"."CREDITS" s_8,
   "VB"."VBIREP8"."DEPOSITARY" s_9,
   "VB"."VBIREP8"."DEPOSITS" s_10,
   "VB"."VBIREP8"."IDENTIFYCODE" s_11,
   "VB"."VBIREP8"."OVERDAY30" s_12,
   "VB"."VBIREP8"."RESTRUCTURED" s_13,
   "VB"."VBIREP8"."SEGMENT" s_14,
   "VB"."VBIREP8"."STATUS" s_15,
   "VB"."VBIREP8"."TOBO" s_16
FROM "VB"
WHERE
(CAST("VBIREP8"."ARCDATE" AS DATE) = date '2013-08-15')
ORDER BY 1, 3 ASC NULLS LAST, 4 ASC NULLS LAST, 6 ASC NULLS LAST, 5 ASC NULLS LAST, 7 ASC NULLS LAST, 8 ASC NULLS LAST, 12 ASC NULLS LAST, 15 ASC NULLS LAST, 16 ASC NULLS LAST, 9 ASC NULLS LAST, 14 ASC NULLS LAST, 13 ASC NULLS LAST, 11 ASC NULLS LAST, 10 ASC NULLS LAST, 17 ASC NULLS LAST, 2 ASC NULLS LAST
FETCH FIRST 100000001 ROWS ONLY
2) and now attention, I press "next rows" arrow, my WHERE clause is simply ABSENT! 
SET VARIABLE QUERY_SRC_CD='Report',SAW_SRC_PATH='/shared/VB/8.RB-213.BI.1';SELECT
   0 s_0,
   "VB"."VBIREP8"."AASYSDATE" s_1,
   "VB"."VBIREP8"."ADAY" s_2,
   "VB"."VBIREP8"."AMONTH" s_3,
   "VB"."VBIREP8"."ARCDATE" s_4,
   "VB"."VBIREP8"."AYEAR" s_5,
   "VB"."VBIREP8"."CONTRAGENTID" s_6,
   "VB"."VBIREP8"."CONTRAGENTNAME" s_7,
   "VB"."VBIREP8"."CREDITS" s_8,
   "VB"."VBIREP8"."DEPOSITARY" s_9,
   "VB"."VBIREP8"."DEPOSITS" s_10,
   "VB"."VBIREP8"."IDENTIFYCODE" s_11,
   "VB"."VBIREP8"."OVERDAY30" s_12,
   "VB"."VBIREP8"."RESTRUCTURED" s_13,
   "VB"."VBIREP8"."SEGMENT" s_14,
   "VB"."VBIREP8"."STATUS" s_15,
   "VB"."VBIREP8"."TOBO" s_16
FROM "VB"
ORDER BY 1, 3 ASC NULLS LAST, 4 ASC NULLS LAST, 6 ASC NULLS LAST, 5 ASC NULLS LAST, 7 ASC NULLS LAST, 8 ASC NULLS LAST, 12 ASC NULLS LAST, 15 ASC NULLS LAST, 16 ASC NULLS LAST, 9 ASC NULLS LAST, 14 ASC NULLS LAST, 13 ASC NULLS LAST, 11 ASC NULLS LAST, 10 ASC NULLS LAST, 17 ASC NULLS LAST, 2 ASC NULLS LAST
FETCH FIRST 100000001 ROWS ONLY
Sure, I receive another date (01.02.2013). Just one thing is strange here - why do I receive only one extra date (I should receive ALL dates in Oracle table when I perform query without any WHERE clause).

Similar Messages

  • How to display two different parts of one image in two windows?

    hi everyone:) i need to display two different parts of one image in two windows. i have problem with displaying :/ because after creating windows there aren't any images :( i supose my initialization code of creating windows is incomplete, maybe i miss something or maybe there is some inconistency. graphics in java is not my strong position. complete code is below. can anybody help me?
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    import javax.swing.*;
    import java.util.*;
    class ImgFrame extends JFrame
           private BufferedImage img;
           ImgFrame(BufferedImage B_Img, int x, int y, int w, int h)
                   super("d");
                   img=new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
                   img=B_Img.getSubimage(x, y, w, h);
           }//end ImgFrame construction
           public void paint(Graphics g)
                   Graphics2D g2D = (Graphics2D)g;
                   g.drawImage(img, 8, 8, null);
           }//end paint method
           public Dimension getPrefferedSize()
                   if(img==null)
                           return(new Dimension(100,100));
                   else
                           return(new Dimension(img.getWidth(null),img.getHeight(null)));
           }//end of GetPrefferedSize method
    }//end ImgFrame class
    public class TestGraph2D_03 extends Component
           static BufferedImage IMG;
           public static void Load()
                   try
                           IMG=ImageIO.read(new File("c:/test.bmp"));
                   catch(IOException ioe)
                           System.out.println("an exception: "+ioe);
                   }//end try catch
           }//end TestGraph2D_03 construction
           public static void main(String[] args)
                   Load();
                   ImgFrame F1 = new ImgFrame(IMG, 0, 0, 8, 8);
                   ImgFrame F2 = new ImgFrame(IMG, 8, 8, 8, 8);
                   F1.addWindowListener(new WindowAdapter()
                           public void windowClosing(WindowEvent e)
                                   System.exit(0);
                   F1.pack();
                   F1.setVisible(true);
                   F2.addWindowListener(new WindowAdapter()
                           public void windowClosing(WindowEvent e)
                                   System.exit(0);
                   F2.pack();
                   F2.setVisible(true);
           }//end of main method in TestGraph2D_01 class
    }//end of TestGraph2D_03 class

    Never override the paint(...) method of a Swing component.
    If you have a sub image then add the image to a JLabel and add the label to the GUI. No need for custom painting.

  • OBIEE11g display two x- axis and one y- axis in the same report

    Hi All,
    Please help me in displaying the two x-axis in the chartview of Same Report.
    These two x-axis are having two different scales..
    Can we do it in OBIEE or not ? We can do this in Excel..
    Thanks in Advance
    Srinivas

    Srinivas,
    showing 2 X-axis is not at all possible in OBIEE, if you want to show 2 Y'axis then select 2 measures and convert them into combo (Bar-Line) chart. Also these 2 axis won't be visible in case of only Line chart or Bar chart.
    Regards,
    Jitendra

  • Display two main reports in one

    Post Author: BSong
    CA Forum: Crystal Reports
    I am try to display both Customer Invoice and Payment reports in one report for a chosen Customer.  Since neither Invoice nor Payment should be sub report, how do I combine them together in one report two sections? Is this possible? I am pretty new working with Crystal Report. Could anyone help me on this?
    Thanks,Bill

    Post Author: BSong
    CA Forum: Crystal Reports
    Thanks for your replay.
    But how do I link the two if they use two separate datasource? and each has its own prompt. Could you explain.
    Thanks,Bill

  • How to display mapviewer labels in two lines instead of one?

    Hi,
    I have been using the addJDBCTheme to display the map along with the labels as follows:
    mapviewer.addJDBCTheme("aaa","a", "SELECT geom, col1 || ':' || col2 label_value from table_name","GEOM","","styleName","label_value","T.ROAD NAME" ,false);
    So the label is displayed as col1Value:col2Value.
    Now I need to display the label as follows:
    col1Value
    col2Value
    I tried using this
    mapviewer.addJDBCTheme("aaa","a", "SELECT geom, col1 || chr(10) || col2 label_value from table_name","GEOM","","styleName","label_value","T.ROAD NAME" ,false);
    But it doesnt work. This displays col1Valuecol2Value
    So I tried using this:
    mapviewer.addJDBCTheme("aaa","a", "SELECT geom, col1 label_value from table_name UNION ALL SELECT geom, col2 label_value from table_name","GEOM","","styleName","label_value","T.ROAD NAME" ,false);
    This actually works. Meaning it displays the label in two lines. But the two lines are almost attached together, there is no space between them at all. It is sometimes very difficult to read.
    Would really appreciate any suggestions to resolve this issue.
    Is there any other solution to display a label in two lines? I tried changing the label style to set the line-height. But that does'nt work either.
    Lakshmi

    Multiline label aren't supported as yet.
    JayantDoes MapViewer 10.1.3 (the latest version for present) support it?

  • How to display two detail lines as one

    In a report I am working on I have a detail line that displays values from two tables.
    Table OR contains the date time stamp I need
    Table OB contains the rest of the information I need. 
    (These two tables are linked by a Set_Id field.) 
    Table OB contains different types of data depending on the OB_Id field. 
    If OB_Id = 1 then OB_fldA = weight. 
    If OB_Id = 2 then OB_fldB = appetite_flg. 
    Below I have tried to type up a sample of the report.  I have it grouped by the OR_DtTm.
    I would like to get the report to look like there is one line that contains both the weight and the appetite_flg and eliminate any lines that have weight info and no appetite_flg to go with it (like the 3rd one down with the time of 3:45:30). 
    How it currently looks:
    Date        Weight         Flg         OR_DtTm
    6/22/2010   64.8                    6/22/2010 3:44:31PM
    6/22/2010    0.0            N       6/22/2010 3:44:31PM
    6/22/2010   64.0                    6/22/2010 3:45:30PM
    8/3/2010    64.0                    8/3/2010 9:09:01AM
    8/3/2010                    Y       8/3/2010 9:09:01AM
    How I would like for it to look:
    Date         Weight         Flg         OR_DtTm
    6/22/2010    64.8            N        6/22/2010 3:44:31PM
    8/3/2010     64.0            Y        8/3/2010 9:09:01AM
    I hope this makes sense.  Any suggestions on how to do this?

    Hey Brian,
    Now that I have the Maximum formulas working on my Group Footer, I need to figure out how to supress when the MaxAppetiteFlg is not there.  In the Section Expert on the Group Footer I clicked the x+2 button and put this:
    {@MaxAppetiteFlg} = "" or {@MaxAppetiteFlg} = " "
    but it still does not suppress when nothing is in the MaxAppetiteFlg. I have tried single quotes and double quotes; I have tried checking for just null and for just space and as shown above for both.  Nothing suppresses the group footer when the MaxAppetiteFlg is blank/empty.  What actually goes into the formula?
    Ok, let me back up a little. I don't think this makes a difference but you never know.  I am going to explain the steps preceeding the creating of @MaxAppetiteFlg.  It's a little more complicated than I originally indicated (I removed the complexicity to hopefully make it easier to understand my original question).
    Originally I said:
    If OB_Id = 2 then OB_fldB = appetite_flg
    Actually it is
    OB_Id = 2 is part of the filter in the Select Expert.  Then I created a formula:
    DecreaseAppetiteInd =
         If {OB.Ob_fldB = 22474 then
              'N'
         Else If {OB.Ob_fldB = 22475 then
              'Y' ;
    Then MaxAppetiteFlg =
         Maximum ({@DecreasedAppetiteInd},{Ob_DtTm})
    So I don't know if that makes a difference in later checking MaxAppetiteFlg (but I didn't think it would make a difference whether I had changed the options on the group but it did).
    I hope all this makes sense and I haven't muddied the water too badly.
    I look forward to your response.

  • Displaying different data series on drilldown

    I have a bar/line combo chart which displays two data series in bar form and one in line form.
    What I want to be able to do is to only show the bars when drilling down and not the line data series.
    I haven't found a way to do this yet, can anyone help?

    Thanks for the reply.
    I had considered using navigation to go to another chart, but surely if I do this it will go to the same chart wherever I click on the chart, rather than actually drilling down to the next level in the dimension (and thus being different depending on which item I click on) as a normal drilldown should do, unless I have missed something in your explanation?

  • How to display two different hierarchical sequential lists in one o/p scree

    Hi Gurus,
    I have a requirement for displaying two hierarchical lists in one output screen. I have created my hierarchical sequential lists using
    function module : - 'REUSE_ALV_HIERSEQ_LIST_DISPLAY', but i dont know how to append my second hierarchical sequential list
    into this.
    Will it be easily possible through OO ABAP where i will have two containers at the screen and each container will display one hierarchical sequential list at the output screen. But i have no idea how to do this through OO ABAP.
    Please help...
    Thanks,
    Bhupender

    i want to display the records corresponding to the user details enterd
    in Text Fields in the same Frame by replacintg the previous display..1) Quit multi-posting.
    2) You where given an answer in your last posting on the topic.
    3) The code isn't formatted so don't expect us to read the code.

  • How to display two waveforms in one waveform chart?

    hellow!anyone can tell me how to display two waveform together in one waveform chart? thanks!

    Hello,
    An easy way to tell how to make multi-plot charts and graphs is to hold your mouse over the chart/graph terminal on the block diagram and make sure Context Help (Help >> Show Context Help) is enabled. This screen will tell you how to connect the indicator for a multiple-plot display.
    You might want to take a look at my attached screenshots of a working multi-plot chart.
    Hope this helps!
    Liz F
    National Instruments
    Attachments:
    Multi-plot_chart.bmp ‏902 KB

  • Combine two date ranges in calender display

    Using Apex 3.2, Oracle 10g, IE7
    I have a calender that displays two date ranges: one that does a total count of assets over a one year period and the other is a breakdown of what assets are scheduled to be in use. I would like to combine them into one display (total - in use). Any suggestions or ideas on combining the date ranges?
    code below * thank you Denes Kubicek *
    select 'a href="f?p=&APP_ID.:27:&SESSION.::NO::'||'P27_TYPE:'||category_name||'">'||('Count Avail: '||to_char(asset))||' /a asset , SYSDATE -1 + LEVEL
    FROM (SELECT (sysdate +365) - sysdate conn_level, count(a.id) asset, b.category_name FROM hd_asset_assets a, hd_asset_categories b WHERE a.category_id = :P23_SEARCH and a.category_id = b.id GROUP BY category_name)
    CONNECT BY LEVEL <= conn_level
    UNION ALL
    SELECT ('In Use: '||b.asset_name) asset , session_date FROM TABLE (SELECT return_table_fn () AS session_table_type FROM DUAL) left join (select asset_name, category_id from hd_asset_assets) b on UPPER(title) = UPPER(b.asset_name) where b.category_id = :P23_SEARCH
    Edited by: tread on Aug 4, 2009 1:29 PM
    Edited by: tread on Aug 4, 2009 1:29 PM

    Hi,
    You would probably have to simplify the existing statement and then wrap it within another select statement that does a GROUP BY over the date column:
    SELECT Datecolumn, AssetName, SUM(Total)-SUM(InUse) Available
    FROM (
    ...your existing select statements ensuring that both statements return the same number/names of columns...
    GROUP BY DateColumn, AssetNameAndy

  • Display Empty rows instead of 'No result message' in OBIEE 11.1.1.7.1

    Hi all,
    I need to display empty table instead of no results message. I am using OBIEE 11.1.1.7.1 .
    Reply ASAP.
    Thanks.

    Hi..
    You can do it..
    1.Please run the analysis which shows the data in IE
    2.Press F12 to see the source code for this page.
    3.Identify the code for that particular table
    That might look like that;;
    <COLGROUP>
    <COL style="DISPLAY: none" id=saw_216_7_1_0_Grp></COL></COLGROUP>
    <COLGROUP>
    <COL></COL></COLGROUP>
    <COLGROUP>
    <COL style="DISPLAY: none" id=saw_216_7_1_1_Grp></COL></COLGROUP>
    <COLGROUP>
    <COL></COL></COLGROUP>
    <COLGROUP>
    <COL style="DISPLAY: none" id=saw_216_7_1_2_Grp></COL></COLGROUP>
    <TBODY>
    <TR>
    <TD class="PTTCDC"> </TD>
    <TD class="PTTCC" cid="saw_216_7" s="-1" l="0" e="1" dc=" t">
    <TABLE style="VISIBILITY: hidden" id=saw_216_7_1_0 class="PT_HGHT" onmousedown="PTPSS(event, this); return false" border=0 cellSpacing=0 cellPadding=0 cid="saw_216_7" s="-1" l="0" e="1">
    <TBODY>
    <TR class="PT_HGHR" border="0">
    <TD class="PT_RHPHL"> </TD>
    <TD class="PT_RHPHC"> </TD>
    <TD class="PT_RHPHR"> </TD></TR>
    <TR style="DISPLAY: none" class="PT_HGHRL">
    <TD colSpan=3>CALENDAR_YEAR</TD></TR></TBODY></TABLE></TD>
    <TD class="PTTCDC PTNLB"> </TD>
    <TD class="PTTCC PTNLB">
    <TABLE style="WIDTH: 100%" border=0 cellSpacing=0 cellPadding=0>
    <TBODY>
    <TR style="WIDTH: 100%">
    <TD style="WIDTH: 100%; VERTICAL-ALIGN: bottom" cid="saw_216_7" s="-1" l="1" e="1">
    <TABLE style="VISIBILITY: hidden" id=saw_216_7_1_1 class="PT_HGHT" onmousedown="PTPSS(event, this); return false" border=0 cellSpacing=0 cellPadding=0 cid="saw_216_7" s="-1" l="1" e="1">
    <TBODY>
    <TR class="PT_HGHR" border="0">
    <TD class="PT_RHPHL"> </TD>
    <TD class="PT_RHPHC"> </TD>
    <TD class="PT_RHPHR"> </TD></TR>
    <TR style="DISPLAY: none" class="PT_HGHRL">
    <TD colSpan=3>AMOUNT_SOLD</TD></TR></TBODY></TABLE></TD>
    <TD style="WIDTH: 100%" cid="saw_216_7" s="-1" l="0" e="0"></TD></TR></TBODY></TABLE></TD>
    <TD class="PTTCDC PTNLB"> </TD></TR>
    <TR>
    <TD class="PTRHDC PTBT"> </TD>
    <TD id=hl_saw_216_7_1_0 class="PTCHC0" cid="saw_216_7" s="-1" l="0" e="1">
    <TABLE cellSpacing=0 cellPadding=0>
    <TBODY>
    <TR>
    <TD>CALENDAR_YEAR</TD>
    <TD><IMG class="PT_SI" title="Sort Ascending" onclick="PTSrtLyr(this, event)" border=0 src="res/s_blafp/viewui/pivot/sort_plc.png" f="t" si="t" oldSrc="http://pdudhane-d01:7001/analytics/res/s_blafp/viewui/pivot/sort_plc.png"></TD>
    <TD><IMG class="PT_SI" title="Sort Descending" onclick="PTSrtLyr(this, event)" border=0 src="res/s_blafp/viewui/pivot/sort_plc.png" f="f" si="t" oldSrc="http://pdudhane-d01:7001/analytics/res/s_blafp/viewui/pivot/sort_plc.png"></TD></TR></TBODY></TABLE></TD>
    <TD class="PTRHDC PTBT"> </TD>
    <TD id=hl_saw_216_7_1_1 class="PTCHC1 PTLC" cid="saw_216_7" s="-1" l="1" e="1">
    <TABLE cellSpacing=0 cellPadding=0>
    <TBODY>
    <TR>
    <TD>AMOUNT_SOLD</TD>
    <TD><IMG class="PT_SI" title="Sort Ascending" onclick="PTSrtLyr(this, event)" border=0 src="res/s_blafp/viewui/pivot/sort_plc.png" f="t" si="t" oldSrc=":7001/analytics/res/s_blafp/viewui/pivot/sort_plc.png"></TD>
    <TD><IMG class="PT_SI" title="Sort Descending" onclick="PTSrtLyr(this, event)" border=0 src="res/s_blafp/viewui/pivot/sort_plc.png" f="f" si="t" oldSrc="http://pd01:7001/analytics/res/s_blafp/viewui/pivot/sort_plc.png"></TD></TR></TBODY></TABLE></TD>
    <TD class="PTRHDC PTBT PTNLB PTLC"> </TD></TR>
    <TR>
    <TD class="PTRHDC"> </TD>
    <TD id=e_saw_216_7_1_0_0 class="TTHC OORT">0</TD>
    <TD class="PTRHDC"> </TD>
    <TD id=e_saw_216_7_1_1_0 class="TTHC PTLC OORT">0</TD>
    <TD class="PTRHDC PTNLB PTLC"> </TD>0</TR>
    <TR>
    <TD class="PTRHDC"> </TD>
    <TD id=e_saw_216_7_1_0_1 class="TTHC OORT">0</TD>
    <TD class="PTRHDC"> </TD>
    <TD id=e_saw_216_7_1_1_1 class="TTHC PTLC OORT">0</TD>
    <TD class="PTRHDC PTNLB PTLC"> </TD></TR>
    <TR>
    <TD class="PTRHDC"> </TD>
    <TD id=e_saw_216_7_1_0_2 class="TTHC OORT">0</TD>
    <TD class="PTRHDC"> </TD>
    <TD id=e_saw_216_7_1_1_2 class="TTHC PTLC OORT">0</TD>
    <TD class="PTRHDC PTNLB PTLC"> </TD></TR>
    <TR>
    <TD class="PTRHDC PTLR"> </TD>
    <TD id=e_saw_216_7_1_0_3 class="TTHC PTLR OORT">0</TD>
    <TD class="PTRHDC PTLR"> </TD>
    <TD id=e_saw_216_7_1_1_3 class="TTHC PTLR PTLC OORT">0</TD>
    <TD class="PTRHDC PTLR PTNLB PTLC"> </TD></TR></TBODY>
    4. Put 0 where it shows fact values
    5. Insert the code into the Edit analysis properties No result setting and custom messege..
    you can see the table and columns with 0 values for no data.
    Thanks,

  • OBIEE 11g - create dashboard with Answers Analyse and BI Publisher Repport

    Hi there,
    I have one question . I create dashboard in OBIEE 11g .In my dashboard have one analyse and one bip report .I create one prompt filter , that changes the both .But I wanted when i click in analysis and change it, this change is reflected in the Report . Is this possible?
    Thanks

    I am talking about object permissions in the catalog (eg. Folder permissions..). This is in addition to the permissions for the data source.
    You need to be able to view the folders from where you can select the analysis as a data source in the BI publisher report.
    Here is an excerpt from the Guide:
    For a role to access an object in the catalog, the role must be granted Read permissions on both the object and the folder in which the object resides. Permissions can be granted at the folder level and applied to all the objects and subfolders it contains, or applied to individual objects.
    To grant catalog permissions to a role:
    Navigate to the Catalog.
    Locate the folder or object on which you wish to grant permissions and click More. From the menu, select Permissions. Alternatively, you can select the folder and click Permissions in the Tasks region.
    Thanks,
    BIPuser

  • How to create Analysis from two different subject areas with diff models

    Hello,
    I have problem with create analysis from two different areas with two different models (Model Star and Snowflakes) build in BI Admin tools.
    First Model A = Subject Area A have one fact tables (with measures) and three dimensions tables (Model Star)
    Second Model B = Subject Area B have one fact table (no measures) and five dimensions tables (Model Snowflakes).
    I'm looking solutions how I can give good results. In this case I can't use UNION, INTERSECT etc., because this models haven't the same number column and data type?
    whether it is possible to do in OBIEE?
    Please help me
    Kind regard
    robix

    Hi
    One thing to understand is that if your are imagining having two Subject Areas (SAs) displayed and then dragging columns from each into your Request without any preparation, then no, that can't be done. You would need to do a join in the BMM layer and expose the column from the second Subject Area in the presentation layer.
    But if you indeed interested in UNION (or intersect) queries, then do this:
    Build your first query in the first SA in the usual manner. Note the number of columns and the data types of each column.
    Now at the bottom of the Criteria workspace, there is a button called "Combine with similar request." Click it.
    Select your second SA. You will note that the outlines of the columns in your first query appear. This is to remind you that the number of columns in this second query must be the same as in the first. It also shows the data type of each column for the same reason.
    Once you select your columns and your filters, click on result. (Oh, you will also need to decide what kind of combination you want -- click on the dropdown.) The result will be a new Request that has data from both SAs in the query and combined in the manner you select (union, intersect, etc.)
    That should give you a start.
    http://obiee101.blogspot.in/2010/08/obiee-combine-with-similar-request.html -- Read this link this is good one to understand with screen shots. -- OBIEE 10g
    http://oraclebiee11g.blogspot.in/2011/01/querying-across-multiple-subject-areas.html -- OBIEE 11g
    Award Points it is useful.
    Thanks
    satya

  • View the .rtf file not display the data in BI Publisher Enterprise.

    Hi,
    Platform: OBIEE 10g in NT XPsp2
    View the .rtf file not display the data in BI Publisher Enterprise.
    Step 1, I created Answer-request, create .rtf file with Word and add the request name, Add bar chart and table, preview PDF is working fine with data, Upload this template to Answers, View Template from Answer is working fine with data.
    Step 2, Answers – More Products > BI Publisher > My Folders > Create a new report > Edit > Data Model > New > Type: SQL Query > Data Source: Oracle BI EE > Query Builder > from SupplierSales assign Customer, Periods, Sales Facts (select Region, state, Year, Units Shipped) > Results > Save > Save
    Click Layouts > New > enter Name ….. > Click Layouts > borrows .rtf file in Manage T file > Upload > Save > Click View
    It is showing only the .rtf file without data. Why there is no data?
    Please guide me to solve this issue.
    Thanks,
    Jo

    Thanks for you reply,
    Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
    We dint face this kind of issue while developing other reports.
    So please let us know if you have any idea on why we are facing this issue.
    Regards,
    Maneesh

  • Bi Dashboards issue works properly some times and after not display pointers data and give un expected error and throw login window

    HI,
    I have toff situation where  we deployed bi dashboards in our site and it works some time and some times not,
    and some times it keep loading and throw a login window.
    works when
    we restart performance point service  and if not work
    we re create secure store service and generated new key and create new pps service application
    before that we stopped secure store and pps service  using c.a in application server
    we are using ssas for datasource to connect  from dashboard designer
    we have seperate server for ssas dbs
    seperate application server running: pps service and secure store service
    two web front ends:  one of running secure store
    1 Domain controller + central admin service running
    some times after 4 -5 hours bi dashboards works , we dashboards not display data and throw un expected errors,
    also when we try to connect using a dashboard designer from a seperate client machine in same domain ,we have same issue , we unable to connect to ssas datasource server, and if connect some times unable to deploy dashboards.
    we tried every thin icreased server time out values  in ssas server
    :\Program Files\Microsoft SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Config\msmdsrv.ini. in this location
    and in 
    c:\program files\common files\microsoft shared\web server extensions\14\webclients\ppsmonitoringServer\client.config
    maxStringContentLength="2147483647"
    maxNameTableCharCount="2147483647"
    maxBytesPerRead="2147483647"
    maxArrayLength="2147483647"
    maxDepth="2147483647" />
    even we have same issue
    is some thing happening when dashboards working some time and  after some time not 
    is a secure store crashing or its still request pending in IIS and not authenticating to data soruce why 
    below are the logs
    Here are the results of the log analysis :
    server wfe1 
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C PerformancePoint Service PerformancePoint Services 39 Critical A PerformancePoint service application call was aborted by the caller.  This may indicate the HttpRuntime executionTimeout for the Web Application
    is configured to a value smaller than the DataSourceQueryTimeout for the PerformancePoint Service Application. 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C PerformancePoint Service PerformancePoint Services ef8z Critical ‏‏حدث
    استثناء
    أثناء عرض
    عنصر ويب.
    قد تساعد
    معلومات التشخيص
    التالية في
    تحديد سبب
    هذه المشكلة:  Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.  ‏‏رمز
    خطأ "خدمات PerformancePoint"
    هو 20700. 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C SharePoint Foundation Runtime ba3q Medium Redirect to error.aspx?ErrorText=Request%20timed%20out%2E failed. Exception: System.Web.HttpException: The remote host closed the connection. The error code is 0x800704CD.    
    at System.Web.Hosting.IIS7WorkerRequest.RaiseCommunicationError(Int32 result, Boolean throwOnDisconnect)     at System.Web.Hosting.IIS7WorkerRequest.ExplicitFlush()     at System.Web.HttpResponse.Flush(Boolean finalFlush)    
    at System.Web.HttpResponse.End()     at Microsoft.SharePoint.Utilities.SPUtility.Redirect(String url, SPRedirectFlags flags, HttpContext context, String queryString) 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:47:32.69 w3wp.exe (0x2128) 0x2154 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 78c107cd-0d4b-46f5-8e1a-0d9b4ebc7b29
    09/01/2014 15:07:40.74 w3wp.exe (0x2128) 0x209C PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/28_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) abf0263d-7333-4e4f-9cd4-a3a4dcb700c0
    09/01/2014 15:13:25.92 w3wp.exe (0x2128) 0x18DC PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/218_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) b35bf864-54f4-43fa-88a8-44cdf938bfa2
    09/01/2014 15:11:10.87 w3wp.exe (0x2128) 0x1F88 PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Courts/Bic/Lists/PerformancePoint Content/4_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) 7cea0eb6-214f-4d7b-a6e7-97a0fe11c956
    09/01/2014 15:11:40.87 w3wp.exe (0x2128) 0x2150 PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/162_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) 4154222b-6ff0-4b64-81b8-d08501a19278
    server wfe 2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    In the Roiscan logs we get an error in regards to the English Language pack:
    Review Items
    ============
    Error:                       Product {90140000-1015-0409-1000-0000000FF1CE} - Microsoft SharePoint Foundation 2010 1033 Lang Pack:  has unexpected
    file state(s).
    adil

    chinnijagadeesh,
    You suck!
    Signed: The rest of the universe.
    ... and quit crossposting FFS... it really is quite annoying!

Maybe you are looking for