Trouble on refresh BO Query

Hi,
I have a  model in spreedsheet, that contains BO queries (not web intelligence reports), that use Live Office Connections. These refresh whenever I change de value of a cell, the value of one of them has a formula. For example:
cell A1---> 2010
cell A2--->=A1-1
The problem is in the results in the BO queries. The value of the cell A2 change but not refresh de query. Previously, I configurated de properties of the BO Query, on tab "Request", I have linked the value cell.
I have an other question, what do you recommend? a bo query  on spreedsheet use live office connections or web intelligence use live office connection?
Any idea what's the problem? and how can I solved it?
Thanks

Hi,
Try to use the grid component to verify what exactly shows up when in both the cells in runtime. This way, you will see what actually is happening in spreadsheet.
Your second question: I would say that use the Web Intelligence query whenever you expect data from a formatted kind of report. The other option may be more useful in case for raw data.
Regards,
Gaurav

Similar Messages

  • Error message while refreshing a query

    Hi All,
    I get a error message when i try to refresh a query, the message is "Can only refresh this query against server running 2.0 or higher". Can anyone tell me what exactly this means??
    Thanks in advance
    Kelly

    Hi Kelly,
    Hope you are running the query from Bex. Try running the query in RSRT and check for any error message. Also check for any short dumps in ST22.
    Bye
    Dinesh

  • System error when I refresh a query/WB

    Hi All,
            When I refresh a query/workbook getting following error message and can not proceed further..
    <b>Abort System Error in program SAPLRRS2 and form INITFL_ASSIGN-01</b>
    We are using BW 3.5 and BEX reports.
    I'd appreciate if you could help me on this
    Thanks
    BI Consultant

    What variables are you using in your query? This error essentially occurs when the variable values are not correctly transferred resulting in a high volume data selection. Do you have any mandatory variables in the query? Are they getting filled the first tiem round?

  • Refresh a query, by assigning macro to a object

    Hi,
    I am trying to use an object on a worksheet to refresh a query on another worksheet. I am not quite sure how we do it.
    I looked at the thread, BEx query refresh macro
    But, i do not how to use it. please provide suggestions as to how to proceed?
    Thanks,
    raj

    reposting for suggestions, did not solve my problem yet.
    so far what i know is, i have to assign macro to the object but, do i need record the refresh query or do i need to call the standard funtion,
    "Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
    End Sub"
    But, how do i call or assign this as a macro to the object
    peter knoer, can you provide suggestions?
    Thanks,
    raja.

  • Please select a valid InfoObject appears while refreshing a query

    One of the users is trying to refresh a query (showing a hierrachy). While refreshing the user gets the following message: "Please select a valid InfoObject". I just talked to the user and she is saying it appears from time to time. Does any of you had such problem? What is wrong?

    Hello Jesper,
    We got the same problem after upgrade. We have applyed the note you talked about in your post. It fixes the issue.
    Thank you.
    Best Regards,
    Pierre.

  • Prevent Excel from recalculating when refreshing a query within a workbook

    Hello,
    I have a BEx workbook with 4 queries and a significant number of Excel formulas retrieving and rearranging query data.
    **The issue**:
    When Excel>Tool>Options>Calculation is set to "Automatic" (as it should be in normal situations), refreshing anyone query takes about 2 hours.
    When Excel>Tool>Options>Calculation is set to "Manual", refreshing anyone query takes about 2 minutes.
    Therefore I conclude that BEx does not prevent Excel from recalculating during a query refresh and this cause unacceptable delays.
    **Question**
    Is there any way to prevent to temporarily prevent Excel from recalculating during a query refresh ?
    Thank you.
    Louis

    I have a star schema, ie 5 FACT tables and 7 dimension tables, All fact tables share the same dimension tables, some FACT tables share 3 dimesnsions, while other share 5 dimensions.  
    I did adopt the best practices, and as recommended in the book, I tried to resolve them using Context, as it is the recommended option to Alias in a star schema setting.  The contexts are resolved, but I still have loops.  I also cleared the Multiple SQL Statement for each context option, but no luck.  I need to get this resoved ASAP,
    I checked all the context and they look fine, however when I again go to detect context it asks me to add the context which is already present.  It give me an option to overwrite?  Besides, I also get some Alias options.  However I was told and it was mentioned in the book that Alias is not a good option to resolve loops but context is when you have a STAR SCHEMA.
    Please suggest idea.
    AP

  • Refresh BEx-Query with variant

    Dear all,
    i have a question about refreshing Queries with variants.
    To refresh a BEx-Query (BW3.5) in a Workbook with VBA is no problem.
    For example:
    Run "SAPBEX.XLA!SAPBEXrefresh", False, myRange
    But is there a possibilty to refresh a BEx-Query with a variant (also with VBA)?
    My target is to create a VBA-Tool:
    1 which user can select a single Query and the available variant.
    2 Then push a VBA-Button
    3 After the selection no Variable-Screen will pop-up
       and the refreshing is completed.
    Thanks all

    Hi Ashok,
    refreshing Queries automatically on Workbook open is standard...
    What i need is to refresh a Query with variant (saved variable-values for a query e.g. the name of the variant is "ZMYVARIABLES").
    The user should not select an existing variant (ZMYVARIABLES)
    manually with Shift+F5 (Get Variant) on the Query-Variable POPUP-Screen.
    What i need is a codefragment which implement that all.
    Pseudo code:
    Sub RefreshQuery(QueryID As String, Variantname As String)
    End Sub
    Thanks,
    Erol

  • How to refresh a query in Portal?

    Hi Friends!
    I have a query (bex) which is published in portal.
    I need refresh the query but I dont see any button for this.  How can I do it?
    note: I need refresh only the query, not all the web page .
    Thanks!!

    closed

  • Refreshing ADF Query Component after changing some property of a criteria

    Hi All
    Use Case : Refreshing ADF Query Component after changing some property of a criteria attribute.
    I have a query panel with 2 query criteria i.e. FirstName and DepartmentId where in DepartmentId is a drop down. The scenario is like when change the value of DepartmentId to 'Finance' with code value of '100' then my criteria attribute 'Firstaname' should be invisibe(queriable=false).
    Approach: Have overriden the queryOperationListener of adfquery as " queryOperationListener ="#{backingBeanScope.backing_queryLstener.processQueryOperation}" "
    My backing bean method goes as below :
    public void processQueryOperation(QueryOperationEvent queryOperationEvent) {
    // Add event code here...
    if( queryOperationEvent.getOperation().equals(queryOperationEvent.getOperation().CRITERION_UPDATE) ){
    DCBindingContainer bindings = (DCBindingContainer)this.getBindings();
    DCIteratorBinding iter =bindings.findIteratorBinding("EmployeeView1Iterator");
    ViewObjectImpl voimpl = (ViewObjectImpl)iter.getViewObject();
    ViewCriteria vc = voimpl.getViewCriteriaManager().getViewCriteria("EmployeeViewCriteriaDemo");
    Row currRow = vc.first();
    System.out.println("Department :"+currRow.getAttribute("DepartmentId"));
    if( (Integer)currRow.getAttribute("DepartmentId") ==100 ){
    AttributeDef[] attrs = voimpl.getAttributeDefs();
    int attrIndex = voimpl.getAttributeIndexOf("FirstName");
    ViewAttributeDefImpl attrDef = (ViewAttributeDefImpl) attrs[attrIndex];
    attrDef.setQueriable(false);
    // AdfFacesContext.getCurrentInstance().addPartialTarget(getQryId1()); //here i need to refresh the query component which is not happening
    // refreshQueryComponent(getQryId1());
    Everything is happening as expected but the query panel s not get refreshed.When i refresh the whole link/page then i can see the change.
    Please suggest.
    Thanks in adv.
    -Sanjeeb

    Hi,
    can's say anything about the first part of the question as more insight to the implementation would be required. However, have a look at http://www.oracle.com/technetwork/developer-tools/adf/learnmore/83-bidi-synchronization-tree-form-401841.pdf, which may be what you are looking for
    To the second part: You can programmaticallly refresh the tree component from a managed bean. So instead of using the declarative PPR option (or ChangeEventPolicy set to PPR on the iterator binding) you can wire the submit button to the managed bean, perform your validation and if it fails don't refresh teh tree
    The call is
    AdfFacesContext.getCurrentInstance().addPartialTarget(the_tree_instance)
    Frank

  • Multiple Rows Update / Refresh Toplink Query when database trigger involved

    Hi everybody!
    I have two easy troubles for you; the platform is the same as the SRDemo Toplink version.
    1.     Multiple Rows Update: I want to update with mergeEntity method, multiple rows for an isolated table; that method receives a parameter that I try to bind with the iterator "dataProvider" but it only merges the first row, not all, any other combination returns an error.
    What I want to do is to have a form (like tabular forms in Apex) that lets me update multiple rows in a single page. ¿May anyone tell me how to do it?
    2.     Refresh Toplink Named Query: I have a list on a page with two columns. From another page, a button does an action that fires a database trigger that updates one of the columns on the list´s page. When I go back to the list, it is not updated; however, the CacheResults´s property is set to false on the iterator.
    Thanks in advance,
    Alejandro T

    I didn't use it (yet), but - you might take a look. You'll find a [url http://www.oracle.com/technetwork/developer-tools/apex/application-express/apex-plug-ins-182042.html]Timer plug-in on this page. It is a dynamic action which allows you to periodically fire other dynamic actions in the browser. For example use the timer to refresh a region every five minutes. You can perform any dynamic action you want using this infrastructure.So I was thinking: you might use it to run a dynamic action which would check whether something changed in that table (I suppose you'll know the way) (for example, a database trigger might set a flag in some table, timestamp or similar), and - if you find that something really changed - refresh the page.
    As I said, I never used it so that's pure theory. Someone else might know better, though.

  • Oracle ADF - Refresh quick query for a table in the pop up.

    Hi,
    I am using Oracle jDev 11.1.1.4.0
    In my application I have a Find button in jspx.
    Onclick of Find button, a popup opens.
    When I search for a record by name in QuickQuery, suppose - I entered name as jon.
    It gives me the correct result.
    Now when I close the pop up and again click on Find button, that previous search remains as it is in the pop up
    and also the previous criteria in quick query search region as "jon".
    I have changed the refresh property of iterator(of table in popup) in pageDef
    But still not working...
    How to refresh that search region for every subsequent Find click.
    Appreciate your help.
    Thanks,
    Madhav

    do u changed refresh > ifneeded or always.
    user.
    r u luking for partially page rendering.
    by using ppr. we can refresh.
    if so.
    http://www.adftips.com/2010/10/adf-ui-refreshing-page-or-region.html
    http://biemond.blogspot.com/2007/11/how-to-refresh-region-in-jdeveloper-11g.html
    Re: ADF Region Interaction
    Edited by: Erp on Sep 27, 2011 4:37 AM
    Edited by: Erp on Sep 27, 2011 4:42 AM

  • "Could Not Find Installable ISAM" While Refreshing Access Query Connection

    This error occurs when an Excel 2010 client attempts to refresh a connection to a Microsoft Access DB (*.accdb file) query.
    This query was previously working in Excel 2010, but stopped working the first time Access 2013 was used to save the database file.  The query remains working perfectly from an Excel 2013 client.
    Given the above, I don't think it is an issue with the connection string:
    Provider=Microsoft.ACE.OLEDB.12.0;User ID=Admin;Data Source=W:\Data\SLA\Contacts.accdb;Mode=Share Deny Write;Extended Properties="";Jet OLEDB:System database="";Jet OLEDB:Registry Path="";Jet OLEDB:Engine Type=6;Jet OLEDB:Database Locking Mode=0;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False;Jet OLEDB:Support Complex Data=False;Jet OLEDB:Bypass UserInfo Validation=False;Jet OLEDB:Limited DB Caching=False;Jet OLEDB:Bypass ChoiceField Validation=False
    From a client's machine that is using Office 2010, I opened the DB in Access and executed the query fine.  Switching back to the Excel file that has the connection I noted it still failed.
    So, still in Excel 2010, I created a new workbook and setup a new fresh connection to the DB.  It worked fine.  So I compared the connection string it built and it was different.  So it's down to this:
    And one other example from a different Excel workbook connecting to a different query in the same DB. Same issue.  Whatever connection string 2013 Excel generates, is not backward-compatible with Excel 2010:
    Shawn Keene

    Thank for your feedback, Shawn.
    I have no idea why we would get the such error when we save the db via Access 2013.  Adn as my mind this problem is data platform
    relevant. We may post a thread to post a thread to the following forum to get more help.
    http://social.msdn.microsoft.com/Forums/en-US/home?category=dataplatformdev Data platform
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=accessdev  Access for Developers
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Background refreshing of query in BI 7

    Hi,
    We have upgraded Bi from 3.1 to BI 7. Our immediate need is we want to refresh query in background and want to mail to specifiv user group insted of manual refresh.
    can u pls share documents which will give stepwise details for doing the same.
    Regards,
    Vrushali.

    Hi,
    Use Information Broadcasting with auto refresh time interval through WAD. Information broadcasting is a technique to automate the query run and being sent as an email attachment to relevant user.

  • Var processed through ZXRSRU01 refreshed on query open but not on worbook

    Hello group,
    I have a variable that is calculated automatically through the ZXRSRU01 user-exit and this definition is correct (I_STEP=1).  I want to prompt my users with this initial value and they have the option to change it if they want to.
    This whole design is working fine.  From BEx Analyzer, whenever I open my query, I see the correct behaviour. 
    However, when I open the workbook that is based on this query, the default value being showed, is an old value (Probably the calculated value when I initially created the workbook) so it seems that the newest value is not being sent to the workbook.  I've looked at the setting within the workbook but can't find anything about this.
    Any genius idea?
    Thank you & regards,
    John.

    Hi John.
    Maybe you need to uncheck the "Process Variables on Refresh" in [Workbook Settings|http://help.sap.com/saphelp_nw70/helpdata/en/54/a493f7256b43698191a2623e5a0532/content.htm]:
    Process Variables on Refresh
    If any query in your workbook contains variables, any current values set for the variables are part of the query view definition and are therefore stored in the workbook.
    Set this indicator if the values saved in the workbook are to be used automatically.
    Note
    If you also set the Refresh Workbook on Open indicator, the variable dialog is always displayed when a workbook is opened. The values previously saved are automatically selected in the variable dialog; however, you can change these values
    So, if you UNCHECK the "Process Variables on Refresh", you should get the behaviour that the saved values are NOT used automatically. Whether your exit is called again for the variable an filled with the correct "current" default value, I don't know...
    br
    Jacob

  • Unable to refresh the query

    Hi All,
    In my system MS office visio was installed and by that day i am unable to refresh query and its giving error "The macros 'Sapbex.xla!queryrefresh' cannot be found".
    I have checked the file sapbex.xla and ffound in the path c:\program files\sap\frontend\bw . Please suggest ASAP.
    Regards
    Sunil

    un answered.

Maybe you are looking for

  • Regarding alv report

    can any one help on this.   i have to develop a report using alv to display the list of open sales orders blocking at billing level or delivery level.    how should i approach this.and steps.thank you.

  • I am trying to update my version of firefox but it keeps telling me that i don't have sufficient privaleges to update, what does that mean?

    I am running mac os x 10.5.8, my firefox crashes during use at various times. I am trying to upgrade from firefox 8.0.1 to 9.0 but when i try to install it will not let me because it says i don't have sufficient privileges. What does that mean and ho

  • WBS element and Cost Center

    Hi Gurus, As far as I know, when the a/c assignment category is P in a PO, the costs are assessed on the cost object WBS element and when the a/c assignment category is K in a PO, the costs are assessed on the cost object cost center. But, as I drill

  • How to avoid starting of workflow ?

    hi there, i have a problem: on BO BUS2089 (Travel) i have a event 'CREATED' on that event i have a workflow. everytime the event is raised the workflow starts. so far so good, BUT: i ONLY want to start the workflow when the travel-request is created

  • J2ME distrubuted transactions.

    Hello all, We have implemented MIDP application that is used for performing secured transactions. The problems is that there is nothing in J2ME that supports distributed transactions like J2EE JTA architecture. We are therefore forced to implement ou