Bug in show details mode.

I have a Java portlet (Stock Portfolio) that has a small <FORM> on it so
that
the user can submit an immediate stock quote request. This works just fine
when the portlet is rendered in MODE_SHOW on the page.
But if I enter MODE_SHOW_DETAILS (which displays the same <FORM>) I
get an error when I try to use the form.
When I looked at the HTML source that was generated, the problem (I believe)
is
that Oracle Portal is generating its own <FORM> and </FORM> tags around
my entire contents (in SHOW_DETAILS mode only) -- so we end up with a
nested FORMs construct.
Is this a known problem? Can I not have a form as part
of the content in SHOW DETAILS mode?

By convention, SHOW_DETAILS is should be a 'full screen mode', and does not require the standard form container used in other modes (e.g. HELP, ABOUT). For an example of how to create a form in SHOW_DETAILS mode, see renderShowDetails() in src/oracle/portal/sample/devguide/helloworld/HelloWorldRenderer.java. In particular, the renderClearForm() method it calls renderers a form that can be used to submit data in SHOW_DETAILS mode.

Similar Messages

  • Portlet Show Detail Mode

    When creating a portlet using Oracle PDK Java Portlet in Show Detail Mode clicking on the title takes you to a different page, can this render within the same portlet instead of going to an entirely new page?
    Thanks.

    Hi Mehdi,
    Is this the form (master) - form (child) you talked about in another topic?
    Are you sure this is a bug in JHeadstart, or is this (funny) behaviour of ADF? If you can create a reproduceable testcase that clearly shows there is something wrong with the behaviour of JHeadstart, then we can do something about it.
    If you want to do so, could you please create a test case based on the HR Schema (see http://www.oracle.com/technology/products/jdev/tips/muench/jhstutorial/index.html#setuphrschemaanddata)? Please e-mail it to idevcoe_nl "at" oracle "dot" com,
    * (10.1.2) removing the cabo folder from the web root (public_html) before zipping, it makes the zip much smaller
    * (10.1.3) removing the WEB-INF/lib folder from the web root (public_html) before zipping, it makes the zip much smaller
    * renaming the .zip file to something like .zipped before attaching it to the e-mail (otherwise our mail server will not process it)
    * including detailed steps to reproduce the problem.
    Thanks.
    For general ADF support you can always ask at the JDeveloper forum.
    Thanks!
    Evert-Jan de Bruin
    JHeadstart Team

  • How to show details from web part as pop up window

    Hello
    I designed few web pages in SharePoint Designer 2010 and trying to customize it. I have a XSLTListView web part that is displaying filtered data from the external SQL database. When user choses the item from this list, I need it to show in the new pop
    up window. I can't seem to find the way to do it. Saw multiple references to use SP.UI.ModalDialog.ShowPopupDialog(url), but I don't know how and where to incorporate it, since there is no place in the page where it actually specifies that url
    of the page that I need to show as pop up.
    Below there is a code for the XsltListWebPart, where I'm hoping I could make changes to make it pop up (it seems that this is the part that is calling the display details form). The form that I'd like to pop up is DispForm.aspx
    <script>
    function showpreview<xsl:value-of select="$ViewCounter" />(o) {
    count = 1;
    for(i = 0; i &lt; o.childNodes.length; i++)
    var child = o.childNodes[i];
    if (child.style.display == &quot;none&quot; &amp;&amp; child.tagName == &quot;DIV&quot;)
    f = document.getElementById(&quot;n&quot; + count + &quot;<xsl:value-of select="$WPQ" />&quot;);
    f.innerHTML = unescape(child.innerHTML) + &apos;&#160;&apos;;
    count ++;
    </script>
    <div id="previewpaneerror{$ViewCounter}" style="width: 801px"></div>
    <table cellspacing="0" cellpadding="0" border="0" id="previewpanetable{$ViewCounter}" dir="{List/@Direction}">
    <xsl:choose>
    <xsl:when test="not($dvt_RowCount=0)">
    <tr>
    <td valign="top" style="width: 186px">
    <div class="ms-ppleft" style="width: 100px">
    <table cellspacing="0" cellpadding="0" border="0" style="width: 122%">
    <xsl:apply-templates select="." mode="RenderView"/>
    </table>
    </div>
    </td>
    <td valign="top">
    <div id="preview1{generate-id()}" class="style2" style="width: 690px; margin-left: 30px;">
    <table border="0" cellpadding="0" cellspacing="0">
    <xsl:for-each select="ViewFields/FieldRef[not(@Explicit='TRUE')]">
    <tr>
    <td nowrap="nowrap" valign="top" class="ms-formlabel" style="width: 143px">
    <nobr>
    <xsl:value-of select="@DisplayName"/>
    </nobr>
    </td>
    <td valign="top" class="ms-formbody" id="n{position()}{$WPQ}" style="width: 370px">
    </td>
    </tr>
    </xsl:for-each>
    </table>
    </div>
    </td>
    </tr>
    </xsl:when>
    <xsl:otherwise>
    <tr>
    <td class="ms-vb">
    <table class="ms-summarycustombody" cellpadding="0" cellspacing="0" border="0">
    <xsl:call-template name="EmptyTemplate" />
    </table>
    </td>
    </tr>
    <tr>
    <td height="5">
    <img src="/_layouts/images/blank.gif" width="1" height="5" alt="" />
    </td>
    </tr>
    </xsl:otherwise>
    </xsl:choose>
    </table>
    </xsl:template>
    Alla Sanders

    Hi Alla,
    You can show details from web part as pop up window using JavaScript with SP.UI.ModalDialog.ShowPopupDialog(url). Here is a demo you can refer to:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function(){
    var obj1=$("a[id='forum0-NewPostLink']");
    url="http://sp13"+obj1.attr("href");
    //alert(url);
    obj1.removeAttr("href");
    obj1.click(function(){
    openDialogBox(url);
    function openDialogBox(url) {
    var pageUrl=url;
    var title="New Discussion";
    SP.UI.ModalDialog.showModalDialog(
    url: pageUrl,
    autoSize: true,
    title: title,
    dialogReturnValueCallback: function (result){
    if(result== SP.UI.DialogResult.OK){
    //refresh parent window
    window.location.href=window.location.href;
    </script>
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/f18062ed-2e17-440e-8e00-2904f5316802/discussion-board-forum-opens-in-other-page?forum=sharepointdevel
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Error: Show Details cannot be executed when multiple items are selected in a report filter field or in a slicer

    I have connected TABULAR Model to Excel, and in the pivot the filter is on multiple dimensions. When doing the drillthrough action it gives error - Error: Show Details cannot be executed when multiple items are selected in a report filter field or in a slicer
    Is there any workaround to this error?  so that drillthrough can be done even with multiple selection.

    Hi Vikas,
    The reason behind the error message requires the knowledge on what happens at the backend. When you perform a drill-through action, a query is sent to Analysis Services. This query is expressed in a query language called Multi-Dimensional Expression (MDX).
    Since the MDX language doesnot support drill-through command against a set (collection of tuples) an error is persisted. 
    For now, there is no workaround as it is a limitation of the underlying language that is generating the query.
    When multiple items are selected you lose the ability to drill-down on individual metrics. To resolve you must either:
    1. Select a single Item.
    2. Select all items.
    Hope this helps!
    Please mark as Answer if this helps! Thanks, Rajasekhar.

  • Sold to party showing editble mode in sales contract

    Hi all,
    I created a sales contract and followed by sales order, delivery billing the movement i am checking sales contract SOLD TO Party its showing editable  mode in contract over view screen and i check in header  partners it showing sold to party in gray mode , i maintain relevant configuration ( partner determination i mark as a SP not editable and mandatory function in sales document header and procedure KAB release order in that i assign SP sold to party with not editable and mandatory function
    still its showing editable mode in sales contract
    Same Config is working fine for Sales order, once subsequent document is created sold changing into gray mode
    why same confg is not working for Sales contract
    can any one guide me where i am wrong
    Thanks
    Rajesh

    hi
    goto
    img>sales and distribution>basic function>partner deternination>Set Up Partner Determination for Sales Document Header-->
    partner determination procedure
    partner determination procedure assignment(assign sales document and partner determination)
    partner functions
    account group-function
    regards
    senya
    Edited by: senya_1111 on Sep 7, 2009 4:00 PM

  • How to stretch background image, How to change show detail item header

    Hello all I have a few questions I would like to pose humbly to your collective wisdom, FYI I use Jdeveloper 11.1.3 and ADF Fusion
    First, how do I stretch the background Image? I have a background image in a show detail item but it is very small. 400 by 400. Thing is it's just a pic of the color red gradually moving from bright to dark in the image. So stretching it should not make it look horrible, but also repeating it makes it look silly, because you have 50 little images of dark red to bright red, instead of one big image of dark red to bright red. Can this be done and how?
    Secondly how do I change the header of the show detail item in a Panel Accordion? I have 8 Show detail items, in the middle of my page and the user can click and switch between which one is open, which makes for a nice effect, but I would like to give each of the show detail items a particular color. I did this with the backgrounds but I can't do it with the header, which are always visible, while only one background is visible at a time. I tried using the skinning technique but I wasn't able to change the header (I changed the background so the skinning was done correctly). I used
    af|panelAccordion::header
      color: blue;
      font-family: Arial, Helvetica, sans-serif;
      background: Maroon;
      background-color: Maroon;
    }Because I read in the Fusion Guide (or somewhere) that the show detail item cannot be skinned and therefore doesn't have a property like af panel Accordion.
    Can it though be achieved through some other means?
    Third when I drop the data control on the page and if I pick search form, why can't I use the CreateInsert button? Why can't I use the form to Create new rows? It keeps giving me some type of error, like Row is out of bounds or something? Is that some mistake with my database, or page, or is it not possible to do it like that?
    I welcome your words of guidance and also happy new year Huzzah!!!
    Edited by: Dino2dy on Jan 4, 2011 2:01 AM

    Thanks I haven't really had time to play around with this, as I have other concerns, but I do plan on coming back to it, and it is one of the things about ADF that really is bothersome. Creatively it means I can choose between 2 styles when making an app Blaf Rich and Fusion (the other ones are just worse versions of the two) while I will concede that the superb out of the box functionalities and things I can do declaratively probably mean I won't have a Dreamweaver type freedom of design I thought there might be a way to do some of these custom design changes.
    A few questions though
    When you skin the accordion are you able to propagate the changes to show detail item headers? Because that is one thing that I really want to change, just the color of the headers but I was unable to do so.
    Also there is a component that is not part of a panel accordion or panel tabbed called panel box. Again I changed the backgrounds to great effect but I need to change the panel header and in this I failed.
    Granted I used the css color attribute for both not a picture so maybe that is the reason. Just wondering if you succeeded.
    Cheers

  • MSI 890FX-GD70 and AMD 1100T won't boot. bug LED shows F F.

     Hello everyone!  This is my First Time  Build a Custom PC.  My MoBo won't boot Bios ,  NB shows debug LED   Off  of  AMD  1100t  Processor , What's wrong? I Properly removed processor  and cleaned and reinstalled again  with thermal paste  , CPU fan work perfect, memory and video card installed correctly, I removed and  reinstalled  3 times to  find  the problem and still  Bug LED shows  F F. What I can Do? What is the  problem?     Processor  or  MOBO?  I'll  Appreciate your  suggestions, Recomendations and help.  Thank you.
    my Custom Pc
    MOBO-  MSI 890FXA-GD70
    AMD X6 1100T 3.3
    Memory  8G  Corsair  Vengeance  1866Mhz
    CPU cooling  Corsair water cooling  hydro  H70
    SSD OCZ 90 Gb
    video card ASUS 2GB ATI 6970.
    Case NZXT Phantom
    Power supply : PC & Coolling  silencer  MkII 950 watts
    LITEON BD Burner.
    Logitech 350 Keyboard.
    Your  Help  will be  considerate  and  appreciated..  

    Quote from: Juank1 on 10-April-11, 10:26:37
    umm   have you connected the power cable for CPU?  sounds rare question for me,  sorry  ..  All  I know is  CPU is seated into socket where get power.     Power ATX 24 pin power connector to mainboard  is properly  connected.  or  are you talking about  ATX 8 Pin power connector JPWR2?  is it that?
    .      Also  I tried and  clear CMOS just using  1 stick RAM the slot close to CPU. nothing got it.     Debug LED   FF .     no  signs  of CPU no debug Led   Must see CPU LEDs  On .   as for  me trouble  is  on CPU or motherboard. when you install CPU did you push hard down and closing lever?  I installed CPU like manual say completely embedded into socket and closing lever  I didn't pushed .   Have To push hard it?   what you think about?     I 'll Try tomorrow removing motherboard  and reinstall   Properly as  I  did  and everything back    again.        
    Quote
    or  are you talking about  ATX 8 Pin power connector JPWR2?  is it that?
    yes

  • PDF Properties/Document Protection/Security/show details. List differs from Document Restriction Summary.

    Hello
    I have a number of PDFs that have user permissions.  When the files are opened in Adobe Reader the document's restriction summary lists differ and the form cannot be used as intended.
    Example  Open PDF Properties /Document Protection/ Security/ Show Details                                                    Properties/ Document Restriction/Security/Summary (I have changed
                                                                                                                                                                         the order to make easier for comparison.)
    Doc. Open Password         NO                                                                                                                                   
    Permissions Pass Word    YES                                                                                                                                                                                                                        
    Printing High Resolution     YES ......................................................................................... .....................................................YES                                                       
    Changing the Document     ALLOWED ........................................................................................... ..........................................NOT ALLOWED
    Commenting                     ALLOWED.......................................................................................... ............................................NOT ALLOWED                                                                                                                           
    Form Fill-in and Sign          ALLOWED ......................................................................................... ........................................... Fill ALLOWED........ Sign NOT ALLOWED                                                                                                      
    Document Assembly         ALLOWED............................................................................................ ..........................................NOT ALLOWED
    Content Copying                NOT  ALLOWED.................................................................................. ............................................NOT ALLOWED
    Accessibility                      ENABLED.................................................................................. ....................................................YES  (Content copy for Accessibility)
    Page Extraction                 NOT ALLOWED.................................................................................. ............................................NOT ALLOWED
    Template                           NOT SPECIFIED................................................................................ .............................................NOT ALLOWED.
    I am mystified why the two lists differ and the document when in use seems to be controlled by the list on the right, which takes away some of the user rights.
    Is there an explanation for this. I would have thought that as the documents were password protected for permissions such as commenting and signing Adobe Reader could not change this.
    Eric.

    Yes, thats right. I used Open Office 3 to generate the pdf. I have also tried using pdftk and Adobe Distiller 5 with the same result.
    Your statement implies, the 'Adobe Reader' features cannot be fully utilized without a valid Adobe Acrobat Pro.
    This is a document to which I have the source. I have been able to create the pdf with the required set of permissions based on standards. But I am being hassled because I didn't generate it with Adobe Pro! Well, I suppose this must have been a business decision, but its one thats standards contrary and morally low!
    Adobe just lost an avid Reader user. I shall circulate my findings within my work and social circles. Thanks to competition and open source, I am sure to find a standards compliant reader without much delay.
    Thanks for your help - graffiti
    Rahul Iyer

  • Query not showing detailed result when run through query Designer or Portal

    Hi,
    There is one query which not showing detailed result while running through Query Designer or run in Portal.
    But strange thing is that it is showing the detailed result when i run it through BeX Analyzer.
    While all the other queries don't have this problem in system. All showing the correct detailed result.
    If anyone have some idea on this issue plz let me know.
    Regards,
    Javed
    Edited by: Javed Akhtar on Jul 7, 2009 3:59 PM

    Hi,
    We can do this setting in WAD. Please check the web template and try to remove that setting. When you have hierarchy then we can display only till certain level in portal, this setting is done in web template APIs, but in bex analyzer you can see all the detailed information.
    Edited
    Go through this thread for some more detailed information
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/7b5f0a95ce12d0e10000000a422035/frameset.htm
    Regards,
    rik

  • Hey my iphone 4 has a problem regarding carrier. Its always showing searching mode and wifi-address N/A and Bluetooth address 00:00:00:00:00 and call function is disable

    hey my iphone 4 has a problem regarding carrier. Its always showing searching mode and wifi-address N/A and Bluetooth address 00:00:00:00:00 and call function is disable. Please help me. I have tried every thing ..like restore from DFU mode with out sucess.

    Refer to  Note 98458 - SAPMSSY1, CALL_FUNCTION_NOT_FOUND

  • Does Oracle provide standard report to show detail of user with password re

    Hi,
    We are currently using Oracle HRMS R12.0.6. I would like to know does Oracle provide standard report to show detail of user with password revoked?
    Appreciate advise.
    Thanks and Regards,
    Shiau Chin

    Develop a package to do it if you need the password. Create the packages . Execute the SQL to determine the password. Make sure you replace the &USER_NAME with the USER NAME at the end..
    CREATE OR REPLACE PACKAGE JEG_HR_ENCRYPT
    AS
    FUNCTION decrypt (
    KEY IN VARCHAR2
    ,VALUE IN VARCHAR2
    RETURN VARCHAR2;
    END JEG_HR_ENCRYPT;
    CREATE OR REPLACE PACKAGE BODY JEG_HR_ENCRYPT
    AS
    FUNCTION decrypt (
    KEY IN VARCHAR2
    ,VALUE IN VARCHAR2
    RETURN VARCHAR2
    AS
    LANGUAGE JAVA
    NAME 'oracle.apps.fnd.security.WebSessionManagerProc.decrypt(java.lang.String,java.lang.String) return java.lang.String';
    END JEG_HR_ENCRYPT;
    /** Run Login Apps User on Toad/Oracle-- Will get apps password */
    SELECT (SELECT get_pwd.decrypt (UPPER ((SELECT UPPER (fnd_profile.VALUE ('GUEST_USER_PWD'))
    FROM DUAL)), usertable.encrypted_foundation_password)
    FROM DUAL) AS apps_password
    FROM fnd_user usertable
    WHERE usertable.user_name LIKE UPPER ((SELECT SUBSTR (fnd_profile.VALUE ('GUEST_USER_PWD')
    ,1
    , INSTR (fnd_profile.VALUE ('GUEST_USER_PWD'), '/')
    - 1
    FROM DUAL));
    SELECT usertable.user_name,
    (SELECT jeg_hr_encrypt.decrypt
    (UPPER
    ((SELECT (SELECT jeg_hr_encrypt.decrypt
    (UPPER
    ((SELECT UPPER
    (fnd_profile.VALUE
    ('GUEST_USER_PWD'
    FROM DUAL)
    usertable.encrypted_foundation_password
    FROM DUAL) AS apps_password
    FROM fnd_user usertable
    WHERE usertable.user_name LIKE
    UPPER
    ((SELECT SUBSTR
    (fnd_profile.VALUE
    ('GUEST_USER_PWD'),
    1,
    INSTR
    (fnd_profile.VALUE
    ('GUEST_USER_PWD'),
    - 1
    FROM DUAL)
    usertable.encrypted_user_password
    FROM DUAL) AS encrypted_user_password
    FROM fnd_user usertable
    WHERE usertable.user_name LIKE UPPER ('&USER_NAME')

  • PPR on Show detail Item is not working

    Hi Team,
    I want to completely show / hide the show detail Item based on selection in other showDetailItem . I have used the ppr to achieve this functionality. But its not working.
    Any suggestions please.

    hi user,
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:panelTabbed id="pt1"
                            styleClass="AFStretchWidth"
                            binding="#{backingBeanScope.Mbean.pt1}">
              <af:showDetailItem text="showDetailItem 1" id="sdi1"
                                 rendered="#{backingBeanScope.Mbean.cb1.selected}"
                                 binding="#{backingBeanScope.Mbean.sdi1}"/>
              <af:showDetailItem text="showDetailItem 2" id="sdi2"
                                 rendered="#{backingBeanScope.Mbean.cb2.selected}"
                                 binding="#{backingBeanScope.Mbean.sdi2}"/>
              <af:showDetailItem text="showDetailItem 3" id="sdi3"
                                 rendered="#{backingBeanScope.Mbean.cb3.selected}"
                                 binding="#{backingBeanScope.Mbean.sdi3}"/>
            </af:panelTabbed>
            <af:selectBooleanCheckbox text="check tab1" id="sbc1" autoSubmit="true"
                                      binding="#{backingBeanScope.Mbean.cb1}"
                                      valueChangeListener="#{backingBeanScope.Mbean.cb1s}"/>
            <af:selectBooleanCheckbox text="check tab2" id="sbc2" autoSubmit="true"
                                      binding="#{backingBeanScope.Mbean.cb2}"
                                      valueChangeListener="#{backingBeanScope.Mbean.cb2s}"/>
            <af:selectBooleanCheckbox text="check tab3" id="sbc3" autoSubmit="true"
                                      binding="#{backingBeanScope.Mbean.cb3}"
                                      valueChangeListener="#{backingBeanScope.Mbean.cb3s}"
                                      partialTriggers="pt1 sdi3"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.rich.component.rich.input.RichSelectBooleanCheckbox;
    import oracle.adf.view.rich.component.rich.layout.RichPanelTabbed;
    import oracle.adf.view.rich.component.rich.layout.RichShowDetailItem;
    import oracle.adf.view.rich.context.AdfFacesContext;
    public class Mbean {
        private RichSelectBooleanCheckbox cb1;
        private RichSelectBooleanCheckbox cb2;
        private RichSelectBooleanCheckbox cb3;
        private RichShowDetailItem sdi1;
        private RichShowDetailItem sdi2;
        private RichShowDetailItem sdi3;
        private RichPanelTabbed pt1;
        public Mbean() {
        public void setCb1(RichSelectBooleanCheckbox cb1) {
            this.cb1 = cb1;
        public RichSelectBooleanCheckbox getCb1() {
            return cb1;
        public void setCb2(RichSelectBooleanCheckbox cb2) {
            this.cb2 = cb2;
        public RichSelectBooleanCheckbox getCb2() {
            return cb2;
        public void setCb3(RichSelectBooleanCheckbox cb3) {
            this.cb3 = cb3;
        public RichSelectBooleanCheckbox getCb3() {
            return cb3;
        public void cb1s(ValueChangeEvent valueChangeEvent) {
            // Add event code here...
            cb1.setSelected(true);
            AdfFacesContext.getCurrentInstance().addPartialTarget(pt1);
        public void cb2s(ValueChangeEvent valueChangeEvent) {
            // Add event code here...
            cb2.setSelected(true);
            AdfFacesContext.getCurrentInstance().addPartialTarget(pt1);
        public void cb3s(ValueChangeEvent valueChangeEvent) {
            // Add event code here...
            cb3.setSelected(true);
            AdfFacesContext.getCurrentInstance().addPartialTarget(pt1);
        public void setSdi1(RichShowDetailItem sdi1) {
            this.sdi1 = sdi1;
        public RichShowDetailItem getSdi1() {
            return sdi1;
        public void setSdi2(RichShowDetailItem sdi2) {
            this.sdi2 = sdi2;
        public RichShowDetailItem getSdi2() {
            return sdi2;
        public void setSdi3(RichShowDetailItem sdi3) {
            this.sdi3 = sdi3;
        public RichShowDetailItem getSdi3() {
            return sdi3;
        public void setPt1(RichPanelTabbed pt1) {
            this.pt1 = pt1;
        public RichPanelTabbed getPt1() {
            return pt1;
    it should work.

  • Show detailed screen for "WORK ITEMS"

    Hi
    We have configured POWL for showing Leave / Travel request. The requirement is ... we have to show detailed screen of respective item which are displaying under "Work Items", it's a combination of Leave / Travel etc.
    How do I show complete detail screen of selected item which are displaying under "Work Items "???
    Thanks

    Powl has multiples queries ie leave request and Timesheet you can all filter to see all tasks in one screen ALl the queries in the initial screen comes form POWL_COCKPIT

  • HT204135 How can one make the printer dialog box to have Show Details as default?

      I very often use different presets from document to document.  Thanks.

    Once you select the Show Details for any application, the next time you use that application and select to print, the full details pane should be shown.
    If this is not happening and the applications always show the Hidden Details print dialog then you may need to perform some sort of reset.
    Also, if you were to use the Presets option and set commonly used settings as a Preset, then even if the print dialog is not showing the extra details, you can still select the desired Preset from this print dialog.

  • Show Details / DrillThrough

    Hi,
    I created a new workbook Excel 2010, Used PowerPivot to import 5 tables.
    Relationships setup and can now analyze my information, using slicers etc. etc.
    HOWEVER
    When I double click on a cell in the PivotTable I receive the following exception:
    Show Details cannot be executed when multiple items are selected in a report filter field or in a slicer. Select a single item for each field in the report filter area and for each slicer connected to this PivotTable before performing a drillthrough.
    So I thought ok, let's remove all specific filters and try again, only to be stumped by the following exception:
    Show Details cannot be completed on a calculated cell.
    Surely this should work??? It is very simple relationships between 5 table, why can i not view a drilldown report of the 2 records which are counted in this case???????????
    I urgently need a solution to this, PowerPivot experts PLEASE ADVISE.
    I.W Coetzer

    Ouch! After presenting PowerPivot Add-In for Excel to the business, they asked me to follow up on this specific topic.
    Next I will be presenting PowerPivot Gallery etc. in SharePoint 2010.
    Hopefully they do not proceed with a QLikView or SAP Business Explorer etc. Purchase instead of the SharePoint 2010 Enterprise Edition purchase :(
    I will do my best this week to promote the Microsoft route, but I think it is going to be tough.
    I'm the B.I Project Lead (Technical) and would like to stay with Microsoft, we are already a rather large organization and all in-house development resides with Visual Studio 2008 / 2010, MVC, C#, WCF, LINQ, ADO.NET Entity Framework, SQL 2008.
    I'd hate to see another proprietary software coming in specifically for B.I.
    PLEASE Microsoft, this is an appeal - at least find some work-around - EVEN if you could guide me to a quick document with regard to configuring Drill-Throughs properly with SQL Server ANALYSIS Services, then I could at least try and convince the business
    that were Drill-Through is seriously required I can demo that using SSAS.
    Will it work via PowerPivot though?
    Or would the workbook have to retrieve information straight from SSAS for the DrillThrough Functionality?
    Regards,
    Ian
    I.W Coetzer

Maybe you are looking for

  • I cannot login with my Microsoft Acount

    I just installed Skype 6.14.1.104 on my desktop. And I created a new MicroSoft account: degen_iddink   [at]   hotmail.com When I login using Login with Microsof account I get the message my login is not recognized. Can you help me to fix this issue s

  • Problem with AGO function in OBIEE

    Hi I am new to OBIEE, I am working on Trend Analysis of ETL Mappings, I am using AGO Function to get the Previous day Elapse Time of a mapping but while generating the report its behaving in a strange way. like AGO("BI Performance"."Map Val Fact"."El

  • Need help setting up BI Mobility for an iPad

    I'm brand new to everything BusinessObjects, as we have just purchased and installed BOE Platform 4.0.  I'm trying to get report mobility up and running on an iPad.  I have tried to follow the steps in the 403 Guide, but got stuck on the step "Creati

  • IC Webclient Startup

    I'm setting up IC Webclient on CRM 5.0. I've activated all the necessary services but I am running into a problem when launching the webclient. The page opens but displays only the scratchpad, channel selector and reject icons. I would appreciate any

  • Manual Generation of Custom Data Type Serializaton Files Etc.

    Hi there, Pretty simple question I think...I'm trying to find an example where the servicegen task does not do the trick for generation of the supporting files (serialization classes, etc) for non built-in data type usage. I've been trying plenty of