Total is not displayed in Result area

Hello Experts
I have an issue related to the result area display in a bex Query. in the query, one of the Formula Figure does not display the Total or Sum  in the result area where as i have selected its propertyof summation in Calculate Result as.
The Formula figure contains the Formula variable in it & the formula variable is based on replacement path of an info object's key value.
kindly suggest the solution to get the Total value in result area.
I have also check the related issue in SDN but they are not helpful.
Thanks in advance
Neha

My ques is :
I have two key fig
                                         A1                         A2
MatA                                 1                             3
MatB                                  2.2                        4.2
MatC                                  1.6                       2
Total                                 4.8                                   
Now properties for both key fig are same that is Cal result as is fixed with "Summation / Total/SUM" , but still in key fig A2 the total value is not displaying.
Please advice

Similar Messages

  • Altavista will not display search results

    altavista us will not display search results. altavista canada works fine. On us site results will display in no style page but not in basic page style. The page comes up blank. This may have been caused by delta search. I think I have rid my computer of delta? Reloaded firefox. I use norton 360 and have run registry clean up and virus scans. Also cleaned explorer. In explorer the u.s. altavista works ok that is why I think it something to do with firefox and delta search showed up at the same time unwanted and forced a change on my home page. Have cleared computer of what delta files I could find my have something in the registry but I would not know what to look for or to do with. I am running xp

    In a round about way you solved my problem cor-el ! At the end of standard diagnostic there was mention of malware so I ran malwarebytes before running profile manager. malwarebytes found 21 items some in the registry. deleted these items and tried altavista us again and to my surprise it is working ok now.I thought norton 360 would catch such things but I guess it doesn't ! will keep and run a malware program from now on. thank you for your help.

  • This Formula(Function) compiles but does not display any result

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

  • Hi.. I got some problem  when i want to type something , letters are not displaying immediately , they are displaying after some seconds. can you help me out

    Hi.. I got some problem  when i want to type something , letters are not displaying immediately , they are displaying after some seconds. can you help me out

    Hello:
    I am not being critical, but you seem to want Safari to behave exactly like Chrome.  Every software developer has a plan.  Sometimes features in one product parallel other products - sometime not.  There might be some things available that would help you.  Do not hold your breath, however, for suggestions from people who use these forums.  Most of us use (and like) Apple products.  If you wish to make suggestions for future improvements, there is a feedback area on this web site that Apple employees read/review.
    Candidly, your approach would be akin to suggesting that Apple emulate the "features" in Windows (heaven forbid).
    I use Safari (and have for years).  I use Firefox (not a bad product) as my alternate browser.
    Sorry for what appears to be a pedantic lecture.  However, I think most of us adapt to different products if we really want to use them.
    Barry
    Message was edited by: Barry Hemphill

  • 2.1 EA2 does not display query results, query works fine in sqlplus

    2.1 EA2/Windows XP 32-bit
    The following query does not show any results for Total(GB) and Free(GB) columns. The diskgroup name shows correctly.
    SELECT
    DG.name ,
    ROUND(SUM(DSK.TOTAL_MB)/1024,2) "Total (GB)",
    round(SUM(DSK.FREE_MB)/1024,2) "Free (GB)"
    FROM
    V$ASM_DISK DSK,
    V$ASM_DISKGROUP DG
    WHERE
    DSK.GROUP_NUMBER=DG.GROUP_NUMBER
    group by DG.name;
    The query works fine when run from SQL*Plus:
    SQL> SELECT
    2 DG.name ,
    3 ROUND(SUM(DSK.TOTAL_MB)/1024,2) "Total (GB)",
    4 round(SUM(DSK.FREE_MB)/1024,2) "Free (GB)"
    5 FROM
    6 V$ASM_DISK DSK,
    7 V$ASM_DISKGROUP DG
    8 WHERE
    9 DSK.GROUP_NUMBER=DG.GROUP_NUMBER
    10 GROUP BY DG.name;
    NAME Total (GB) Free (GB)
    DG1 707.98 162.32
    DG2 134.84 122.68
    SQL>
    This must be something unique to SQLDeveloper. I tested in 2.1 EA1 and 1.5.5.59.69 and the query does not show results for the Total (GB) and Free (GB) columns.

    I would like to update the problem. It seems like when SQLDeveloper is connected to ASM instance, it has trouble using the divide operator (/). For example, the following query works fine:
    SELECT
    name,
    TOTAL_MB
    FROM
    V$ASM_DISKGROUP;
    But if I try to divide the TOTAL_MB by any number, the column shows blank (the column is blank, not NULL). So, if I try to run the following query, the output will just display diskgroup names. The TOTAL_MB/1024 column shows blank.
    SELECT
    name,
    TOTAL_MB/1024
    FROM
    V$ASM_DISKGROUP;
    If I run the same query in SQL*Plus from the same desktop using the same TNS alias, it works just fine which tells me that it is a SQLDeveloper problem.
    When I am connected to a regular database, then the problem does not show up and SQLDeveloper is able to display the results even when I am using the divide operator (/).

  • Verity on CFMX7 not displaying all results

    I'm developing a search function using the built-in Verity
    engine packaged with ColdFusion MX7. However, I noticed that the
    search results do not display anything that has a score below
    0.7742. Is this cut-off by design? I need Verity to find and
    display all instances of the search criteria, regardless of score.
    Any and all help on this matter is greatly appreciated.
    Thanks!

    Welcome to SDN.
    This is really surprising.
    can you put the code you have used in the abap report and also tell us whether you are using integrated its or standalone its.
    also the url u have used to access this application
    Regards
    Raja

  • ITunes Store not displaying search results on my Mac Mini

    Over the past couple weeks I've noticed problems with search results not displaying in the iTunes Store on my Mac Mini.  I do not have this problem on my Macbook Air or other Apple devices.  I can enter an artist such "Coldplay" and all I get are audiobooks and podcasts.  When I enter this same search on my Macbook, I get all the expected results--songs, albums, etc.  I am running OS X 10.9 on both machines (with iTunes version 11.1.2).

    Hi there kushfromgbr,
    You may find the information in the article below helpful.
    About SyncServices
    http://support.apple.com/kb/HT5847
    OS X Mavericks
    OS X Mavericks v10.9 and later do not use SyncServices. Instead, Mavericks supports sharing your information using several network-based and cloud-based solutions. If you want to sync your information across multiple devices and computers, you should use one or more of these methods. These include iCloud, CardDAV servers, CalDAV servers, and servers that utilize the Exchange ActiveSync protocol.
    If you would like more information about setting up iCloud on your devices you can take a look at the article below.
    iCloud: Set up iCloud on your devices
    http://support.apple.com/kb/PH2609
    -Griff W. 

  • Office 2013 Upload Center do not display in notification area

    Hello,
    I am wanting to hide the Upload centre system task tray icon for Office 2013 on all of our pc's in my organisation, I have found many articles on disabling the service from starting, but this is not my intention.
    Instead I wish to use either a registry setting (that I'll set in either the OCT or GPP), an option in the 2013 OCT tool or a setting in the Office 2013 group policy templates to just untick the box that says "Display icon in notification area"
    which will still allow the Upload Center to work and be launched from the start menu but will free up Task Tray real estate.
    If anyone knows what registry setting will do this that would be great, ideally a machine based setting so I can include it with the OCT, however if it is a user setting I will use Group Policy Preferences to deploy it.

    Hi,
    I captured the registry key by ProcessMonitor, you can test if this works for you:
    HKCU\Software\Microsoft\Office\15.0\Common\FileIO
    Value:DisableNotificationIcon
    If the value is set to 1, the icon is not displayed; if the value is set to 0, the icon is displayed.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs. Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Search button not displaying search results

    I have created a page where you enter a string and click a search button and it will display the file that contains that string. It works on one page but not any of the other pages I have created. I went to dkubiceck page and copied the code for the search button there.
    This is the code I used to run the query to bring up the document information:
    select score(1) relevance, filename,transcript_id,
    dbms_lob.getlength("trans_document") "trans_document"
    from transcript_documents
    where contains (trans_document, :P20_SEARCH, 1) > 0
    order by 1 desc
    I can run the script in sql workshop and it returns information but I can't get the page to display anything so I think it has something to do with the search button. Does it have something to do with the button request. I have the request as go which is what the Oracle Text for APEX tutorial indicates. I am at a loss as to why it is working in one place and not in another. HELP!!!!!!!

    I used the Using Oracle Application Express to Build
    Oracle Text Web Applications An Oracle White Paper documentation to create this button. The instructions to create the button is below.
    http://www.oracle.com/technology/products/database/application_express/pdf/apex_text_application_v1.6.pdf
    To create a button to submit the search:
    1. Under Buttons, click the create icon ().
    2. For Region, select Search Terms(s).
    3. For Task, select Create a button displayed among this region’s items.
    4. For Button Name, enter P1_FIND.
    5. For Label, enter Find.
    6. For Button Style, select HTML Button.
    Run your page using the run page icon () and your development username and password. Your page should look similar to the following figure.
    This was the instructions to create the query region:
    To create a query region:
    1. Navigate back to the Page Definition for the Search page. You can do this by using the edit links at the bottom of the running page, Edit Page 1.
    2. Under Regions, click the create icon ().
    3. For Region Type, select Report.
    4. For Report Implementation, select SQL Report.
    5. For Title, enter Results.
    Using Oracle Application Express to Build Oracle Text Web Applications Page 9
    6. Enter the following SQL query:
    select score(1) relevance, doc_title, doc_url
    from htmldb_documentation
    where CONTAINS (doc_url, :P1_SEARCH, 1) > 0
    order by 1 desc
    7. For Display Conditions, for Condition Type, select Value of Item in Expression 1 is NOT NULL.
    8. For Expression 1, enter P1_SEARCH.
    This condition specifies to only display the Results region if a term is entered as a search criterion.
    Run the page and enter a search criterion for Term(s). Your results should look similar to the following figure.
    Figure 2.0
    The only thing I added to the query above is a dbms_doc.getlength statement to be able to open a link to the document.
    The first 2 times I created this on a page it worked just fine. But now no matter what conputer or schema or application I create this button in it won't display the results. I can admit that I have no experience creating a button with a different request than what comes up in the wizard. And the documentation that I found on creating buttons was of no help.
    I have not made any changes to anything in the wizard so can someone guide me as to how to create a button that will allow me to search a document using Oracle Text as described above

  • Img alt="text" not displayed when images are turned off in Safari

    I have tried to search this, but every search has returned too many posts, so I apologize in advance.
    Have I made some error or is there an issue with my Safari? For some reason my Safari does not display alt="text" when images are turned off?
    This is what is supposed to happen (see http://www.w3schools.com/tags/attimgalt.asp) and it works fine in my other browsers (Opera, FF), but with Safari I get nothing - no image, no alt text, no indiciation that an image is supposed to be in that place. According to w3c, Safari is supposed to be compliant.
    There is no problem with the site itself, I am designing the site and test with and without images to see how it degrades. As I said, it works properly in Opera and FF - the alt="text" text is displayed in place of the image - but not in Safari.
    Is this just my Safari? How do I fix this if it is?
    Is it Safari in general? If so, how do we get it fixed, because this is clearly just not correct?

    It's not just you. I see the same thing in my Safari. It appears to be a Safari problem, in which case the best thing to do is submit feedback to Apple's developers via the Mac OS X feedback form. (You will not receive a response, as that page notes, but the feedback will get to the people who can use it.)

  • Key figure is not displayed in info area

    Hi experts,
    I have a customer created  key figure. I see it in RSD1 but it is not displayed at any info area. Normally when we create any info object and don't assign any info area, it must be displayed at " Unassigned Nodes ". But it is not displayed. When i search it in info objects, i can't find. But i can see it in RSD1.  Anyone knows its solution? Thanks in advance
    FIRAT KAYIRAN
    MM&BW Consultant
    Istanbul, Turkey

    Hi All,
    Firstly thanks for your reply.
    1- In key figures i know it can not be marked as infoprovider. But also i searched in modeling-infoprovider section. But i can not find it.
    2- My key figure is active. But again i can not see it.
    3- I've searched all nodes(assigned key figures and non-assigned key figures)
    Waiting for your reply.
    FIRAT KAYIRAN
    MM&BW Consultant
    Istanbul, Turkey

  • Ke24 not displaying any result in COPA

    Hi Experts,
    i have accounting based COPA active in my system. I have run KEU5 and accordingly the documents get generated showing recievers as COPA dimensions which i have maintained in cycle. SO cycle run properly
    Now when i check table CE1XXXX xxx controlling area) or i execute KE24 i could not find any value. it not showing any result. Please let me know how the values can be seen in CE1XXXX table or in Ke24 report
    Note: CE4XXXX table shows correctly all values, CE3XXXX dont have any values
    Regards
    Pragya

    Pragya,
    See if this note is implemented in your system if not try implementing 1487641

  • SQL*plus not displaying the result of XMLELEMENT

    HI,
    I am using SQL*Plus: Release 10.1.0.4.2
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    When I run the following query in SQL*PLUS, I get nothing displayed. However when I run the same query connecting to the same database using SQL Developer then I get the result
    SQL> select XMLELEMENT("form_id",form_id)
    2 FROM collections;
    XMLELEMENT("FORM_ID",FORM_ID)
    In SQL developer
    <form_id>101</form_id>
    I set long and longchuncksize to 32K , and I change linesize, pages, but nothing helped
    Is there any configuration that I have to do, so that SQL*plus display the result of “ select XMLELEMENT("form_id",form_id) query.
    Appreciate you help, thanks

    From a fresh start ;) :
    SQL*Plus: Release 10.1.0.4.2 - Production on Fri Feb 26 15:29:04 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select xmlelement("value", a.object_name )
      2  from   all_objects a
      3  where  rownum <= 5;
    XMLELEMENT("VALUE",A.OBJECT_NAME)
    SQL> select xmlelement("value", (select b.object_name
      2                              from   all_objects b
      3                              where b.object_name = a.object_name
      4                              )
      5                   )
      6  from   all_objects a
      7  where  rownum <= 5;
    XMLELEMENT("VALUE",(SELECTB.OBJECT_NAMEFROMALL_OBJECTSBWHEREB.OBJECT_NAME=A.OBJE
    <value>ICOL$</value>
    <value>I_USER1</value>
    <value>CON$</value>
    <value>UNDO$</value>
    <value>C_COBJ#</value>
    SQL> show all
    appinfo is OFF and set to "SQL*Plus"
    arraysize 15
    autocommit OFF
    autoprint OFF
    autorecovery OFF
    autotrace OFF
    blockterminator "." (hex 2e)
    btitle OFF and is the first few characters of the next SELECT statement
    cmdsep OFF
    colsep " "
    compatibility version NATIVE
    concat "." (hex 2e)
    copycommit 0
    COPYTYPECHECK is ON
    define "&" (hex 26)
    describe DEPTH 1 LINENUM OFF INDENT ON
    echo OFF
    editfile "afiedt.buf"
    embedded OFF
    escape OFF
    FEEDBACK ON for 6 or more rows
    flagger OFF
    flush ON
    heading ON
    headsep "|" (hex 7c)
    instance "local"
    linesize 80
    lno 9
    loboffset 1
    logsource ""
    long 80
    longchunksize 80
    markup HTML OFF HEAD "<style type='text/css'> body {font:10pt Arial,Helvetica,sans-serif; color:blac
    newpage 1
    null ""
    numformat ""
    numwidth 10
    pagesize 14
    PAUSE is OFF
    pno 1
    recsep WRAP
    recsepchar " " (hex 20)
    release 1002000300
    repfooter OFF and is NULL
    repheader OFF and is NULL
    serveroutput OFF
    shiftinout INVISIBLE
    showmode OFF
    spool OFF
    sqlblanklines OFF
    sqlcase MIXED
    sqlcode 0
    sqlcontinue "> "
    sqlnumber ON
    sqlpluscompatibility 10.1.0
    sqlprefix "#" (hex 23)
    sqlprompt "SQL> "
    sqlterminator ";" (hex 3b)
    suffix "sql"
    tab ON
    termout ON
    timing OFF
    trimout ON
    trimspool OFF
    ttitle OFF and is the first few characters of the next SELECT statement
    underline "-" (hex 2d)
    USER is "HR"
    verify ON
    wrap : lines will be wrapped
    SQL>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Using is prompted not displaying the results

    Hi,
    I have a situation here where i want to show all the live reports that are available and then by clicking on the report i will be able to to to adifferent report shows other details like the Dashboard and the Dashboard page.
    I have created the report which has the report name display and then have done a "Value Interaction" -> Navigate under Column format and had mentioned the other report which shows the details of the reports.
    Then created the Detailed report and have the Report name in the detailed report as "Is prompted".
    But when i click on the report the details report could not fetch details of the report giving me the below error
    No Results
    The specified criteria didn't result in any data. This is often caused by applying filters that are too restrictive or that contain incorrect values. Please check your Request Filters and try again. The filters currently being applied are shown below.
    Report Name New is equal to Entries
    I figure out the problem is that if it uses equal to it is not able to fetch the data but if i choose "Contains All" from the filter in the details report it shows me the data.
    But using "is prompted" does equal to. So how do i pass the report name to the Detailed report and use a SQL in the filter.
    Rgds,
    Amit

    Hi David,
    I did the trimboth, another problem which i am facing is that even after putting a filter saying "Dashboard Name not null" i am seeing blank rows in the Dashboard Name column.
    I am having a reports with the below columns:
    Report Name Dashboard Name Dashboard Page
    Any idea why is the Dashboard Name coming blank when after putting TRIMBOTH and not null criteria.
    Rgds
    Amit

  • Library Photos images suddenly not displayed, though they are available

    I have been running Aperture 3.1.3 under OS 10.6.8 on an iMac for many months. Suddenly there is a problem: at the far left of my Aperture window is a vertical band in which there are tabs for Library, Metadata and Adjustments. The Library tab (the Library Inspector)  shows at the top the choices Projects, Faces, Places, Flagged and Trash. Below that are various projects and albums. The problem now is with the display of images in the Photos item.
    Hitherto when I select Photos in the Library Inspector the large right hand side of the window, the Projects Viewer?,  will display thumbnails of all my thousands of stored images. I use the Browser display to see them. But today, in trying to set up yet another Smart Album to display images that have a particular keyword somehow I have entered the Smart Album criteria as limits on what images are displayed when I select the Photos choice. My images are all still in their libraries, and I can see them correctly in all my many folders and smart albums, and in Projects and Faces I see everything , and Aperture functions as always,  but when I select the Photos of the Library (that is, I place the cursor over the word "Photos" and click to highlight it), I see only three images, all of which have the properties I was trying to create a smart album for. Hitherto I would see thousands of images.
    The user manual says that selecting Photos will show all images in the library, just as selecting Projects will make all the projects appear (and they do) .The Library Inspector search field is empty. It says All Items.  There is a search box at the top right of the Display window. It is  empty. It says Showing All. Next to it there is a camera icon , and it has no selection checked. In fact, the three displayed images are exactly what will be selected if I check one of the keywords, but I have unchecked it.  My belief is that I inadvertently checked the keyword here, and now for some reason the system does not accept that it is unchecked, although the check mark is not seen.
    I have quit and restarted Aperture, and I have rebooted the iMac. Nothing helped.  How can I reset the criteria for displaying Photos?

    You may have an ivisible filter on your "Photos" View - try the "Double Double Reverse Caggiano"; see this user tip:
    Images not appearing in browser, search filter is cleared
    Regards
    Léonie

Maybe you are looking for