Calculated item doesn't show values

Hi!
I have created a report in which I'm showing number of vacancies for two different months (depending uopn the values of months selected in the parameter). I have created a calculated item in Desktop that is supposed to give me difference between the values for both months. In other words, this calculated column is supposed to show me if there is any increase or decrease in the number of vacancies.
The datatype for values for both months is 'number'in the database and I've set it as 'default' in my report...and my report displays them correctly. However, when it comes to the calculated column, no values get displayed. I tried to experiment with the datatype for this column...like set it to 'none', 'default', number etc. But, no success! I tried to experiment with the datatype of the other two columns (values for months) as well...like setting them as 'number', however, this too brings no success!
I don't think that this has anything to do with the joins as the other sheets in the same workbook display correct data with totals too.
Can someone help me on this?
Thanks and regards,
Aparna
Message was edited by:
Aparna

Hi !
Let me post my calculations here: I'm giving them here in logical order.
1) Total = No Female Required SUM+No Male Required SUM+No Mixed Required SUM
Here 'No Female Required SUM' and the other two are from a table in the database. Puppethead, answer to your question: these three columns are from the same table and thus, form part of the same folder and BA. Their datatype in the db table is specified as 'Number'.
And this calculation is supposed to give me total of vacancies whether for female candidates or male or for those where no sex is specified.
Please note that problem persists even if I select 'details' instead of 'sum' as aggregation for all the three columns.
Please note that I do not directly display this calculation in my report.
2) Month 1 Vacancies = CASE WHEN ( "Month" = :From month ) THEN Total END
This is where I reference the Total that I create before. Here I'm also using 'Month' which is created based on a date using Hierarchy functionality in Administrator. From month is a parameter. Thus, the Total that I display should be for the month that the user selects as a parameter value.
This column 'Month 1 Vacancies' displays correct values.
3) Month 2 Vacancies = CASE WHEN ( "Month" = :To month ) THEN Total END
Same logic as calculation no. 2. Please note that this column too displays values correctly. To month is a parameter.
4) Change = "Month 2 Vacancies"-"Month 1 Vacancies"
What I would like to see here is the difference (whether positive or negative) between the vacancies for two months. This column is displaying nothing. And that's where the problem lies.
Please note that all the four calculations are being created in the Desktop while creating the report.
Could you please advise me?
Thanks and regards,
Aparna

