Allow refresh of individual queries in workbook is not working

Hi,
We are in EHP1 SP08, BI Analyzer 7.20 SP2 .
In workbook I have 2 queries I checked the "Allow refresh of individual queries"  but I am unable to refresh my queries individual .
I tried all the options by removing "Process variables on Refresh", " Refresh workbook open" ,Display duplicate variables once.
I appreciate if anybody share with the solution
we are using OFFICE 2007.
is there any setting required in Excel.
I am thinking "CALLBACK" Macro may not functioning correctly.

Hi,
The main disadvantage of workbook frequently this issues are coming .check the query if any one changed .then try to create a check box again.
Regards
sivaraju

Similar Messages

  • The Restriction option to NOT ALLOW CHANGES to Mobile or Cellular data does not work why is this ?

    The Restriction option to NOT ALLOW CHANGES to Mobile or Cellular data does not work why is this ?

    Hi there,
    You may want to try force closing all open apps and resetting the device as an initial troubleshooting step. Take a look at the articles below for more information.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/ht1430
    Additionally, you may want to try completely disabling and re-enabling restrictions.
    -Griff W.

  • My mac has had refresh and install now my password will not work on the hardrive how do i change this?

    my mac has had refresh and install now my password will not work on the hardrive how do i change this?

    Boot from your install disk and when you reach the Install screen choose Change Password from the Utilities menu.
    Also check this Apple article http://support.apple.com/kb/HT1631

  • Old queries from Windows XP not work in Vista

    Some queries produced with the version Oracle BI Discoverer 10.1.2.1 and Windows XP Pro SP2 do not work with the version 10.1.2.3 and Windows Vista. New queries runs normally. Can you help me? Thanks.

    I have solved the problem! I used Mediainfo and determined they were .dv files (not a format I was ever familiar with!) which of course just stands for digital video.
    I renamed them with .dv and quicktime recognized them.
    Thanks for offering help and hopefully this helps someone else.

  • How can I combine two queries ? QoQ does not work

    I have one query where I just count the total qty coming in per month, something like:
    <cfquery name="qryIn" datasource="dbname">
    select count(orderNO) as totalIN,month
    where status = "IN"
    group by month
    </cfquery>
    I then have a second query to count the total qty going out per month
    <cfquery name="qryOut" datasource="dbname">
    select count(orderNO) as totalOut,month
    where status = "OUT"
    group by month
    </cfquery>
    I then use QoQ to combine both:
    <cfquery="qryTotal" dbtype="query">
    select
    totalIN,
    totalOUT
    from qryIN,qryOUT
    where qryIN.month = qryOUT.month
    </cfquery>
    The problem I am running into is that QoQ does not allow LEFT JOIN, so that if the month is in one query but not the other, it will not pick up that record. And that is throwing off my counts.
    How can I combine  both queries, and bypass QoQ to get a qty IN and qty Out value, per month ? and, for example, if qty in exists for one month and qty Out does not exists for that month, then qty Out will be zero for that month.
    I need this data to plot a chart.
    Thanks for any help provided.

    Do it in a single query to your database.  Here is part of it.
    select month
    , sum(case when when status = "IN" then 1 else 0 end) total_in

  • Saved Queries in Business Partners not working

    Hi All,
    I have 2 saved queries that populate the following Business Partners fields with default data:
    Group - I have a default group for a Vendor and a different default group for a Customer
    ShipType - I have a default Ship Type for a Vendor and a different default Ship Type for a Customer
    To trigger these saved queries, I have used Auto Refresh when BP Type changes.  The problem I am having is you have to change the field from Customer to Vendor and back to Customer again to trigger the saved queries for a Customer.
    Questions: 
    Is there an alternative to using BP Type that will trigger the saved queries that return a different result depending on the BP Types?
    Should I set the default programically instead? And, if so, what event will capture if an 'Add' is a customer or a vendor - keeping in mind you do not change the combobox for customer (because it is already displayed in the combobox as the default in SAP)?  Also, keep in mind the combobox value is returning =Nothing unless I physically change it.
    Any suggestions would be greatly appreciated!
    Ramona

    Hi All,
    I would like to let you all know I have used the following to solve my question:
    1)  The event that works well at capturing whether the data returned is a Customer, Vendor or Lead in FIND mode (when the form is first loaded)is SAPbouiCOM.BoEventTypes.et_FORM_DATA_LOAD.
    I have set default data and default UDF categories depending on if the data returned is a Customer, Vendor or Lead.  I have removed the saved queries.
    2)  For the ADD, I have used a menu event that will force the combobox to change from the default of "customer" to "vendor" when someone clicks on the add button.  Then I have added code to the Combo_Select Event that will populate the defaults.
    I appreciate the responses I received.
    Ramona

  • After Refresh of Test System XI connection is not working

    We are using SRM 4.0 in ECS and recently did a refresh to our Quality system.  After the refresh we went through the normal post refresh activities and assumed that everything was ok.  We started creating test shopping carts and PO for XML vendors and nothing is going out through XI.   I have ran tcode sxmb_moni to check to see if any error message are occuring but there are no messages in the system.
    We have restarted the server but can't seem to get anything to go out through XML.
    Can anyone provide any information or some things to check?

    Hi
    First check the setting in 'Define backend systems' if the SLD system name is correctly entered for your EBP system. Then using txn SLDCHECK, you can check connectivity to XI.
    You can also check txn SXMB_ADM to see if the integration server connection is correctly defined.
    Regards,
    Sanjeev

  • Queries running under JBoss Not Working

    I'm using Kodo 2.3.2 running under JBoss.
    It seems like if I attempt to run the same JDOQL query within a single
    transaction under JBoss the second time I run the query I see that Kodo
    appears to be querying the entire extent of my class instead of performing
    my JDOQL query.
    For example,
    I have a simple JDOQL function like:
    runQuery()
    Extent e = aPM.getExtent (Persname.class, true);
    String aFilter, anOID;
    aFilter = "pers.objid == aObjId";
    // Create a new query for the specified class and filter
    Query query = aPM.newQuery (e, aFilter);
    query.declareParameters("double aObjId");
    // execute the query
    Collection aColl = (Collection) query.execute (aPersOID);
    if ( aColl == null )
    this.setResults("ERROR: NULL collection returned from query");
    return false;
    } // end if
    // iterate the results and close the query
    If I call this method twice in my session bean I see this the first time
    (which is correct SQL):
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROM Pers
    t1, PersName t0 WHERE (t1.ObjId = '44946832753163' AND t0.PersObjId =
    t1.ObjId)
    Then on the second call to the method I see this:
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROM
    PersName t0
    connect:
    jdbc:microsoft:sqlserver://ML1JXT0C:1339;DatabaseName=SMSTHtndIT6DJDO;Select
    Method=cursor (sa): 1
    then Kodo seems to iterate the entire table using all the primary keys.
    Has anyone seen anything like this?
    Also, when I run more than one query, the second query performs
    significantly slower (5 - 6 seconds).

    Fred,
    That was the problem, once I configured IgnoreCache=true I didn't see that
    behavior anymore. Thanks..
    "Fred Lucas" <[email protected]> wrote in message
    news:[email protected]...
    What is the javax.jdo.option.IgnoreCache property set to? If this is
    set to 'false' and you run a query after modifying an object in the
    transaction, then we perform the entire query in-memory, for transactional
    consistency reasons.
    -Fred
    In article <[email protected]>, TJanusz wrote:
    I'm using Kodo 2.3.2 running under JBoss.
    It seems like if I attempt to run the same JDOQL query within a single
    transaction under JBoss the second time I run the query I see that Kodo
    appears to be querying the entire extent of my class instead of
    performing
    my JDOQL query.
    For example,
    I have a simple JDOQL function like:
    runQuery()
    Extent e = aPM.getExtent (Persname.class, true);
    String aFilter, anOID;
    aFilter = "pers.objid == aObjId";
    // Create a new query for the specified class and filter
    Query query = aPM.newQuery (e, aFilter);
    query.declareParameters("double aObjId");
    // execute the query
    Collection aColl = (Collection) query.execute (aPersOID);
    if ( aColl == null )
    this.setResults("ERROR: NULL collection returned from query");
    return false;
    } // end if
    // iterate the results and close the query
    If I call this method twice in my session bean I see this the first time
    (which is correct SQL):
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROMPers
    t1, PersName t0 WHERE (t1.ObjId = '44946832753163' AND t0.PersObjId =
    t1.ObjId)
    Then on the second call to the method I see this:
    SELECT t0.ObjId, t0.PersObjId, t0.StpDate, t0.StrDate, t0.TypeCd FROM
    PersName t0
    connect:
    jdbc:microsoft:sqlserver://ML1JXT0C:1339;DatabaseName=SMSTHtndIT6DJDO;Select
    Method=cursor (sa): 1
    then Kodo seems to iterate the entire table using all the primary keys.
    Has anyone seen anything like this?
    Also, when I run more than one query, the second query performs
    significantly slower (5 - 6 seconds).
    Fred Lucas
    SolarMetric Inc.
    202-595-2064 x1122
    http://www.solarmetric.com

  • Filter, Information, Chart Buttons in the workbook are not working

    i created a wokbook and done some modification.
    When i click on one of these Buttons ( Filter, Information, Chart ) it is not working. How can i repair it?
    Thank you in advacne.
    Cheers

    Hello Ananda,
    than you for replying.
    How to check if the macro is available for the button?
    The button should work with the macro because once clicking on it it can show information, filter, table , grap and so on.
    I would just want to know how to find the macro.
    Thank you
    Cheers

  • Queries on multiprovider not working correctly

    dear all,
    our bw version is 3.5.After applying patch level 20 we are getting the problem like the queries on multiprovider are not working correctly. can any one suggest us and guide how we can trouble shoot.
    regards,
    sekhar reddy

    dear Bhanu,
    we have multiprovider on two cubes.Before applying patches each row of the multiprovider shows the merged data from both providers. but now the multiprovider is showing data in two rows .means merging of data is not hapenning.
    regards,
    sekhar

  • Refresh individual queries within a workbook in SP20 EHp1 System

    Hi,
    Currently we have upgraded our BI system to EHP1 pack for SP20. Now we are in BI7.01. We have found in SAP release notes for EHP1 like " in BEX 7 analyzer we will able to Refresh individual queries within a workbook:".
    Can you please tell me how to acheive that, as when we are trying to do it refreshes all the sheets.
    Also in Global settings tab " Allow single data provider refresh" is disabled. Kindly tell me step by step procedure to acheive this,
    Thanks

    Hi Krishna,
    Really thanks for your instructions. We have enabled hte "refresh on individual workbooks" in the workbook settings tab adn we are able to see the same in the context menu of the analysis grid.
    Again i have few doubts.
    I can able to see two options as below.
    1. Refresh
    2. Refresh this query.
    What is the difference between this two?. Also when i click the "refresh this query" it shud display the "selections screen of the particular query", But it is not at all showing me a selection screen,
    What i am doing is.. I am simply doing "refresh this query" option that will refresh my screen first adn i am doing change variables.
    That will give me the selection screen of the particular query. If i am not doing so, all workbooks are refreshing,
    Please advice, whether selection screen of the particular query can be shown when clicking "refresh this query".
    Thanks/

  • Refrsh individual queries within a workbook

    Dear Experts,
    We have implemented Enhancement package 1 SP-04 in our BI system.
    1 of the new functionalities provided with this upgrade was
          " Single dataprovider refresh is possible , vs a Global refresh of all the queries in the workbook "
    But we can not see any such option in workbook setting.
    It would be of great help if you can provide in your valuable inputs to solve this issue.
    Regards
    Vaibhav Halde

    Hi Chandrashekhar,
    Thank you for your input.
    It will surely work if you refresh query Q2 and not query Q1.
    Our issue is that along with enhancement package 1 SP04 we should have got a new check box on general tab in a workbook setting.
    Initially...workbook setting-general tab - there was a check box - Refresh workbook on open
    after upgrade there should have been a new check box : Refresh individual dataprovider
    but that is not the case.
    We want to know reason behind this ?
    or
    Does this functionality really come along with EHP1 SP04 or with any other support package?
    Regards
    Vaibhav Halde

  • Use of Variable - Refreshing the Queries in Workbook

    Hi All,
    I have a workbook which contains 5 Queries. All these queries uses the same variable. While I am refreshing all the  queries in the workbook, it pops-up the variable input screen 5 times.
    Here I just want the variable screen appear to be once and the same input be taken to all the queries.
    We are in 3.x.
    In 7.x Analyzer, I know that When you have multiple queries(with variables) embedded in a single workbook, we can use "Change Variables" icon to acheive the same.
    How can I achieve this in 3.5.
    Thanks in advance.
    Siva
    Edited by: Siva Reddy S on Jun 9, 2009 10:32 AM

    Hi Joke,
    Thanks for your reply.
    The option "save and reuse variable values" is something to do with the input values to save and reuse the same for the next time execution.
    Here I just wanted to input the variable at one query and the same value needs to be taken to all the queries. The Variable used in all the queries is the same one.
    Thanks again..
    Any body any inputs.
    Siva

  • Automatic refresh of queries into workbook

    Dear SAP fans,
    I am using a workbook with 2 BEX queries and some VBA coding for each "onRefresh".
    I set both queries to "refresh query when opening the workbook" so that my workbook is automatically updated when I open it.
    Unfortunately the "system" automatically refreshes the queries in the "wrong" order. Therefore my result in incomplete...
    Any idea to refresh the queries in the right order?
    Alternatively, I was thinking to refresh the second query via VBA coding, but I can't get it right...
    Thanks in advance for your help!!
    Kind regards
    Julien

    Hi both,
    Thanks a lot for your great answer:
    S.Sankaran,
    I saw the same behaviour, but was not quite sure it will be the rule...
    This solution does work!
    However I would be happy to use Sebastian solution, which sounds cleaner and more flexible...
    Unfortunately I do not manage to make it work: I do not manage to get the option definition..
    Seastian,
    Could you help me to open the object katalog of the sapbex.xla?
    Thanks again both of you!
    Julien

  • Queries in workbook switched to non input ready automatically

    Hi,
    For some reason in a workbook (maybe locking issue or workbook change), the queries in the workbook become not input ready. To fix the problem, we need to go in each query and select the Option "Allow entries of planned values".
    Would anybody have some idea about to fix the issue?
    Thanks a lot,
    Patrick

    Hi ,
    I rem I had the same issue . I dont have access to IP currently , however in the properties of the analysis item for the data provider there should be an option called "Always open in input mode".Once I checked that the planning query always opened in input mode.
    Also on the planning query there should be an option as well.
    Thanks,
    Madhu

Maybe you are looking for