2.1 EA1: Query Builder does not update View Results query

When using the Query Builder, if you click onto the View Results tab to see the current query results, then go back to the "Select Columns" or "Create Where Clause" tabs to change the query, the "View Results" tab still shows the results of the original query even if none of the tables or columns from the original query exist. Clicking the Run Report button or setting a refresh interval has no effect.
On a further note, the query builder still is not reentrant, in that you can't select (highlight a portion of or position the cursor within) a query and open the query builder for that query to graphically make modifications.

Sentinel,
The issue is known and is listed in the known issues in the release notes for the early adopter. We hope to have this addressed for production.
The re-entrant query builder is still on our list of things to do. We plan to rewrite the Query Builder and address a number of the requests related to this feature. I'm hoping to make it a priority for the next release.
Sue

Similar Messages

  • My query prompts does not appear in the Query prompt order list!

    Dear colleagues,
    All of my query prompts does not appear in the Query prompt order list in properties of the query. It seems random which of them that appears there and not.
    This makes it impossible for me to control or change the order of prompts, instead they order themselves alphabetically.
    Is this some kind of bug? Is there a fix for this problem?
    Regards
    Silje

    Hi Stratos,
    We use Edge.
    Correction- we use Enterprise, changed a few months ago!
    By the way, we heard about a bug that probarly causes the problem.
    If the query has ever had a prompt containing 'Between', all prompts created afterwards will not appear in the prompt order list! Even if the between-prompt is deleted.. We still havent heard about a fix for this, please contact me if you hear anyting. It is not an option to create all the queries from scratch again!
    Silje
    Edited by: Silje Mari Sunde on Oct 22, 2009 9:24 AM

  • CM14 BI Publisher - modifying an existing Data Model, the Graphic View in Query Builder does not display

    I am trying to edit the default forms/reports that come with CM14, trying to edit the data model, data set, (to get to the old Infomaker style graphic view) , the Query model does not display (error the list of tables is too long..) Oracle tell me the limit is 60,  there are not 60 tables referenced in any CM report.
    Does this Query builder view work at all on any report?
    (bigger question, we are moving from CM12, should we move to CM13 which works with infomaker?)
    Thanks,
    Paul L

    Kurt, thanks for your replies.
    A couple of notes/clarifications.
    1.     You are correct that BI works better in Firefox--I have observed issues with the BI display when using IE.  I would recommend using Firefox too.
    2.     You are correct about the way to get to the Query Builder to see a graphical view of data tables.  There are basically two issues with this that I mentioned, but will re-iterate:
    a.  If you have an EXISTING query in the data set, then click the "Query Builder" button, this will remove the existing query that's there, it will NOT display the existing query in the query builder.  Query Builder works only to create a NEW query from scratch.
    b.  Query builder is limited to selecting 60 fields max in your query.  If you are creating a large report with many tables, you may find that 60 fields is not enough.  For that you will have to work in the SQL edit screen rather than using the query builder.
    I would impress on anyone developing CM14 reports that they become familiar with the database schema and relationships to avoid problems when developing your BI reports.  You should be able to find the tables and joins documentation in the knowledgebase.

  • App builder does not update changes to folio

    I've been trying to update a single edition app (prior to submitting to the app store) but each time I update the Folio and build a new version, I see only the previous folio with no alterations. It seems that app builder just recreates the original folio no matter what changes I make. I've tried updating all articles in the folio, have deleted and reuploaded the articles with changes. I'm confident the new information is in the DPS online system but the data does not seem to make it to the app builder. Anyone come across this? Have I missed something?

    Hi Neil
    Thanks for that information, that does explain the situation.
    I personally have a CC subscription though the client I am developing the app for does not, hence the serial number. It should be no problem for me to generate another app using my own account. Having said that, this was not my understanding of how the single edition serial number worked. I was under the impression that the serial number was not considered redeemed until Apple had accepted the app which implies that it would be possible to generate further versions should amendments be required.
    As an ACI in various Adobe applications and a professional trainer and production consultant it does concern me that this information was not made more clear by Adobe.
    Anyway, this should get things sorted for now so thanks again for responding so quickly. Much appreciated.
    Regards
    Scott

  • Query Builder does not appear in my APEX installation

    I cannot find a button or tab to access the Query Builder. Either I am looking in the wrong place (SQL Workshop) or it was somehow not installed?
    Thanks.
    LVS

    Thanks, but my problem is that that button is not there.
    On the main page I have a big button named "SQL Workshop". When I click that I get 3 big buttons - "SQL Command Processor", "User Interface Defaults", "Create Object".
    The same page has another region called "Database Browser" with other smaller graphic buttons and another region for "SQL Scripts". But nothing that says SQL Builder.
    Message was edited by:
    [email protected]

  • SQL Developer 1.1 Query Builder does not display connection tree

    I have installed SQL Developer 1.1 on a PC running Windows XP SP2. I am connecting to Oracle 9.2.0.7.0.
    After connecting to the database, I right click in the SQL Worksheet and select Query Builder and when the new window is displayed, there are no tables to select from.
    What is causing this?

    Hi Antony,
    Upgrading from SP7 to SP9 fixed a lot of problems for me! It's worth trying.
    Problems solved for me:
    Page requests take about 2 minutes to display page (now within a few seconds)
    KM SQL logging (30-50Mb per minute) problem fixed.
    There are some problems upgrading to SP9, but searching this forum will help you in finding some solutions for this
    Regards,
    Noel

  • Trigger does not update the results?!?!? Am i wrong?

    Hi all. I have small problem with oracle forms 10g and VBean that is inside a oracle form.
    My bean communicate with the form with set and get property methods like this:
    protected static final ID a = ID.registerProperty("a");
    public Object getProperty(ID property) {
              if (property == a) {
    String string= returnRandomString();
                   return string;
              } else
                   return super.getProperty(property);
    and i have a button in the form, that on the trigger when-button-pressed is executing the following pl/sql
    randomString:= Get_Custom_Property('PERSONAL_DATA_FORM_BLOCK.SIGN_FORM_BEAN_AREA', 1, 'getSignedDataAsBase64');
    When I press the button it returns me some string, but when i press it for second time it returns me the same string as the first time(the method returnRandomString() always returns different strings). So The info is not refreshed. Am i wrong somewhere or this is the correct behavior. As it is trigger it must be triggered every time i press the button, right?
    Finally is there any way to call a method placed in my class (that is extending VBean) from pl/sql trigger and how?

    the property should be read every time.
    protected static final ID a = ID.registerProperty("*a*");
    randomString:= Get_Custom_Property('PERSONAL_DATA_FORM_BLOCK.SIGN_FORM_BEAN_AREA', 1, '*getSignedDataAsBase64*');i guess its just because you posted examplecode that the property-names do not match ?!?
    To check if your method is called in the bean you could try a System.out.println(randomString); in the java bean and look into the concole of Jinitiator/Sun Plugin?
    just to make sure: Sure that returnrandomstring() returns something different for each call?

  • Desktop apps: Report Builder 3.0 (x86) that does not let me allow query result which I created Customers Report. Here is the error message returns.:

    Desktop apps: Report Builder 3.0 (x86) that does not let me allow query result which I created Customers Report. Here is the error message returns as following.
    Database query from: AdventureWorks2014
    System.Web.Services.Protocols.SoapException: The permissions granted to user 'SQLServer2014\Mubs' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to
    user 'mujb-HP\mujb' are insufficient for performing this operation.
       at Microsoft.ReportingServices.Library.ReportingService2010Impl.CreateReportEditSession(String Report, String Parent, Byte[] Definition, String& EditSessionID, Warning[]& Warnings)
       at Microsoft.ReportingServices.WebServer.ReportingService2010.CreateReportEditSession(String Report, String Parent, Byte[] Definition, String& EditSessionID, Warning[]& Warnings)
    The permissions granted to user 'mujb-HP\mujb' are insufficient for performing this operation.
    Is there anybody help me out, pl
    My MSSQL Server express 2014 edition x64  and My desktop "Report Builder (RB) 3.0' is 32bit (x86).
    Does Report Builder x64 exist? I didn't see anywhere so I downloaded x86 RB

    Hi mujb,
    Per my understanding you are using the report builder 3.0 to design the report and when you click the query designer button to execute the query you got the error message above, right?
    I have tested on my local envornment and your issue can be caused by the user "SQLServer2014\Mubs"  and "mujb-HP\mujb"  haven't grant permission to the report server or the shared dataeource/dataset if you have used this.
    I would like to confirm if you have assigned both the Item-Level and System-Level role of the user above to sucessfully access the report server, If you haven't grant any access to the above user and when you connect to the report server in the report builder,
    you may got the error message:
    More details information below for your reference:
    Please execute the query in the microsoft SQL Server Management Studio to see if you have permission to execute the query.
    If the query works fine in step1, please run the report builder as Administrator and if you are using the shared datasource/dataset the issue can be cause by the you haven't grant access the share datasource, Double click to open the Datasource
    and click the "Test Connection" as below to test if it can connect successfully:
    If the "Test Connection" failed, please click the shared datasource/dataset on Report Server to check if you have grant correct permission.
    Related information about the grant permission to report server for your reference:
    https://msdn.microsoft.com/en-us/library/ms156034.aspx
    http://www.allenkinsel.com/archive/2013/01/adventures-in-ssrs/
    If your issue still exists, please try to provide more details information.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • SSRS 2012 (SP Integrated) report on SP 2013 PerformancePoint Dashboard: when too many filter items selected together report does not update anymore!

    I am having a situation with SSRS 2012 (SP-integrated) report rendered on SP 2013 PerformancePoint Dashboard using linked PerformancePoint (PP) filters.
    The report works fine as long as too many PP filter items are not selected at the same time. When gradually selecting more items from the filter, the report updates itself until more than a sepecific numer of filter items are selected - the report simply
    does not update itself anymore. This "specific number of filter items", when hit, generates the following error in ULS:
    An exception  occurred while rendering a Web control. The following diagnostic information might help to determine the cause of this problem:  System.UriFormatException: Invalid URI: The hostname could not be parsed.    
     at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)    
     at System.UriBuilder..ctor(String uri)    
     at Microsoft.PerformancePoint.Scorecards.ServerRendering.ReportViewControl.ReportUrl(SqlReportViewData sqlReportViewData)    
     at Microsoft.PerformancePoint.Scorecards.ServerRendering.ReportViewControl.RenderSqlReport(TextWriter writer, ReportView sqlReportView)    
     at Microsoft.PerformancePoint.Scorecards.ServerRendering.ReportViewControl.RenderReportViewControl(HtmlTextWriter writer, ReportView rv)  PerformancePoint Services error code 20700.
    I already know that the cause of the issue is in the length of the query (perhapse RDL or MDX) that the browser is supposed to pass on to the instance of SSAS.
    Some people had suggested a workaround that was suitable for older versions or non-integrated SSRS (see here: http://social.msdn.microsoft.com/Forums/sqlserver/en-US/cb6ede72-6ed1-4379-9d3c-847c11b75b32/report-manager-operation-cannot-run-due-to-current-state-of-the-object).
    Knowing this, have already done the changes suggested (adding the lines suggested to SP's web.config for Reporting and the web.config of the site on which report is rendred) at no avail, just to make sure.
    I have rednered the same report on the same dashboard using SSRS filters and there is no problem; it just works fine. This has to be a bug in PP that is causing this.
    Has anyone had the same problem with SSRS 2012 (SP-integrated) report rendered on SP 2013 PP dashboard using PP filter? Any fixes or workarounds?
    thnx!

    Hello everybody.
    I confirm the issue in Service Pack 1 Release 2.
    Poor workaround is to remove the repeated infromation from the member keys (in SSAS they can be really long).
    The issue seems to be specific to SSRS: Excel Services works well with the same filter.
    Sergey Vdovin

  • Pthread_once() does not update __pthread_once_pad

    Having a problem where pthread_once() gets called, but does not update the __pthread_once_pad[3] to show that the init routine was called for the associated pthread_once_t var.
    The init routine gets called, and the resultant pthread_key_t variable can be used to call pthread_setspecific(), but a resultant pthread_getspecific() will fail. I can see in gdb that the __pthread_once_pad[3] value is unchanged.
    This is happening on SOlaris 9 SPARC with gcc 3.3.2, and on Solaris 8 x86. The code works on Linux with an older gcc and also on Solaris 8 SPARC with an older gcc.
    We can write our pthread_once() to increment the __pthread_once_pad[3] value and call the init function and it will work fine.
    Any clues?

    I don't have an installed seat of Pr + AE CS6 accessible at this time so I can't check it with those versions. I see no bug in CC 8.n though, so I tend to agree that it may be a bug specific to your local setup or some specific step we don't yet know about. In any case, I should clarify a couple of things to make sure we're all on the same page about how DL works with AE:
    1. You're really just 'rendering' preview files to make playback a little better. You're not actually rendering anything from AE in PrPro to give you a standalone media file.
    2. Due to the nature of item #1, there really isn't any architectural way you could actually break the Dynamic Link of any imported files by just building previews for them, because it's just referencing an additional cache file to improve playback.
    3. If you make changes in AE to a rendered comp in Pr, then it will show red again in the sequence and you will need to re-render if you want that playback boost back. This is as designed.
    4. If you want to truly render (aka flatten, or render and replace) an AEP in CS6, you need to export it as a standalone media file from AE and import that file into Pr.
    5. It's possibly that DL itself is malfunctioning, in which case you may need to quit AE or Pr or both and maybe even re-import (via DL) the file agin.
    6. It's good practice to browse to an AEP in the media browser, then import it from there using the Dynamic Link Import dialog. This is not required, but we've heard of cases where some import problems are avoided in this way. Also using the media browser to import in general is good because it previews folder dependent files in a better way.

  • Presenter Display does not update current slide or run timer ...

    Hey - I'm a newbee, so forgive me is this is something obvious. When I run my presentation, the Presenter's Display does not update the current slide as the show progresses. Nor does the timer run. Nor are the notes displayed, even though I have checked all the appropriate prefs for all three. Help!

    Yes, AIFF or WAV should work. I've never tried importing a SDII file.
    A few more caveats, however:
    1) A Recorded Soundtrack (i.e. with the Builds and Transitions timed to the audio) may not play back properly in sync if the slideshow is created on one computer and played-back on another; the durations of Builds and Transitions are dependent on the processor speed of the playback computer. SO be sure to check your synchronization on the playback computer! You may need to make some adjustments.
    2) It has been reported in numerous threads in this Forum that Synchronizations also frequently fail when exported to other applications - especially when running OS 10.5.
    3) Synchronization also fails if the slideshow is played back as a hyperlink. I've found that slideshows will playback just fine if a "stand-alone" Keynote presentation. If linked to others via hyperlinks, however, you will have to trigger all Builds and Transitions yourself.
    All of these are known problems with Keynote and it's lamented implementation of audio.

  • Sale Quotation Formatted Search displays correctly but does not update OQUT

    I have a formatted search, intended to show a deposit amount of 50% for the document total, and refresh whenever the doc total changes. It displays correctly on the Quote header screen UDF area, but OQUT does not update. Pressing Shift-F2 returns 'internal error'. The first time the Quote is entered the right value gets in OQUT, but never gets updated after that.
    The UDF is OQUT.U_Deposit. The formatted search query is:
    Select ($[$33.88.number]*.05) and it is set to refresh reglaurly when Document Total changes.
    Thanks for helping to figure this out

    Which field are you referring by
    $[$33.88.0]
    The screen variable for
    Document Total  $[$29.0.Number]
    Total Before Discount $[$22.0.Number]
    Also I notice for 50% you have used .05 which is actually 5%
    Try this query 
    SELECT ($[$-29.0.Number]*0.5)
    The minus is needed since it is a UDF on the header which is a seperate window.

  • SceneBuilder 2.0 does not update when refreshing CSS

    Hello,
    when I edit my CSS-Files then the SceneBuilder 2.0 does not update the new content. I have to reopen the Builder to see my new changes. Furthermore the SceneBuilder-Preview (Strg+P) shows diffrent styled controls then the normal SceneBuilder-View. It seems that the css files does not affect the application in the PreviewPage- Thats very frustrating and ist wasting a lot of my time.
    In SceneBuilder 1.1 it works fine. But I need the 2.0 version because of JavaFX8. Is there any solution? Maybe a workaround?
    Pls look at this:
    http://imageshack.com/a/img11/5815/pfbn.png
    Volrath

    CSS file watching has not been re-established in Scene Builder 2.0 yet : this will come soon.
    The preview issue is a different one : as suggested by David, please file a bug.
    Keep in mind that Scene Builder 2.0 is on-going work...
    and Scene Builder 1.1 is the production version.

  • Update Model from database does not update Nullable Property -- Possible bug?

    Hi,
    I don't know if this is the correct forum.
    When updating Model from database seems does not update the entity nullable property.
    and it will not update the Default Value from the Backend (MSSQL) also.
    I am using VS2008 SP1 3.5EF, XP64Bit Machine.
    Thanks
    vb.net GUI

    maybe related..
    today.. i changed the PK size.. from char(10) to char(36)
    got many problems.. easy to fix...
    but some query stop working:
    Table1Record.Table2Reference.Load(); //i'm trying to load table2 from table1..
    throw this error: A relationship multiplicity constraint violation occurred: An EntityReference expected at least one related object, but the query returned no related objects from the data store.
    i get this error only when PK is greater than char(10)...
    with SQL profiler.. i saw that PK was truncated to char(10) :
    exec sp_executesql N'SELECT [... some fields...]
    FROM  [dbo].[Table1] AS [Extent1]
    INNER JOIN [dbo].[Table2] AS [Extent2] ON [Extent1].[NoTable2] = [Extent2].[NoTable2]
    WHERE [Extent1].[NoTable1] = @EntityKeyValue1',N'@EntityKeyValue1 char(10)',@EntityKeyValue1='a2164b14-e'
    (NoTable1 is the PK changed from char(10) to char(36))
    i'm working with VS.NET 2008
    so, i looked at Model1.Edmx... in notepad
    CSDL was not changed when i did the "Update Model from Database" !!!
    here is SSDL part:
            <EntityType Name="Table1">
              <Key>
                <PropertyRef Name="NoTable1" />
              </Key>
              <Property Name="NoTable1" Type="char" Nullable="false" MaxLength="36" />
    here is CSDL part:
            <EntityType Name="Table1">
              <Key>
                <PropertyRef Name="NoTable1" />
              </Key>
              <Property Name="NoTable1" Type="String" Nullable="false" MaxLength="10" Unicode="false" FixedLength="true" />
    Cool.. i found the prob.... but why ? and how to correct this ? manually change Model1.Edmx in notepad ??
    why the maxlength property is readonly in Model Browser pane ??
    what about VS.NET 2010 ?! same prob ??
    is it a bug or by design ?
    I hope this can help someone.. I spent a few hours on this prob
    Patrick

  • Real time ROLAP or Automatic molap cubecube does not update the value

    Hello Everyone,
    I am working with Real time Rolap and Automatic MOLAP cube. I had created cube using AdventureWorks DW sample given by Microsoft Tutorial. when i fire insert query, It updates data. It works fine in both the cases after reconnecting in SSMS and SSAS browser.
    But I have a one database table in SQL server with 4 varchar and 10 numeric fields [simple table with one primary key without any relationship with other table]. I tried to create both type of cube from direct database table [selecting varchar fields as
    dimensions and numeric as measures], created partitions, specified server side tracking table. It processes the cube. but when i add rows into this table. It inserts record but does not update in SSAS browser or SSMS browser.
    Please help me what is the problem???
    Thanks in Advance!

    I noticed the same behavior reported by Bob: Not regarding the "process filter" or the "update frequency" selected "CPU Time" column is only updated when details dialog is open. I noticed it just today (which triggered the search here), I wonder if this "feature" has been always present or maybe activity monitor is getting lazy?
    Regards,
    Mauro

Maybe you are looking for

  • Import package and create view object

    Hi, How can i import package from another project and create a new view object with my package and with the imported package. Thanks null

  • 'No date' files in Open file dialog window

    It is annoying to open recent created/modified files/folders.  They are dated as 'no dated'. This does not happen browsing files/folders in Finder. This snapshot was taken on Nov 24 and "Today" contains Nov 17 files And here 'No Date' files at bottom

  • Field Group.

    Hi All, The current ABAP command is obsolete Field Group. Field groups cannot be created in the OO context. How to replace Field groups with some other statement. Thank you.....

  • Check automatic period overlap in database table and limit previous record.

    Hi, I'm creating a database table with records containing also two period filelds, BEGDA and ENDDA (begin and end of period). There's some setting that permit a new record to limit the previous end period? I prefer not to do that in the modulpool of

  • How to use regex to identify a "/".

    Hi I am trying to use the regular expressions package to distinguish between an XML start tag and an XML end tag (i.e. <tag> and </tag>). I am trying to do this by using the pretty much the following: Pattern myPattern = Pattern.compile("/"); Matcher