Similar Messages

  • Item doesn't store value at proper page

    Hi, Im using Apex 3.0.1 under XE
    An item is not storing the value at point i need.... i'll explain
    Got an item on page 1, it stores a value from a sql query. That item named P1 is calculated at a before header computation level on page1. P1 stores its value properly
    At page 30 i got an item called P2_X that gets its value from a link column located into a report at page 1. P2X stores its value properly
    On same page (30) i got another item called P2_Y. It's value comes form a query where P1 and P2_X are involved. P2_Y is calculated at a before header computation point.
    Now, it seems P2_Y doesn't store any value. I wrote a &P2_Y. into a html region of page 30 to check out what value is stored, and there is nothing, it's null.
    This is so weird, because i'm recreating an application i've already developed before. At that time i used the exact same logic for calculating those items.
    now, is not working.
    Do you think i'm missing some step, consideration, mmm... cache issue, calculating point or something?...
    so strange...
    thanks for your help
    fernando

    P2_Y needs to have a Source Used value of "Only, ..." if you want the computation-established value to persist on the page.
    Scott

  • MMT DFF doesn't show value

    I defined new DFF value in Transaction history name “Receipt Detail”, where i defined column name receiving id and i have plan to get receiving id from MMT results. I select get value from field, save and compile DFF. I open DFF receipt detail but shows blank column, Pl suggest about the system behavior and remedy?

    I found a blog that contained the answer. You just reassign the dataProvider when the values have been edited like this:
    dataInput.addEventListener(DataGridEvent.ITEM_EDIT_END, updateCell, false, -100);
    function updateCell(e:DataGridEvent):void{
        dataInput.dataProvider = dp;

  • "Recent Items" doesn't show all recent items

    I have a file type I use commonly that never shows up on the Recent Items list. Why?
    Actually, none of my InDesign files show up. Is this just Mac acting like Microsoft and only showing recently used MICROSOFT files instead of all files?
    I thought that Mac people were better than that! After using Mac's since 1985, I am SERIOUSLY frustrated with the lack of Mac I'm getting with Leopard. It's been terribly MICROSOFTED.
    This *****!
    Not to mention wasting hours of my time finding absolutely NO DATA about this in the help, or the knowledge base (talk about copying windows).

    I just tried it and my InDesign files show up in the Apple menu's Recent folder after I open them using the Finder - they do not appear after being saved or opened using Adobe's interface to do. Adobe must be bypassing the standard Open and Save file dialogs used by the operating system and in doing so these file operations are not cataloged by the Finder for the recent items menu.
    Do you have the sidebar turned on in your Finder folders? There is a section for custom search results or smart folders or whatever they are being called today - where you can store a search for all InDesign Files created in the past week or month or whatever criteria - could even use a tag in the file name by project to have separate folders for each - and you could even go into your Library folder (under your user name) and take that saved search and make it a shortcut on your doc or using an App such as FruitMenu from Unsanity.com you could even make this a custom item on the Apple menu.
    Two pieces of advice for you.
    1. Don't get upset with Apple when the issue is with Adobe's code.
    2. Take any opportunity where the system or an app does not work as you would like it to find a creative solution that works better for you than the built in options.
    Also I feel your pain I have been there - and in the process discovered some truly amazing third party apps that suit my needs wonderfully - some of which have even been purchased by Apple and incorporated into the base operating system.

  • Dropdown in tableview iterator doesn't show values

    Hi everybody;
    I'm new to BSP. I'm creating a small BSP MVC application.
    I have a table with a few columns; I needed to add an extra column in which a dropdown would be shown.
    I created an iterator class and implemented the following in the GET_COLUMN_DEFINITIONS in order to add the extra column:
    method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS .
    FIELD-SYMBOLS: <def> LIKE LINE OF p_column_definitions.
    *First normal columns
    APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
    <def>-COLUMNNAME = 'CAMPAIGN_CD'.
    APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
    <def>-COLUMNNAME = 'CAMPAIGN_NM'.
    APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
    <def>-COLUMNNAME = 'COMMUNICATION_CD'.
    *<def>-EDIT = 'X'.
    APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
    <def>-COLUMNNAME = 'IDCLIENT'.
    *<def>-EDIT = 'X'.
    APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
    <def>-COLUMNNAME = 'CONTACT_DTTM'.
    *<def>-EDIT = 'X'.
    *Finally; our defined column for status dropdown
    APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
    <def>-COLUMNNAME = 'STATUS'.
    <def>-TITLE      = 'Status'.
    endmethod.
    Then I coded the following in the render_cell_start method to create the dropdown itself:
    method IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START .
      DATA: lt_table TYPE TIHTTPNVP,
            ls_table TYPE IHTTPNVP.
      CASE p_column_key.
        WHEN 'STATUS'.
          CLEAR: ls_table, lt_table.
          REFRESH lt_table.
          ls_table-name = 'OK'.
          ls_table-value = 'OK'.
          APPEND ls_table TO lt_table.
          ls_table-name = 'KO'.
          ls_table-value = 'KO'.
          APPEND ls_table TO lt_table.
          DATA lt_stat TYPE REF TO DATA.
          GET REFERENCE OF lt_table INTO lt_stat.
          p_replacement_bee = CL_HTMLB_DROPDOWNLISTBOX=>FACTORY(
                                id                = p_cell_id
                                table             = lt_stat
                                nameOfKeyColumn   = 'NAME'
                                nameOfValueColumn = 'VALUE'
      ENDCASE.
    endmethod.
    The strange thing is that the dropdown is shown but no values at all. Can someone help me out?
    Thanks
    Kind regards,
    Allan

    Hi,
    Yes indeed. I did not know that the table and its reference had to be declared in the attributes of the iterator.
    Another question; how to set the selected value of the dropdown after choosing a value which executes an action via the event DO_HANDLE_DATA?
    The right value is passed through to DO_HANDLE_DATA, but how do I have to set the dropdown to the selected value? In which event etc?
    Thanks
    Kind regards

  • HT201304 My iTunes card doesn't show value

    I entered a brand new I tunes card and it says all ready entered I can not find it on my ipad

    How to Redeem a Code  >  http://support.apple.com/kb/ht1574
    Note:  iTunes Gift Cards are only Valid in Country of Issue.
    If necessary... Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • How to show New calculated item in graph.

    I created a new calculated item in column in pivot table. That new calculated item is not showing in line graph.
    How to show that new column in graph.
    Thanks

    Guys Please provide any pointers to achieve this. its very urgent for  me.
    Regards
    Kris

  • Avoiding miscalculation of calculated item in query mode

    Hi:
    Imagine an invoice data entry system. 2 Blocks... the master (orders) and the detail (order_products). In the master you have the customer info and all that usual data... the details are the lines of products that this customer bought (quantity, price, etc) .
    Now imagine that I have calculated items that do the sum of the values from the lines and that are saved in the totals of the master block. And these calculations work very well...
    UPS... no they don't!
    Now imagine an order with 5 lines of products. Now imagine that you open that order and you go to the detail block and query that block and execute the query and the query only returs one or two lines for instance. The calculated items will change it value for the sum of the prices of these only 2 lines... but the order has 3 more products... and imagine that you click save... now the order totals are miscalculated...
    My question... HOW Can I avoid this? It's crucial!!!
    Best Regards
    Joao Oliveira

    Hi gerd :
    May a pre-commit-trigger selects the values from the database including the updated rows in the form?
    These computations are very very difficult. The values of the master table depends on the detail tables and the opposite is also true. By implementing triggers it will not work cause at the time the trigger fires in the master table the values from the detail table are not yet updated. This is a tricky issue...
    If I could avoid querying clauses in the detail block and avoid for instance the Clear_Record key... it would solve part of my problems.
    BR
    Joao

  • Balancing Segment Value set Does't show values and Giving error Page.

    In R12,LOV of Balancing segment, doesn't show values and giving error page while creating Retained Earnings Account in Ledger Options Page.
    If once the ledger options finished, and it gets the status completed, can't we modify the Ledger options in future.
    By mistake we finished. can i delete Primary ledger from Accounting stucture?
    Thanks in advance,
    VRC Murthy

    Turn on the dynamic insert for your chart of account structure.
    Make sure you have at least one value in each of the value value set attached to COA segments. Make sure retained earning account value exists in your Account value set.
    Now you will be able to pick your retained earnings account in Accounting Setups screen.
    After completing your ledger setup you will be able to modify some options like suspense account, reversal set, future enterable periods etc.
    I have explained the GL setup in detail in my online training videos at http://handsonerp.com
    Regards
    Edited by: user2648997 on Nov 13, 2009 11:50 AM

  • InDesign - newly installed panel doesn't show up under extensions

    Installed Adobe Exchange panel for Indesign CS6, searched for SuperOverlay creator, installed it with no errors, restarted InDesign but the panel menu item doesn't show up under Window > Extensions. Am I doing this correctly? I've reinstalled the extension a number of times and restarted InDesign many times with no success.
    Any help is much appreciated.
    Thanks.

    Hey Jonathan—Yeah it's weird, but it's newer software so some bugs are understandable. No worries, happy to help resolve a more core problem if I can.
    Yes, it has been showing up in My Stuff on the AE panel the whole time. I opened my Extension Manager and uninstalled the SuperOverlay Creator, went back to InDesign, installed the panel again, restarted InDesign, still no dice under Window > Extensions.
    Throwing some screenshots up here for you, please let me know if you see anything wrong that I should be changing.

  • System Tray Program doesn't show a form from the menu

    public SysTrayApp()
    ContextMenu TrayMenu = new ContextMenu();
    TrayMenu.MenuItems.Add("Exit", OnExit);
    TrayMenu.MenuItems.Add("Send Mail", SendMail);
    TrayMenu.MenuItems.Add("Add Exception", AddException);
    TrayIcon.Icon = new Icon(SystemIcons.Application, 40, 40);
    TrayIcon.Text = "RJC Server Services";
    TrayIcon.ContextMenu = TrayMenu;
    TrayIcon.Visible = true;
    NewTimer = new System.Timers.Timer(5 * 60 * 1000);
    NewTimer.Elapsed += NewTimer_Elapsed;
    NewTimer.Start();
    void AddException(Object sender, EventArgs e)
    ExceptionList ExceptionForm = new ExceptionList();
    ExceptionForm.ShowDialog();
    This is the code I am trying to use to show a instance of the Exception form. My application is a system tray application, when right clicked it shows menu items, however clicking the add exception menu item doesn't show the form? I have also tried ExceptionForm.Show()
    to no avail. Any ideas?

    figured it out: ExceptionForm.Visible = true;
    Also I had a long running process on form load that took a while to execute before the form was shown.

  • Calculated column doesn't expand the items in list view

    Dear All,
              I have a calculated column
    Week with formula, =INT((DAY([Start Time])+6)/7) 
    in one of my lists. I'm displaying a view of this list in a SharePoint page, group by column Year and column
    Week. But when the page is loaded with items, I'm only able to expand the list view up to
    Year column level. When I click on Week section it doesn't show / expand the items under it.
    Further more when I use a different calculated column with a function like (=TEXT(Date,"yyyy")) I don't get above error.
    Any Idea?
    Thanks,
    Dilip

    Hi Dilip,
    According to your description, an issue occurs when you try to expand the subgroups in a list contains Calculated column.
    It is an known issue in SharePoint 2013, there are some workarounds I can provide as below:
    As the first workaround, you can set the groupings to expanded by default, though it would make the grouping collapsed by default, then the grouping would function
    normal.
    As the second workaround, you can create a SharePoint Designer Workflow and add a “Do Calculation” action to calculate the value you needed. Then add a “Update List
    Item” action to add the value to a “Single line of text” column. We will use the “Single line of text” column in the grouping instead of the Calculated column.
    As the third workaround, you can install the latest update of SharePoint to fix the issue for new Document Libraries. For the existing libraries, after the installing
    the update, you can use PowerShell to make an update to each item in the library, it will make the old items get normal in the grouping.
    About how to update list items in a list/library using PowerShell, a demo as below for your reference:
    $web = Get-SPWeb http://YourServer/
    $list = $web.Lists["list name"]
    foreach ($item in $list.Items)
    $item.SystemUpdate();
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to show value of COUNT_QUERY in a text Item?

    please tell me how to show value of COUNT_QUERY in a text Item?

    If you look a bit further down the thread Rosario posted, you might find the method DanielLiang posted to be easier to implement for you.
    you can use calculation:
    example :
    Database Data Block: block1 ( Query All Records : Yes )
    not Database Data Block : block2 (Single Record : Yes)
    block2 has a text item (number) ,it calculation property :
    calculation mode : summary
    summary function : count
    summarized block : block1
    summarized item : item1(block1's item)

  • Material product types doesn't show in line item detail

    Good morning,
    We have a problem with product popup of service order in line items.
    When we make a click in product ID on the service order search, a popup shows and it displays all products.
    But if we go to Detail Position Id and do the same, the popup shows but Material product types doesn't show.
    Regards,
    Euge.-

    Hi Abhi,
    Thank you for your advise.
    Yes, OBCN has been maintained with posting indicator "2".
    During the testing, when we did GR (MIGO) there is no tax calculated, will the tax calculated and show in separate line item when we do Invoicing (MIRO)?
    Thank you in advance.
    Regards,
    Izzat

  • Show or Hide Items based on radio value

    I am trying to show and hide various Items based on the values of a radio button item. I have see the code and examples like
    function Show_On_Radio_Value(pThis, pThat, pValue){
    var rv = html_RadioValue(pThis);
    if (rv == pValue) {
    html_ShowItemRow(pThat);
    } else {
    html_HideItemRow(pThat);
    The problem I am having is that I have 3 different values of the radio item and I want to display certain items based on each different value.
    For example:
    radio_value = 'Yes'
    Show Item1, Item3, Item4
    or
    radio_value = 'No'
    Show Item2, Item5, Item6
    or
    radio_value = 'Maybe'
    Show Item1, Item2, Item4
    I am fairly new to this so it might be easy, I just don't know how.
    Any help would be appreciated.
    --DG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Arie,
    Thanks for the reply. I have tried it using the Show_On_Radio_Value function but I still can't get it to do exactly what I want. I have a working version here http://apex.oracle.com/pls/otn/f?p=25290 ,
    The code I used for this demo app is:
    [script language="JavaScript1.1" type="text/javascript"]
    <!-- Hide
    function Show_On_Radio_Value(pThis, pThat, pValue){
    var rv = html_RadioValue(pThis);
    if (rv == pValue) {
    html_ShowItemRow(pThat);
    } else {
    html_HideItemRow(pThat);
    function Hide_On_Radio_Value(pThis, pThat, pValue){
    var rv = html_RadioValue(pThis);
    if (rv == pValue) {
    html_HideItemRow(pThat);
    } else {
    html_ShowItemRow(pThat);
    // End Hide -->
    [script]
    In the HTML Form Element Attribute for the radio button:
    onchange="Show_On_Radio_Value('P1_RADIO','P1_TEXTAREA','Maybe');
    Hide_On_Radio_Value('P1_RADIO','P1_TEXTFIELD1','Maybe');
    Hide_On_Radio_Value('P1_RADIO','P1_TEXTFIELD2','Maybe');
    Hide_On_Radio_Value('P1_RADIO','P1_TEXTFIELD3','Maybe');
    Hide_On_Radio_Value('P1_RADIO','P1_TEXTFIELD4','Maybe');
    Hide_On_Radio_Value('P1_RADIO','P1_RADIOBUTTON','Maybe');
    Hide_On_Radio_Value('P1_RADIO','P1_TEXTFIELD2','No');
    Hide_On_Radio_Value('P1_RADIO','P1_TEXTFIELD4','No');
    Hide_On_Radio_Value('P1_RADIO','P1_RADIOBUTTON','No');
    The problem I see is that in the onchange event, the 'No' options are working because they appear last in the event.
    Can you possibly provide an example using a Case statement?
    Thanks,
    DG

Maybe you are looking for

  • Ssrs 2008 r2 report dataset call a stored procedure

    I am modifying an existing SSRS 2008 r2 report. In a dataset that already exists within the ssrs 2008 r2 report I need execute a stored procedure called StudentData and pass 3 parameter values to the stored procedure. The stored procedure will then r

  • Connection to LCD TV - DVI and VGA

    Trying to link my MacBook to my Samsubg LCD TV but it's proving more problematic than I thought. Using a straight DVI-I connection, a decent image appears onscreen although the edges of the screen are cut off uniformly all around. I've tried inputtin

  • Gray, Blue screen at boot Problem !

    Hi i have Macbook Pro i7 running on OS X v10.7 when i turn it on it stay on the gray sceen and don't boot i tryed a couple solutions such as: Rest PRAM and repair the hard drive permissions i alse remove third party ram and when i try to use the safe

  • Compiling against developer database, running against production database??

    Hello :-) In our company we have a developer- , a test- and a production database, like most of us, I think... :-) In former times it was usual to compile forms against the database, that they are running against. But nowadays this is because of new

  • DO NOT UPDATE FIND MY IPHONE

    Won't work unless you are an iOS developer running 7.0. Your device will be unprotected.