What is Announcement: Core I7 950 Show Details ?

Just above the body of this sub-forum is an oddity... how did someone make a posting that shows there?
Click the Show Details and you'll see what I mean
Announcement: Core I7 950 Show Details

Thanks for the heads up.  Fixed.
-Jeff

Similar Messages

  • What is the use of creating a detail object on a measure.

    Hi Experts,
    In BI 4.X business layer, we can create a detail object of a dimension and as well as measure.
    Can you please let me know what could be the use of the detail object of a measure object?
    In the business layer, it is showing like this...
    <Measure object>
    -><Detail Object>
    Dimensions have attributes, we create those attributes as details objects.
    when we want to see the different grains of the measure in one report. we will use these details objects.
    Example:
    1. Query 1 returns country, sales revenue
    2. Query 2 Returns Country,State,Sales revenue.
    But in the report if we want to show the State wise Revenue. It is not possible bcz both the quires are returning different grain.
    state object is incompatible object, so you can't drag the object into report.
    in this scenario we will merge the Country dimension , create the state object as details with merged dimension, then you can drag the state details detail object.
    this will give expected results Country and State wise revenue.
    Normally Dimensions and details objects will drives the measures values in report.
    So, Detail object on measure not helpful in case of relational database(Please correct me if i am wrong). It is useful only for OLAP database because when I have created a webi report on top of BEx query then it is automatically created a detail object on measure object.
    As far I know, 'Measure attribute' introduced for OLAP based business layer. which can provides information for the formatted value like unit, currency or value.
    For example:-
    Amount is key figure in BEx query and when I have created Webi report on top of that then it will create three object.
    1. Amount as meausre.
    ->2. Amount currency(detail).
    ->3. Amount formatted value(detail).
    Below is the output after running the report.
    Amount || Amount currency || Amount formatted value
    30 || $ || 30.00
    8 || $ || 8.00
    I have found one difference, We can't implement the index awareness on detail object which we have created on measure object although we can implement the index awareness on detail object which we have created on top dimension object.
    But Still I am looking for good example of Detail object on measure object..
    Any thought would be welcome...
    Thanks,
    Sachin

    I moved this to the Semantic Layer space for faster response.

  • 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.

  • How can i show details in ALV GRID with double click in a row?

    Hello, ich try to show the details of a row with double click in the line,
    but it doesn't work!?
    I have a eventhandler for doubleclick and the program run this code, but what i have to do, to show the details!?
    I try it with some methods like cl_gui_cfw=>set_new_ok_code, ...
    i think about the methods cl_gui_alv_grid->show_detail, but this method is private,
    i can create a class with inheritance of the cl_gui_alv_grid class and try this method!?
    Have anybody any ideas!?

    Hello Lars
    The following sample reports shows an ALV list with company codes. Double-clicking on any company code will open a second ALV list displaying all customers.
    *& Report  ZUS_SDN_ALVGRID_EVENTS_1
    REPORT  zus_sdn_alvgrid_events_1.
    DATA:
      gd_okcode        TYPE ui_func,
      gt_fcat          TYPE lvc_t_fcat,
      go_docking       TYPE REF TO cl_gui_docking_container,
      go_docking2      TYPE REF TO cl_gui_docking_container,
      go_grid1         TYPE REF TO cl_gui_alv_grid,
      go_grid2         TYPE REF TO cl_gui_alv_grid.
    DATA:
      gt_t001          TYPE STANDARD TABLE OF t001,
      gt_knb1          TYPE STANDARD TABLE OF knb1.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
            IMPORTING
              e_row
              e_column
              es_row_no
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *   define local data
        DATA:
          ls_t001     TYPE t001,
          ls_col_id   TYPE lvc_s_col.
        CHECK ( sender = go_grid1 ).
        READ TABLE gt_t001 INTO ls_t001 INDEX e_row-index.
        CHECK ( ls_t001-bukrs IS NOT INITIAL ).
        SELECT * FROM knb1 INTO TABLE gt_knb1
          WHERE bukrs = ls_t001-bukrs.
        IF ( syst-subrc NE 0 ).
          MESSAGE 'No customers found' TYPE 'S'.
        ELSE.
    *     Trigger PAI of dynpro '0100' and set new ok-code
          CALL METHOD cl_gui_cfw=>set_new_ok_code( 'CALL_SCREEN_0200' ).
        ENDIF.
      ENDMETHOD.                    "handle_hotspot_click
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT * FROM t001 INTO TABLE gt_t001.
      REFRESH: gt_knb1.
    * Create docking container
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CREATE OBJECT go_docking2
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Create ALV grid
      CREATE OBJECT go_grid1
        EXPORTING
          i_parent          = go_docking
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CREATE OBJECT go_grid2
        EXPORTING
          i_parent          = go_docking2
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_double_click FOR go_grid1.
    * Display data
      CALL METHOD go_grid1->set_table_for_first_display
        EXPORTING
          i_structure_name = 'T001'
        CHANGING
          it_outtab        = gt_t001
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL METHOD go_grid2->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNB1'
        CHANGING
          it_outtab        = gt_knb1
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Link the docking container to the target dynpro
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL METHOD go_docking2->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0200'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * ok-code field = GD_OKCODE
      CALL SCREEN '0100'.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK' OR
             'END'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
        WHEN 'CALL_SCREEN_0200'.
          go_grid2->refresh_table_display( ).  " necessary
          CALL SCREEN '0200'.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Regards
      Uwe

  • New computer core I7 950

    Hi!
    I am just going to config. a new computer for editing HD and AVCHD videos. I bought a new videocamera, a Canon Legria HF 200 recently, and it`s not possible to edit HD and AVCHD on my old computers. I am planning to run Win.7 64 bit and Prem.El.8+Photoshop El.8. Is there anyone that can tell me if this is a good config. for my purpose? I also have some qustions
    about setting up my 4 Samsung Spinpoints. I have tried to read as much as possible but my english is not so good and I am just an computeramateur so there are som things I don`t understand. Sometimes people says "editing" and sometimes they say "rendering", is this the same? Then I don`t know if I should use Raid or singel disks. If Raid, Raid 0 on 2 disks or Raid 5 on all 4 disks,(not the ssd). For safe I will have an ext.disk for backup. Is this a good setup?
    1 SSD:OS and programs.
    1 Spinp.:Pagefile, scratch and rendering,(editing?).
    1 Spinp.:Media.
    1 Spinp.:Projects.
    1 Spinp.: Final results.
       1  CPU:Intel Core i7 950 3,06GHz
       2  Mem:OCZ Gold Triple Channel 6GB Kit 3x2GB DD =12 GB
       1  MOBO: ASUS P6T SE -ATX LGA     
       1  Desktop:Logitech Pro 2400 Cordless Desktop
       1  BenQ M2200HD 22" LCD
       4  HDD: Samsung Spinpoint F1 1TB SATA 3.0 G for ?
       1  DVD combo:Samsung SH-S223B/BEBE DVDRW 22X Black
       1  Ext. HDD:Western Digital MyBook Essential 1TB USB for backup
       1  Power:Zalman ZM850-HP, 850W ATX
       1  HDD:OCZ Agility 60GB 2.5" SSD SATA II  (for OS and progr).
       1 Graf. Sapphire Radeon HD5850 1GB GDDR5
       1 Chassi Cooler Master HAF 932 ATX
       1 CPU cooler: Coolermaster Hyper 212 Plus ( for future OC)
       Hope you understand my English.
       From Åland Islands

    I gave you my opinion on Raid 0 in my above post.
    Regarding Raid 5, it is really a matter of personal preference. If you are good at doing regular backups of data, and at least one timely backup of a complete Drive Image, then Raid 5 might not be your cup of tea.
    Here is some additional technical details on a Raid 5 configuration from Intel Tech Support:
    (One key statement below is that Raid 5 performs better with small I/O files, (versus the large data files associated with video). ~~ And you'll need to tie up a minimum of 3 hard drives to accomplish this sense of data recovery and availability)...
    RAID 5 (STRIPING WITH PARITY)
    RAID level 5 combines three or more hard drives so that all data is divided into manageable blocks called strips. RAID 5 uses parity, which is a mathematical method for recreating lost data to a single drive, which increases fault tolerance. The data and parity are striped across the array members in a rotating sequence. Because of the parity striping, it is possible to rebuild the data after replacing a failed hard drive with a new drive. The extra work of calculating the missing data will degrade the write performance to the volumes while data is being rebuilt. RAID 5 performs better for smaller I/O functions than larger sequential files.
    Advantages: Full data redundancy; efficient; fault-tolerant and increased storage array performance.
    Disadvantage: Time consuming to rebuild and decreased performance during rebuilding.
    Applications: Good choice for file and application servers; Internet and Intranet servers.

  • MacBook Air 13" Core 2 Duo showing only 1 GB RAM

    My MacBook 13" Mid 2010 Core 2 duo shows only 1 GB RAM

    What CT stated is that yes if what you see is accurate you have a bad RAM chip. Either Apple Support/Service has to Repair/Replace the RAM, or, You have to find a local shop (if you're out of waranty). Desoldering and soldering logic board components requires special tools, solder and lots & lots of practice.

  • 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.

  • Always show details for Software Update

    I would like Software Update to always show details of what it intends to install. Yet its default is to hide the details and force me to click the Show Details button to get this information. There is no preference in the preferences pane to always show the details.
    Is there any way to accomplish this by setting a preference on using the automator?

    Charles Belov wrote:
    I would like Software Update to always show details of what it intends to install. Yet its default is to hide the details and force me to click the Show Details button to get this information. There is no preference in the preferences pane to always show the details.
    Is there any way to accomplish this by setting a preference
    no.
    on using the automator?
    no.

  • How to open show detail item on ADF link click

    Hi,
    Can anybody tell me how to open show detail item tab on link click ??
    thanks,
    Nitesh

    Hi,
    what Frank is saying..
    1. select showdetailitem component
    2. go to disclosure property
    3. attach a managed bean variable (return true/false)
    4. in the commandLink method set the variable true/false depending on requirement
    or
    1. select showdetailitem component
    2. create a binding in the managed bean
    3. in the commandLink method set showdetailitembinding.setDisclosed(true/false);
    4. add PPR
    refer http://jobinesh.blogspot.in/2010/12/programmatically-disclosing.html
    ~Abhijit
    Edited by: Abhijit Dutta on Mar 12, 2013 5:20 PM

  • How to Stretch Components in Show Detail Item - Jdev 11.1.2

    Hello:
    I have a panel splitter-verticle, and in the second facet I have a panel stretch layout and in that a panel tabbed. Inside a show detail item, I have another panel splitter-verticle. Inside the first facet, I have a af:query and in the second facet I have a af:form. But both the af:query and the af:form do not stretch to fill the open space, when I move the first splitter.
    What is required to have the af:query and af:form inside a show detail item with a splitter stretch to fill the open space?
    Thanks for the help.
    Edited by: 862658 on Aug 11, 2011 6:29 AM

    Hi,
    set the showDetailItem StretchChildren property to First
    Frank

  • Automaticlly "Show Details" when connecting to Remote Dekstop Machine

    here has been several occasions when I have waited for a remote window to connect to a machine until the MSTSC window disappears with no message.  Each time, I find that it is due to a message that would have been easily rectified if I had noticed
    that I could press the "Show Details" button (sometimes, it is greyed out at the beginning of the connection).
    Is it possible to have this expand automatically when available, and how would this be accomplished?
    Thanks

    Hello Keith.E.Kelly,
    What do you mean about ‘show detail’? Show Options?
    Please share us a screenshot about grey out ‘show detail’ button.
    If you mean the Options in the screenshot mentioned above, I go through
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services
    in local group policy editor, but can’t find any project to enable it.
    About the group policy issue, it is recommended to ask in the TechNet Group Policy forum.
    https://social.technet.microsoft.com/Forums/Lync/en-US/home?forum=winserverGP
    As you have the problem about “MSTSC window disappears with no message”, the computer has this issue when it tries to connect to any remote computers?
    Please open the Local group policy editor and go to Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits\End session when the time limits are reached,
    disable it and check if the MSTSC windows disappear again.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • PowerPivot V2 DrillThrough(Show Detail) amounts as text

    I use PowerPivot V2 for Excel 2010 in Windows 7. I create a Pivot Table from a simple Excel table by using PowerPivot. When I double-click any given subtotal or grand total on a Pivot Table, the new sheet is inserted to show the detail of subtotal/grand
    total.  (Drill-through/Drill-down/Show Detail function).  It is working and the list of detail is correct.
    However, the cell format of amounts is text format.  I can not change it to number format no matter how I tried.  I change the cell format to number on the inserted sheet, I change the cell format of original database Excel table to number before
    importing PowerPivot...none of those works.  No matter how I try, the drill-through numbers stay as text.  
    As a good practice, If you drill-through any given subtotal/grand total, you would like to highlight the amount cells to see the detail total equals to the sub/grand total.  If the detail numbers are in text format, I can not visually verify if detail
    total really equals to the original sub/grand total.  When I highlight detail amount cells, all I see is the cell count.  But Cell count can not verify total of detailed cells of amounts.
    Do you have any solution to this?  Did I do something wrong?
    Thank you very much.
    LiLi803

    I don't think there is an easy solution for this like you might think.
    One way I work around this, however, is to quickly convert the entire column to a Number format.
    Try this after executing a Drillthrough:
    Select the column header for the column you would like to sum (so that the entire column is selected)
    Click the Data tab and click 'Text to Columns' in the "Data Tools "section
    Accept the defaults ("Delimited", "Tab", "General") and then click "Finish"
    Your column should now be formatted as numbers and leave you with the ability to see a column sum in the bottom right of your worksheet (assuming your column is still highlighted) or to use a SUM function at the bottom of the column
    David
    David Duncan
    David:
    Thank you very much for your reply.  I am so sorry that I have not replied to your comment sooner because I failed to see the alert e-mail which was reclassified to Non-In-Box folder.
    Anyway, it seems the only solution is to Delimited it.  I know it can technically work but I am so unhappy about Microsoft's idea of deciding to present numbers(I'd say "Amount" because 99% of time is it) as TEXT.  What kind of mind allow numbers
    as text...I am sorry I have no idea.  The users who would use PowerPivot should be extremely "Number-oriented".  I think those people who would like to dare to use PowerPivot is dicing, slicing, subtotaling, re-organizing numbers all day long.  "Drill-Down"
    is a part of our daily operation because again, it all about "Numbers".  Then it is extremely frustrating to have the "TEXT" numbers.  I wish this would change in the future, but I guess I have no luck with having PowerPivot for Excel 2013 because
    there' no free add-on PowerPivot for Excel 2013...
    Yes, I truly appreciate PowerPivot to the extent that I just can not comprehend that this type of almost perfect Add-on has such a gross flaw....
    Thank  you very much for your input.  Again, I am sorry I have not even replied to your comment.
    LiLi803

  • JSF Table component Hide/Show Details question

    When you include a detailsStamp facet in your table, the "Details" column always appears as the first column allowing to disclose the details. Is there anyway to prevent the "Details" column from appearing and triggering this disclosure via another link within the row in the table? I would like to have a row in the table where one of the columns is something like:
    Joe User [show details]
    Where [show details] is a link that would trigger the discloser of the details for that row. Is this currently possible? If not, are there any plans to add this as functionality of the table component? I think users of the component are going to require more flexibility when using the Show/Hide details feature of the table component.

    True and thanks for the response. My first "work around" attempt was to use a showDetail component to accomplish what I am looking for. That had two drawbacks. 1.)When I used that in the table, it didn't disclose when I clicked it. However, if I re-navigated to the page it was disclosed (probably a partial page rendering thing). 2.) When it WAS disclosed, the detail information was restricted to that single cell in the column.
    I could use a commandLink/renderend attribute approach as suggested but that has 2 drawbacks as well. It also would be restricted to showing the details in a single cell since I can't see anyway to do a colspan with a column component. I would also lose the ability to "show all/hide all" unless I implement this logic myself.
    I really need more flexibility in the table component.
    Any other suggestions?

  • One of server core 12 and showing in sql server 24. how it possible?

    Hello  everyone,
    I'm confused in sql server 2008 r2 when try to check no. of cores in sql server property are double in sql server and os showing 12 cores.
    one of my friend saying 1 cores= 2 processors. 
    What is happen behind that...
    Thanks in advance...

    Hi,
    Are you same person Baraiya Krit who posted below same question I have always observed question posted by you and Baraiya are same. if such is the case
    both should be merged and you should note not to post same question with different profile otherwise i have to report that as spam and your profile would be deleted. If such is case you are wasting people time
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/505a2871-a7fd-487e-b39d-788ff78b6c95/one-of-server-core-12-and-showing-in-sql-server-24-how-it-possible?forum=sqldatabaseengine
    If you are from same firm and different person why not post one question.
    Moderators please have a look
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • 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

Maybe you are looking for

  • Software update to 5.1

    I keep getting the same error message when I try to do the latest software update. I am getting the same error message with I Pad too. I have rebooted all devices. I tunes is up to date the mac book pro and mac mini is up to date. I have tried for tw

  • Output post processors and workflow engines doesn't come up after cloning

    ours is a RAC+ASM+PCP -enabled host1 : DB+ Concurrents host1 : DB+ Concurrents host3 : WEB+FORMS+OC4J host4 : WEB+FORMS+OC4J We are suffering from an “empty entropy pool” within the JDBC driver. Basically, the driver will attempt to gather a random n

  • ITunes 11 destroyed my music library

    I upgraded to iTunes 11 and it destroyed my entire music library in one fell swoop. After the upgrade to 11, many of my mp3 files got moved to Unknown Album folders. If I looked at the files in Windows Explorer, I could see the album name, track numb

  • Delivery Scheduling Dates determination

    Hello Team, We have an issue with the way schedule line date being calculated. This is related to the Goods issue date and material availability date being set one day before to the actual delivery creation date. In our case, actually the process ord

  • Preview can not find linked pages

    When previewing my index page I click on the links created using flash buttons and they can not find the pages on my hard drive. The flash buttons are incorporated into my basic template as a library item. When The error occurs the page address that