Formula Variable in WAD (Counts) Not Displaying

Hi Gurus,
I am using BI7.0.  I have a query that analyzes a charactersitic, such as Priority, uses 2 date (charactersitic[Create Date and Close Date) fields.  I created a new forumla variable, using a Replacement path, to calculate the difference between the dates to derive the difference between the dates and a formula variable to derive the average number of days between the dates.  That is working well.
However, when using the Bar Graph or the Pie graph I can not see the value of the formula variable that contains the average number of days. 
I am assuming that because the key figure is a formula variable and not a 'key figure' then I would need to remodel my date fields as Key Figures in order for the Web Items, such as Pie/Bar Charts to view them.
Has anyone seen this before.....is there anything I can do at the query level in order for my formula variable to show up in the WAD?
Thank you

Pallavi
You are correct.  I had to select the "show summary/total" on the Web Item properities and the results defaulted.
Thank you

Similar Messages

  • Web item for formula variable in WAD

    Hi,
        I have a formula variable in my IP application where user can input the percentage for a function, which web item I should used in WAD to bind the user's input data with the formula variable? The input field item does not have the data binding property.I did it in my last project but can not remember it anymore.

    Basically, in IP you do not need to configure  web item for formula variable, it will automatically pop-up when you run the function, at that time you can input the value for the variable. while in BPS, we need to input the numerical value before we run the function.
    Since the input field web item does not have data binding property, I am not sure it is useful, the data you input has no effect on your processing data set. Anybody has some other idea?

  • Formula variable using Replacement path not working

    Dear All,
    I am using a query to calculate YTD values in the report. I am using a formula variable to calculate the number of months. Formula is
    Month To - Month From+1
    When I am giving the range from 001 to 006 for period in th evariable screen,
    I am gettung Month To as 6 and Month From as 6 with total no . of months as 1.
    I think Month From is not being caculated properly. I created another formul variable using Replacement path, for characteristic Posting period, replace with a Key and dimension ID as number with out any offset.
    Still not working.
    Any suggestions.
    Thanks and Regards,
    Srini
    Edited by: Srinivas on Apr 24, 2008 11:13 AM

    Hello,
    I have seen this document already. It is slightly different from what I am trying to do here than what the post shows. How ever,  I did everything right, atleast seems to be and don´t know why I am not getting the From value from the posting period selected. To value variable is coming right.
    Any more sugegstions.?
    Thanks and Regards,
    Srini

  • BEX 7.0: Formula variable with replacement path not working after BW Upg

    Hi all,
    We have a formula variable using replacement path for 0MATERIAL characteristic that is used in a calculated key figure, in order to perform conversion factor to change measure units (0MATERIAL attribute).
    This was working pretty well until an upgrade from 3.5 to 7.0 EHP 1. The list that is displayed contains all key figures empty instead of the desired values.
    Can anyone suggest what could be the possible reason for this?
    Thanks in advance.
    CCS

    Hi all,
    Problem solved!
    The solution was based on the u201Chow to...Report Data in alternate units of measureu201D document (for 3x version) . http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b7b2aa90-0201-0010-a480-a755eeb82b6f?quicklink=index&overridelayout=true
    Basically, the upgrade has override the previous changes made in the program LRRSVF20, like the "How to" document refers. Namely, the reference to YBW_AUNIT_ENHANCEMENT program.
    We have carried out the changes and, apparently, the query is now working fine.
    Thanks.
    Best Regards,
    Cátia Coelho Silva

  • Hierarchy node variable - successor node data not displayed

    Hello,
    I have a query with a hierarchy in the ‘rows’ section. This hierarchy is restricted by a hierarchy node variable with the following settings: variable type ‘hierarchy node’; customer exit; single value; mandatory; not ready for input; cannot be changed in query navigation.
    The customer exit correctly supplies the node. However, only data for THIS node is displayed in the query results. And data for successor/underlying nodes is NOT displayed.
    I tried several things, including:
    - rightclick ‘Rows’ > ‘Display as a Hierarchy’
    - customer exit variable: multiple values instead of single value; optional instead of mandatory
    In the ‘Hierarchy Attributes’ for the hierarchy, nothing is checkmarked, except for Root/Totals Item Appears Above’ and ‘Drilldown start level = 00’. The hierarchy and its nodes are valid from 01.07.2005 to 31.12.9999.
    I have a feeling in what area the solution can be found, but I have no clue what to do further on with it. As a test I replaced the customer exit variable with a user entry variable. If I then execute the query, I can select either the ‘node’ or the ‘value’ (both with the same technical value!). If I select the node, I get all data, including data for successor nodes. If I select the value, I only get the data for the node, not the underlying successor nodes. For some reason, the customer exit variable behaves like the latter and not like the first. I do not know how to solve this.
    I would greatly appreciate if you could help me out of this issue here.
    Kind regards,
    Frank

    Hi,
    no, it doesn't. It just returns the data for the node and not for the underlying nodes.
    Frank

  • Bex variable ready for input not displayed in webi

    Hi,
    I created bex query with some variables.
    Variables are defined as "optional" but "ready for input". On productive system the prompts are all displayed, but when i transported the webi report to dev, some prompts are not displayed.
    we are on BW 7.31 and BO 4.0. I also tried with BO 4.1. but the problem is the same.
    I have no idea what's wrong here! Attached you can find some screenshots on my current settings.
    thanks,
    Katharina

    Hi,
    yes the reports are based on BICS and I moved them from prod to dev.
    I already checked, the query panel does not show these variables!
    I copied query and saved under new name, and i also created a new webi report upon this query, but some variables ready for input are still not displayed.
    Regards,
    Katharina

  • 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

  • BPS Variable-Cost Element is not displaying Text

    Dear Team,
    We have a peculiar issue one of the BPS Variable defined for Cost Element is not displaying text in one of the Planning Layouts.
    Another variable is displaying text in another layout.
    Surprisingly...when I reused the old variable in the new layout it is also not displaying the text.
    Am I missing something....appreciated your quick support.
    Thanks & Best Regards
    Srinivas

    Have you check the layout Lead-Column setting? Is it set to 'Key/Description'?

  • Formula Variable for Date/year not possible

    Hi, I have a query where I want to create a formula variable for a year that I can use in a user exit to populate other variables.  When I go to create a formula variable there is not option for a date or year variable.  I only see Amount; Quantity; Price; Number.  Is it possible just to create a formula variable for a year input without having a year time characteristic in the query?
    Thanks!

    I just ended up creating a Formual Variable as a number.  Thank You

  • Variable Input Selection in WAD is not displaying

    Hi  Experts,
                       I created a query with one input selection screen. when I use the same query in WAD and execute the template it is not showing any input selection screen, directly showing result. This is supposed to show Hierarchy Input before query results but not showing when template executes.
                     Please some one tell me why it is showing for query and why not for for web report WAD results.
    Thanks
    Ganesh Reddy.

    Hi Ganesh,
    Just check once the setting of the template, display of variable is on or off:
    Goto WAD>On Properties>Select Web Template from drop down>click on Web Template Parameter>Under Behavior List> check first line>Display Variable
    Swith on that check box...
    Hope it helps...
    Regards,
    Ashish

  • Formulas containing stringVar assignments will not display with CrystalReportViewer.jsp

    <p>I have removed the last post because I have done extensive testing today and have narrowed down my problem. The following formula will display in Crystal Reports XI just fine:</p><p>stringVar x := {Command.STREET} + " : " + {Command.VALID};</p><p>x;</p><p>Yet when deployed onto our weblogic server, this formula field comes up blank. If I change the formula to:</p><p> {Command.STREET} + " : " + {Command.VALID};</p><p> </p><p>the formula is displayed fine both in Crystal and on our website. </p><p>Our formula is for appending a massive address field together that has possible null values and inserts a special character if a null value is present so the end user knows "Hey, this guy didn&#39;t supply us with his zip code" or whatever the case may be. We NEED some sort of variable declaration in our formulas and then have them displayed over WebLogic. If there is any hack around or any update or something that we need to implement, please let me know. </p><p>-Sam M</p><p>HBF Group, Inc </p><p> </p>

    <p>fixed this by changing the formula to: </p><p>Local StringVar x := {Command.STREET} + " : " + {Command.VALID};</p> <p>x;</p><p>Talk about sensitive code.</p><p>-Sam </p><p> </p>

  • PS Count - not displaying whole number in results.

    Hi,
    I'm having trouble with the results display format from the following command:
    Get-Childitem $server -Recurse | where { -not $_.PSIsContainer } | group Extension -NoElement | sort count -desc
    Where my results are:
    Count Name                     
    ...60 .tif
    ...43 .JPG
     4022 .doc
     2831 .pdf
      969 .wbk
      938 .db
      870 .eml
      587 .bmp
      518 .msg
    How do I get the full number of .tif and .JPG, instead of ...60.tif & ...43.JPG?
    Any help would be very much appreciated.
    Regards
    Tim

    Hi Tim,
    You can try this below modified cmdlet:
    Get-Childitem $server -Recurse | where { -not $_.PSIsContainer } | group Extension -NoElement | sort count -desc | ft * -Autosize
    Get-Childitem $server -Recurse | where { -not $_.PSIsContainer } | group Extension -NoElement | sort-object -Property Count -desc | Format-Table -Property Name,Count -AutoSize
    Have you tried
    Measure-Object.
    get-process | measure-object -property workingset -minimum -maximum -average -count
    What exactly are you trying to do here, what is your input \ source.
    References:
    Using the Measure-Object Cmdlet:
    https://technet.microsoft.com/en-us/library/ee176900.aspx
    Regards,
    Satyajit
    Please“Vote As Helpful”
    if you find my contribution useful or “MarkAs Answer” if it does answer your question. That will encourage me - and others - to take time out to help you.

  • Email count not displaying in iOS 8.0.2

    So immediately after upgrading to iOS 8.0.2 my email count stopped showing up on the screens icon. I've tried restarting and deleting my email accounts and adding them back and nothing changes. Anyone else experiencing this?

    I recently upgraded Mountain Lion to Mavericks. Until now it's been disappointing. I read about these so-called syncing features too late.
    See How to locally sync an iPhone with OS X Mavericks? iCloud is NOT an option.

  • Post Count not Displaying Correctly

    My post count was somewhere over 2000+ posts before the forum change and now it's 1/10th of that at 289... another poster, I see, has over 200,000 which seems rather skewed. If the web developers who did the change can verify the post counts with a simple query of the actual records based off my user account then they'll see the actual record count doesn't match the number showing up for me under a post.

    Um... Yeah, thanks for the reassurance Mr. Smarty Pants. I guess I was not clear enough for the non-technical minded among us... Using my own account as an example I was trying to point out that there's still a bug with the way the new forums query the data from the database and it's an easy test to run a query based on the number of actual records that come up for my user account... the physical record count should be 2000+ and not 280.
    As well, it's very difficult with this current forum format to tell that I'm not logged into it... I was showing as logged into the general Adobe site as indicated at the very top-left of the site by the 'Welcome Chunick', but apparently I wasn't logged into the forum section which was indicated by a Login/Register line of text just below the black Forums header that was in a light blue which was not only hard to catch, but also not indicative that I need to login to the Forums separately which is new with the new forums. Now it seems pretty clear since I worked it out, but it was a bit confusing at first, to be sure.

  • Calculated Key figure and formula variable issue - Urgent

    Hi,
    I have created a formula variable on dates. When I run this locally it returns results. Now I have created a calculated key figure on this formula variable. It is not returning any results. Any idea on why this is happening.
    Thanks,
    Kal

    Hi Kal,
    Can you paste your Formula & Calculated Keyfigure calculation.
    If possible give information on ur formula variable ( processing by , charactesristic , replace variable with ( if it is replacement path ) , Dimension id )
    Regards,
    SRIKANTH

Maybe you are looking for

  • Snote

    Hi, I want to implement OSS note 402917. When I download the note it is in grey color which means it cannot be implemented. It was released to customer recently. Please guide me to implement this note. (I am planning to implement this note due to the

  • Chapters out of order

    When I put an audiobook from CDs onto the iPod, I put every one of the 39 chapters in order on the playlist. After syncing, the iPod no longer has the chapters in order. How should I correct this? AMD   Windows XP Pro  

  • PeopleSoft Campus Solution OVM template

    Hi Guys, have anyone had experience using peoplesoft OVM template in implementing (or testing out) Campus Solution ? I'm planning to have a Campus Solution test in my organization using OVM. Thanks

  • Can I install Coldusion Developer Version and XAMPP on the same computer?

    I'm trying to teach myself ColdFusion and I need a testing enviroment to play around in. I already have XAMPP installed on my computer. Do I need to delete XAMPP in order to install ColdFusion locally? Thanks.

  • The Weather widget does not find cities anymore

    Some time ago my weather widget lost its connection. If I try to enter a city name it just says No city found. I reckon that the connection to Yahoo's city list is lost. On my other computer it works fine. Can anyone tell me where I can restore the c