Workbook filters removed after query chnage

Hi,
i have some filters set on workbook level. (say for example of comp_code 100). This filter is not in the query.
The problem is, when i change the query(say add a new char in the row), i need to chekc the option "return to global definition on refresh" inorder to get the new char in the row in WB. This removes the filter i had on comp_code 100 in WB.
Is there a way, to refersh the workbook with out removing the filter on comp_code?
Thanks
Krishna

Hi,
You open a query in BEx Analyzer
->You will find Chart,Filter and Information buttons
->Just Click "Filter" button
->This will show you the Filter item
->Select the Filter Values through this Filter item for any Characteristic and save the Workbook.
Now add a Key Figure in the Query through QD.Now Open the same workbook in Analyzer,observe that the filter values are still shown in the Filter item since you didn't refresh yet.Now right click and Refresh.Now Observer that the "KeyFigure" is filtered to the value which was already there in the workbook and newly added Keyfigure won't be visible in the Analysis gird.Filter for a Characteristic still shown.
Remove the filter for KeyFigure.Now the Analysis item will show the newly added keyfigure along with the filters of Characteristic in the Filter item which means that the newly added Keyfigure is available in the report and the Filter values still preserved.
Rgds,
Murali

Similar Messages

  • Remove a query from a workbook

    Hello,
    I'm trying to remove a query from a workbook like I did many times in the past. In some of the workbooks this option works and in some it doesnt. when i use "mark queries in the workbook" it marks the query that i want to remove so i'm sure the query is fine.
    Did someone had this problem in the past?
    Thank you,
    David

    David,
    We were on SP 12 and had this issue (we also had the issue of selecting Properties in the Analyzer of the query and nothing happens), our basis guys have installed SP13 and so far I've had no reoccurrence of it.
    Regards
    Gill

  • Combo Box in Portal Form resets after query

    Hello all,
    I have a portal form based on Stored Procedure. In it I have a Location combo box and Query button in addition to few text items. Users can select location from the drop down list and hit Query button to view the values in for the text items. The query part is working fine. But after query the Location resets to Null (as the LOV which feeds the combo box can have Null). We would like to keep the location they chose to query up even after the query results. Any help is appreciated.
    The Location item is in the parameters of the Stored Procedure. Initially it was IN, later I changed to IN OUT but there is no change in functionality.
    I also removed the ability to accept NULL for the LOV which feeds Location Combo box but now it is displaying the first location on the list after the query, which is even worse.
    Thanks in advance,
    Manohar

    You're catching Exceptions in empty catch() blocks. There might have been an exception, but you won't know if the catch block doesn't do anything.
    Try something like this:
    catch(SQLException e){
        System.err.println( "Problem with db query"+e.getMessage() );
        e.printStackTrace( System.err );
    }in order to see what's going wrong with your code.

  • BI7 - Workbook doesn't take query change

    Hello, with BW 3.0 whenever you update the query within a workbook, to make sure the workbook is updated with your modification do a right clic>Properties>Interaction and you tick "Return to global definition on refresh"
    Then you save your existing workbook.
    I'm looking for the same option in BI 7 but I can't find it.
    Does anyone know if this option is available or not ?
    Thanks
    Regards
    Steph

    if u try the Pause/ Refresh Automatic refresh
    than its should work
    or change the navigational status of the query. This keeps the interface to your query synchronized with the data on the server. When pause automatic refresh is active, you can navigate your query without having to wait for it to update with the current data.
    The pause automatic refresh state is recommended for performance reasons, for example, if you intend to make several changes to the query properties and several navigational steps in succession without displaying the corresponding data immediately.
    When you activate refresh, variables are not automatically processed by default. In other words, you cannot change variable values. You can change this behavior so that you are always prompted to enter new variable values when you activate refresh by selecting Process Variables on Refresh in the properties for the workbook (see Workbook Settings).
    After opening a query or a workbook, ensure that refresh is active to continue navigating with the current state of the data.
    Activities
    ●      To enable refresh, and thus request the current valid data from the server, choose Refresh from the analysis toolbar, or the BEx Analyzer ® Refresh from the menu. The function name changes to Pause Automatic Refresh.
    ●      If you have activated the refresh function and you want to pause automatic refreshing of current valid data, choose Pause Automatic Refresh from the analysis toolbar, or BEx Analyzer  ® Pause Automatic Refresh from the menu. The function name changes to Refresh.
    Note
    ●        A query can only be refreshed if a connection exists between the BEx Analyzer and the BI system. If you are not connected to a system, you are first prompted to log on using the SAP Logon dialog box.
    ●        When refreshing a query, the data, format, rows, and column widths of the analysis grid (in which the results display) automatically adjust to the updated query data.  You can adjust this display using the properties for the analysis grid (see Analysis Grid).

  • 'Contacts' folder with sub folder cannot be removed after synching via iTunes

    'Contacts' folder with sub folder cannot be removed after synching via iTunes
    I am trying to remove a 'Contacts' subfolder
    ie Contacts < default folder
    - Contacts Mysubfolder 1 < Trying to remove this subfolder folder
    via my microsoft outlook onto my iPhone.
    Despite not having 'Contacts Mysubfolder 1' on my PC's outlook after deleting it, it does not delete the subfolder in my iPhone.
    I even restored my iPhone settings to the original via iTunes.
    I also replaced my physical iPhone but still synching with my original Apple ID + iTunes on the same desktop.
    All I did was after replacement of my iP, i setup my microsoft Exchange account, and there it was, the Contacts subfolder which is no longer around, appears on my iPhone contacts folder list.
    My outlook is on Microsoft exchange and I am on iP 3Gs
    Please help
    Thank you

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you are running 64-bit Windows and the above steps haven't helped try installing the version of iTunes that can be downloaded from this support document. iTunes 12.1 for Windows (64-bit — for older video cards)
    If you still have no luck try reinstalling iTunes 12.0, links in the user tip.
    tt2

  • Conditionally disabling record updation after query

    Dear members
    I've a single record block and I wanna conditionaly disable records updation after query has fetched data. Problem is that if I disable the record updation in Post-Query trigger then it checks the condition for the very first fetched record and it the condition is true, then Updation is disabled for all the fetched records, even if the next records dont meet the condition. I'm using forms-10g. Can u give a better solution??? thanx.

    you have to use SET_ITEM_INSTANCE_PROPERTY to modify only one record:
    BEGIN
        IF ... <your_condition> THEN
            SET_ITEM_INSTANCE_PROPERTY('YOUR_BLOCK.YOUR_ITEM1', UPDATE_ALLOWED, PROPERTY_FALSE);
        ELSE
            SET_ITEM_INSTANCE_PROPERTY('YOUR_BLOCK.YOUR_ITEM1', UPDATE_ALLOWED, PROPERTY_TRUE);
        END IF;
    END;

  • My iPhone 5s on ios 8.1.2 is stuck at Apple logo or recovery mode.. To fix this issue, i need to update it to ios 8.2 through itunes.. I want to ask that my data i.e. Photos and other personal data would be removed after updating it or not..?

    My iPhone 5s on ios 8.1.2 is stuck at Apple logo or recovery mode.. To fix this issue, i need to update it to ios 8.2 through itunes.. I want to ask that my data i.e. Photos and other personal data would be removed after updating it or not..?
    if yes then how can i save my data or get out of recovery mode.. Is there any safe mode or something like that on which i could access my data..
    P.S. I have not taken any backup of my iPhone on itunes..
    Please help me sort out this issue..

    Recovery mode doesn't mean that all your data is already lost. You only lose your data if you restore it.
    When you plug the phone is into iTunes hold down the home button. iTunes may then give you the option JUST to update the software first. This should not get rid of any data.
    However, if iTunes is only giving you the option to RESTORE and update, then you will lose your data I'm afraid.
    Hope that helps!

  • Win 8.1 modern calendar - all notes in a calendar meeting are truncated/removed after opening/viewing (Exchange 2010 and EAS)

    All,
    If this isn't the best forum to post in, please let me know.
    I am having an issue when I accept calendar invites in the native/modern application for calendaring in Win 8.1. Whenever I then go back to open and view the contents of a meeting, all the notes are truncated and removed after closing that event.
    We are running exchange 2010 for the email server.
    The machine is not domain joined/managed (local account only).
    Any assistance greatly appreciated. 
    Thanks,
    Steve

    Team,
    Looking for some expert advice here - any assistance would be appreciated.

  • Linux VM KVP IP can't be shown on Hyper-V Manager after querying its KVP/IP information on Hyper-V host several times

    Hello
    [Sorry for asking the same question in the wrong place/forum of "Hyper-V"]
    I am using a CentOS 6.5 VM (Linux kernel 2.6.32-431) and (generation 2) CentOS 7 VM (Linux
    kernel 3.10.0-123) with Hyper-V KVP daemon installed,
    and I periodically query its IP (via using WMI or Powershell to query its KVP information) to manage it.
    However, after querying its IP (KVP) for several times, its IP can’t
    be queried or shown on Hyper-V Manager anymore (Windows VM is ok without this problem).
    And here is the vmIntegrationService status of my CentOS 7 VM for the references.
    PS C:\Users\Administrator> (Get-VM -name G2_CentOS7).vmIntegrationService
    VMName     Name                    Enabled PrimaryStatusDescription SecondaryStatusDescription
    G2_CentOS7 Time Synchronization    True    OK
    G2_CentOS7 Heartbeat               True    OK
    G2_CentOS7 Key-Value Pair Exchange True    OK                       The protocol version of the component installed ...
    G2_CentOS7 Shutdown                True    OK
    G2_CentOS7 VSS                     True    No Contact
    G2_CentOS7 Guest Service Interface False   OK
    I attached a simple KVP query Powershell script as
    the follows, and this problem can be reproduced in couple minutes if you run two instances with this script at the same time.
    $VMName = $args[0]
    write-host "$VMName"
    filter Import-CimXml
    $CimXml = [Xml]$_
    $CimObj = New-Object -TypeName System.Object
    foreach ($CimProperty in $CimXml.SelectNodes("/INSTANCE/PROPERTY"))
    if ($CimProperty.Name -eq "Name" -or $CimProperty.Name -eq "Data")
    $CimObj | Add-Member -MemberType NoteProperty -Name $CimProperty.NAME -Value $CimProperty.VALUE
    $CimObj
    $CimObj = $null
    for ($i=1 ; $i -le 10000 ; $i++) {
    $a = Get-Date
    write-host "$i - Time: " $a.ToLocalTime()
    $vm = Get-WmiObject -Namespace root\virtualization\v2 -Query "Select * From Msvm_ComputerSystem Where ElementName='$VMName'"
    $vm.ElementName
    $vmkvp = Get-WmiObject -Namespace root\virtualization\v2 -Query "Associators of {$vm} Where AssocClass=Msvm_SystemDevice ResultClass=Msvm_KvpExchangeComponent"
    $vmkvp.GuestIntrinsicExchangeItems | Import-CimXml
    Actually, if your CentOS VM (has LIS) installed with KVP daemon running well,
    my test script will show more than 4 keys (include NetworkAddressIPv4 or NetworkAddressIPv6 keys).
    However, while the KVP daemon becomes problematic, it will only show a few keys
    (ex. 4~6 keys) and at this moment, Hyper-V Manager also can't show IP address of it anymore and you may need to reboot the CentOS VM to recover it.
    For example (KVP in 252 time is good, but KVP in 253 and 254 times become problematic)
    252 - Time:  8/26/2014 7:19:42 PM
    G2_CentOS7
    localhost                                                   FullyQualifiedDomainName
    3.1                                                         IntegrationServicesVersion
    10.1.145.190;192.168.122.1                                  NetworkAddressIPv4
    fe80::215:5dff:fe91:b902                                    NetworkAddressIPv6
    3.10.0-123.el7.x86_64                                       OSBuildNumber
    0                                                           OSDistributionData
    0                                                           OSDistributionName
    199168                                                      OSKernelVersion
    7                                                           OSMajorVersion
                                                                OSMinorVersion
    CentOS Linux                                                OSName
    129                                                         OSPlatformId
    3.10.0                                                      OSVersion
    x86_64                                                      ProcessorArchitecture
    253 - Time:  8/26/2014 7:19:42 PM
    G2_CentOS7
    localhost                                                   FullyQualifiedDomainName
    3.1                                                         IntegrationServicesVersion
    10.1.145.190;192.168.122.1                                  NetworkAddressIPv4
    0                                                           OSDistributionData
    0                                                           OSDistributionName
    199168                                                      OSKernelVersion
    129                                                         OSPlatformId
    254 - Time:  8/26/2014 7:19:44 PM
    G2_CentOS7
    0                                                           OSDistributionData
    0                                                           OSDistributionName
    199168                                                      OSKernelVersion
    129                                                         OSPlatformId
    I
    found the following patches and gave them a try, but the
    problem still remains after applying these patches and the (generation 2) Ubuntu 14.04 with Linux kernel 3.13 also has this problem.
     - Patch "Drivers:
    hv: util: Fix a bug in the KVP code" has been added to the 3.14-stable tree
     - Drivers: hv: vmbus: Fix a bug in the channel callback dispatch code
    But (generation 1) Ubuntu 14.04 VM with Linux kernel 3.17 doesn't encounter this problem after querying its KVP/IP information on Hyper-V host several times.
    Does anyone know what changes between Linux kernel 3.13 and 3.17 fix this issue?
    Thanks,
    Paul

    Hi Dexuan and Mike,
    Thanks for your help!
    I did the patch with rpmbuild on CentOS 6.5 (with kernel 2.6.32-431).
    However, the second patch cannot patch on CentOS6.5 since there is no target_cpu in such version.
    So we are patching that with the following similar patch but this issue still occurs. (also replace ko in initrd)
    https://lists.ubuntu.com/archives/kernel-team/2014-August/047725.html
    Can you tell me if any patch I could miss or any suggestion?
    Thanks for your time.

  • Go_item(:detail.item) after query(F7) in master, frm-40737

    Dear friends,
    I have a master block and a detail block. When the master block ist queried, I want to go to a disticnt item in detail block, if there are records. Therefore I tried to put code in the post_query of the detail_block, which caused error frm-40737:
    if :evm_jn_lief_artikel_lagort.lagort_id is null then
    go_item('evm_a_liefrant.liefrant_uk');
    else
    go_item('lieferschein.belegnr')
    end if;
    error message says, that I cannot call the restricted procedure go_item in post_query.
    okay, but where can I put this code that it is called automatically after query?
    Thanks
    Silke

    Thank you I tried it, principally it works, but there is a problem left. This is my code in key_exeqry of detail:
    execute_query;
    message('execute_query, lagort_id: ' || :evm_jn_lief_artikel_lagort.lagort_id);
    message('execute_query, lagort_id: ' || :evm_jn_lief_artikel_lagort.lagort_id);
    if :evm_jn_lief_artikel_lagort.lagort_id is null then
         -- keine Artikel am lagerort
         go_item('evm_a_liefrant.liefrant_uk');
         message('evm_a_liefrant.liefrant_uk');
         message('evm_a_liefrant.liefrant_uk');
    else
         go_item('lieferschein.belegnr');
         message('lieferschein.belegnr');
         message('lieferschein.belegnr');
    end if;     
    When t´here are records in the detail block else is choosen, but forms doesn't go the item!
    The 'old' item (from where F8 was pressed) stays activated.

  • LCRs in queue in source Database are not removed after propagation

    Hello,
    I am using Oracle 10g Enterprise Edition 10.2.0.3 databases with Linux in VMware virtual machines. Replication (master-slave) with Streams does it's job quite well, but LCRs in the source queue are not removed after propagation.
    I think this is because the apply process cannot send the notification after applying LCRs. does anyone know if Oracle Streams use a different port (different from standard listener port 1521) for the notifications?
    For some stupid reason I have to run my virtual machine with a NAT network, so I have to do port-forwarding for every single port the VM needs to use. Does anyone know any more ports than Listener (1521) and EnterpriseManager (1158) I need? Any other suggestions?
    Thanks in advance,
    Oliver Jelinski

    Hello again,
    When I wrote "notification" I wanted to write "acknowledgement". So again: does anyone know, how acknowledgements are sent by the apply process (which port)? And when I am right, they are sent to the propagation process, which gives another acknowledgement to the capture process. Does anyone know how this second acknowledgement ist sent?
    Thanks again, looking forward to reading your comments,
    Oliver Jelinski

  • Deleted messages remove after one day (one week, one month) not working

    Has anyone noticed that since the upgrade to iOS 7 automatic email cleanup does not seem to be working?
    I have an IMAP email account set up with the following setting: Settings > Mail, Contacts, Calendars, [then tap the email account in question] > Account > Advanced > Deleted Messages Remove > After one week
    I have had that configuration on my iPhone and iPad for a very long time, and it always deleted everything out of my deleted messages folder (which, on my system, is called Trash) that was older than one week. It would do this no matter when the message was actually deleted, and no matter whether I deleted it on my iPhone, my iPad, on a computer using Outlook, or through a web interface. (It actually would have been nice to retain a message I had just deleted for the one-week period in case I changed my mind; instead the way it worked was if I deleted a message that was received months ago, it would be removed from Trash almost right away. But it worked consistently.)
    Now, since iOS 7, it does not appear to be cleaning out that folder at all. Has anyone else noticed this?
    I'm not sure if it's not removing any messages, or if it's just not removing messages I delete on another platform (like Outlook). So today I've done a test with a specific message that I will watch over the next little while to see how it works. But in the meantime I thought I'd ask if anyone else has noticed this, and if there is a solution.

    Really nobody?
    Is this working properly for people? It's not working for me on either my IMAP account or on an iCloud email accout, so I think iOS 7 broke something here. I've submitted a bug report on the feedback form, but it would be nice to know I'm not alone.

  • Can I remove photo shop 3 using windows add and remove after transfering photos to elements 10

    can I remove photo shop 3 using windows add and remove after transfering photos to elements 10. Will I lose any of these photos in elements 10?

    Yes you can remove it and your photos will not be removed. Un install it from add or remove or from the start menu.

  • Stamps being removed after securing the pdf document

    I'm having a problem with the whitebox stamps that I use to white out names on a pdf being removed after the document is secured through a custom batch process. After insterting the stamps that white out what I want I save the document and when I open it again the white box stamps are still there. Once I secure the same document and open it the stamps are removed. Other computers using the same batch process and version of acrobat do not have this issue.
    Any theories would be much appreciated.

    So I have installed Acrobat 8.0 Pro and used the redaction tool which for some reason was keeping a line showing of the white box I was trying to use to remove some content. Also I put the batch process I was using to secure the document doesn't show up when I go into the Batch Processing menu, neither do any of the default ones show up. It just has an option to create a new process.

  • Applying photoshop filters in After effects layers!

    Hi. Is it possible applying those photoshop filters into After effects layers? I thought the filter worked like layers, so when I import the photoshop files to AE I could drag the filter and apply it on a movie layer! I didn't work! Is it possible? thks!
    PS: I'm using Production premium CS5.5!

    Well, I'm reading the book ADOBE AFTER EFFECTS CS5 CLASSROOM IN A BOOK; chapter 6 (animating layers): it's about importing PSD files to After effects compositions! I was thinking about creating scenarios to a movie using PSD files.  When I apply a layer style to a picture in Photoshop CS5, save this picture, and import this picture to AE it comes likes 2 files: a composition ( picture + layer stile) and a picture without the layer style. I'm gonna use the very same words of the book.
    Though layer styles are referred to as effects in Photoshop, they behave more like blending modes in AE...Another diference is that each layer style blends directly with the underlying layers in the composition, whereas an effect is rendered on the layer to which it's applied, the result of which then interacts with the underlying layers as a whole!
    Well, I have tried to apply a layer style on a movie file of my composition but it doesn't work cuz the layer style doesn't come alone, it comes with the picture!
    So I have figured the following possibility! Take a look in this!
    http://2.bp.blogspot.com/-T5L62G9WLio/UALdatCbrmI/AAAAAAAAAyI/7hQJK_drigg/s1600/Screen19.j pg
    What if I apply a filter in this shot. Will the filter be applied only on the statue or it would be applied on the checkerboard background too? If the second possibility is possible I could apply this image above a movie and use the filter on it, couldn't I? After all the checkerboard background is transparent! Got it?

Maybe you are looking for

  • Connecting EVO headset to a bluetooth laptop

    We have seen quite a number of requests lately on members asking how to connect their EVO headsets wirelessly (via bluetooth). Hence, we have decided to create a thread that will serve as a resource for those who have difficulty pairing their headset

  • VPN no longer working after iOS 8.0.2 upgrade. Anyone having same issue?

    Since I upgraded to iOS 8.0.2, the PPTP VPN configurations no longer connect.  I deleted and re-created the settings, but this did not solve the problem. Is there a way of fixing this?

  • Can you add a Purchase Order with Sales Order as its Base Type using DI-API

    Is it possible to set the basetype on a PurchaseOrder document line to 17 to create a document as you would using the Procurement Confirmation Wizard in the UI? I am using 8.81 SP00 PL09.

  • Web dynpro component usage

    Hi, Can anybody provide me some useful links or some tutorials regarding web dynpro component usage. Thanks in advance.

  • Passing a param to a function

    Okay... So I am having another problem. I have created an array and have no problem passing it to a function as a param via set interval, as follows: // Create a text field and import text from outside txt file this.createTextField("aText", 1, 0, 0,