Use 3.5 Query Tool with 2004S

We just upgraded form 3.5 to BI 2004S.  We do not have the portal running, and may not have it running any time soon.
However, we are able to use our 3.5 query tools (Query Designer and Web Application Designer) with 2004S.
Is anyone else successfully running this configuration, and most importantly, is it a configuration suppported by SAP?
Thanks very much.

Hi Bjorn,
This is supported by SAP. See Prakash's reply here:
Re: open transformed query (7.0) with query designer 3.5 -backup?
Hope this helps...

Similar Messages

  • Use the "Rectangular Marquee Tool" with my mouse

    Hey.
    When I use the "Rectangular Marquee Tool" with my mouse, it is often difficult to do it accurately.
    Is there an easier way to do it than with the mouse, -  can I manually enter the size of my selection ..
    Any advice is welcome.

  • How can I use a single query panel with two view criteria?

    Hi all,
    I have a requirement to allow users to change the "display mode" on a search results tree table for an advanced search page. What this will do is change the structure of how the data is laid out. In one case the tree table is 3 levels deep, in the other case it's only 2 with different data being at the root node.
    What I've done so far:
    1) I exposed the data relationship for these two ways of viewing the data in the application module's data model.
    2)  I created a view criteria in the two view objects that are at the root of the relationships, where (for simplicity sake) I'm only comparing a single field.
    This is in one view object:
    <ViewCriteria
        Name="PartsVOCriteria"
        ViewObjectName="gov.nasa.jpl.ocio.qars.model.views.PartsVO"
        Conjunction="AND">
        <Properties>... </Properties>
        <ViewCriteriaRow
          Name="vcrow23"
          UpperColumns="1">
          <ViewCriteriaItem
            Name="PartDiscrepantItemsWithIRVO"
            ViewAttribute="PartDiscrepantItemsWithIRVO"
            Operator="EXISTS"
            Conjunction="AND"
            IsNestedCriteria="true"
            Required="Optional">
            <ViewCriteria
              Name="PartDiscrepantItemsWithIRVONestedCriteria"
              ViewObjectName="gov.nasa.jpl.ocio.qars.model.views.PartDiscrepantItemsWithIRVO"
              Conjunction="AND">
              <ViewCriteriaRow
                Name="vcrow26"
                UpperColumns="1">
                <ViewCriteriaItem
                  Name="InspectionRecordNumber"
                  ViewAttribute="InspectionRecordNumber"
                  Operator="="
                  Conjunction="AND"
                  Value=""
                  Required="Optional"/>
              </ViewCriteriaRow>
            </ViewCriteria>
          </ViewCriteriaItem>
        </ViewCriteriaRow>
      </ViewCriteria>
    and this is in the other view object:
    <ViewCriteria
          Name="IRSearchCriteria"
          ViewObjectName="gov.nasa.jpl.ocio.qars.model.views.InspectionRecordVO"
          Conjunction="AND">
          <Properties>... </Properties>
          <ViewCriteriaRow
             Name="vcrow7"
             UpperColumns="1">
             <ViewCriteriaItem
                Name="InspectionRecordNumber"
                ViewAttribute="InspectionRecordNumber"
                Operator="="
                Conjunction="AND"
                Required="Optional"/>
          </ViewCriteriaRow>
       </ViewCriteria>
    3) I had a query panel and tree table auto-generated by dragging the data control for ONE of the view object data relationship that's exposed in the app module. Then I created a second query panel and tree table the same way but using the data control for the other. I'm hiding one of the query panels permanently and toggling the visibility of the tree tables based on the display mode the user chooses. Both tables have separate bindings and iterators.
    This is a portion of the page definition:
    <executables>
        <variableIterator id="variables"/>
        <searchRegion Criteria="IRSearchCriteria"
                      Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                      Binds="InspectionRecordVOIterator"
                      id="IRSearchCriteriaQuery"/>
        <iterator Binds="InspectionRecordVO" RangeSize="25"
                  DataControl="QARS_AppModuleDataControl"
                  id="InspectionRecordVOIterator" ChangeEventPolicy="ppr"/>
        <iterator Binds="Root.QARS_AppModule.PartsVO1"
                  DataControl="QarsMasterAppModuleDataControl" RangeSize="25"
                  id="PartsVO1Iterator"/>
        <searchRegion Criteria="PartsVOCriteria"
                      Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                      Binds="PartsVO1Iterator" id="PartsVOCriteriaQuery"/>
      </executables>
    4) I've created a custom queryListener to delegate the query event.
    This is in my advanced search jsp page:
    <af:query id="qryId1" headerText="Search" disclosed="true"
                      value="#{bindings.IRSearchCriteriaQuery.queryDescriptor}"
                      model="#{bindings.IRSearchCriteriaQuery.queryModel}"
                      queryListener="#{pageFlowScope.SearchBean.doSearch}"
                      queryOperationListener="#{bindings.IRSearchCriteriaQuery.processQueryOperation}"
                      resultComponentId="::resId2" maxColumns="1"
                      displayMode="compact" type="stretch"/>
    This is in my backing bean:
    public void doSearch(QueryEvent queryEvent) {
          String bindingName = flag
             ? "#{bindings.IRSearchCriteriaQuery.processQuery}"
             : "#{bindings.PartsVOCriteriaQuery.processQuery}";
          invokeMethodExpression(bindingName, queryEvent);
       private void invokeMethodExpression(String expr, QueryEvent queryEvent) {
          FacesContext fctx = FacesContext.getCurrentInstance();
          ELContext elContext = fctx.getELContext();
          ExpressionFactory eFactory = fctx.getApplication().getExpressionFactory();
          MethodExpression mexpr =
             eFactory.createMethodExpression(elContext, expr, Object.class, new Class[] { QueryEvent.class });
          mexpr.invoke(elContext, new Object[] { queryEvent });
    When no inspection record number (the only search field so far)  is supplied in the query panel, then it behaves correctly. Namely, the tree tables shows all search results. However, when an inspection record number is supplied the tree table that was created with the query panel in use (remember there are two query panels, one of them is hidden) shows a single result (this is correct) while the other tree table (the one with the hidden query panel that isn't in use) shows all results (this is NOT correct).
    Is what I'm trying to accomplish even doable? If so, what am I missing?
    I'm using JDeveloper 11.1.1.7
    Thanks,
    Bill

    I ended up keeping one query panel permanently visible and the other permanently hidden. When performing a search using the table that has the hidden query panel, I seed the query descriptor for the hidden query panel using the visible query panel's query descriptor and then delegate the request:
       public void doSearch(QueryEvent queryEvent) {
          String bindingName = null;
          if(isIrTableRendered()) {
             bindingName = "#{bindings.IRSearchCriteriaQuery.processQuery}";
          } else {
             seedPartsQueryDescriptor();
             bindingName = "#{bindings.PartsVOCriteriaQuery.processQuery}";
             queryEvent = new QueryEvent(partsQuery, partsQuery.getValue());
          invokeMethodExpression(bindingName, queryEvent);
       private void seedPartsQueryDescriptor() {
          ConjunctionCriterion criterion = irQuery.getValue().getConjunctionCriterion(); 
          for(Criterion criteria : criterion.getCriterionList()) {
             AttributeCriterion attributeCriteria = (AttributeCriterion)criteria;
             List values = attributeCriteria.getValues();
             String qualifiedName = attributeCriteria.getAttribute().getName();
             int indexOfDot = qualifiedName.lastIndexOf(".");
             String name = indexOfDot < 0
                ? qualifiedName
                : qualifiedName.substring(indexOfDot + 1);
             ConjunctionCriterion partsCriterion =
                partsQuery.getValue().getConjunctionCriterion();
             for (Criterion partsCriteria : partsCriterion.getCriterionList()) {
                AttributeCriterion partsAttributeCriteria =
                   (AttributeCriterion) partsCriteria;
                String partsQualifiedName =
                   partsAttributeCriteria.getAttribute().getName();
                if (partsQualifiedName.endsWith(name)) {
                   partsAttributeCriteria.setOperator(attributeCriteria.getOperator());
                   List partsValues = partsAttributeCriteria.getValues();
                   partsValues.clear();
                   for (int i = 0, count = values.size(); i < count; i++) {
                      partsValues.set(i, values.get(i));
       private void invokeMethodExpression(String expr, QueryEvent queryEvent) {
          FacesContext facesContext = FacesContext.getCurrentInstance();
          ELContext elContext = facesContext.getELContext();
          ExpressionFactory expressionFactory =
             facesContext.getApplication().getExpressionFactory();
          MethodExpression methodExpression =
             expressionFactory.createMethodExpression(elContext, expr, Object.class, new Class[] { QueryEvent.class });
          methodExpression.invoke(elContext, new Object[] { queryEvent });
    Then when the advanced/basic button is pressed for the visible query panel, I programmatically set the same mode for the hidden query panel:
       public void handleQueryModeChange(QueryOperationEvent queryOperationEvent) {
          if(queryOperationEvent.getOperation() == QueryOperationEvent.Operation.MODE_CHANGE) {
             QueryMode queryMode = (QueryMode) irQuery.getValue().getUIHints().get(QueryDescriptor.UIHINT_MODE);
             QueryDescriptor queryDescriptor = partsQuery.getValue();
             queryDescriptor.changeMode(queryMode);
             AdfFacesContext.getCurrentInstance().addPartialTarget(partsQuery);

  • Lightroom 5.2 freezes when using the spot edit tool with Wacom Intuos 5

    Hi,
       I've been using Photoshop 6.x with my Intuos 5 for almost a year and it's been great.  I recently purchased Lightroom 5.2 only to discover that when I use the spot edit tool that it freezes when i use this tool as a brush.  It starts off smooth, but after brushing across my area i want to clone/heal, Lightroom seems to freeze up, and the spot edit tool is unusable.  I can lift my pen off the tablet and a few seconds later Lightroom comes back, but the tablet is basically unusable to me.  The mouse works perfectly fine.
      I've read other posts at the end of last year '12, that walks through some regedits and disabling some other tablet functions, but none of those work for me.  Any suggestions would be appreciated.
    Thanks Ed
    Lightroom version: 5.2 [922700]
    Operating system: Windows 7 Ultimate Edition
    Version: 6.1 [7601]
    Application architecture: x64
    System architecture: x64
    Logical processor count: 8
    Processor speed: 2.7 GHz
    Built-in memory: 16375.0 MB
    Real memory available to Lightroom: 16375.0 MB
    Real memory used by Lightroom: 429.4 MB (2.6%)
    Virtual memory used by Lightroom: 403.7 MB
    Memory cache size: 300.8 MB
    Maximum thread count used by Camera Raw: 4
    System DPI setting: 144 DPI
    Desktop composition enabled: No
    Displays: 1) 1920x1200
    Adapter #1: Vendor : 1002
              Device : 9498
              Subsystem : 16031462
              Revision : 0
              Video Memory : 1005
    AudioDeviceIOBlockSize: 1024
    AudioDeviceName: Speakers (Realtek High Definition Audio)
    AudioDeviceNumberOfChannels: 2
    AudioDeviceSampleRate: 44100
    Build: LR5x20
    CardID: 38040
    Direct2DEnabled: false
    GPUDevice: D3D
    MaxTexture2DSize: 8192
    OGLEnabled: true
    Renderer: ATI Radeon HD 4600 Series
    ShaderModel: 10.1
    Vendor: AMD
    VendorID: 4098
    Version: 1002:9498:16031462:0000

    I solved my own issue.  I saw an article @ http://www.lightroomforums.net/showthread.php?19694-Spot-removal-tool-doesn-t-work-with-Wa com-Intuos-5-in-LR-5 that solved my issue.
    Step 1:
    Walcom Tablet Properties
    Step 2:
    Click on Customize and change the default line graph from this:
    Step 3:
    To this
    Step 4:
    Click OK.
    After that, my spot edit tool stopped freezing in LR 5.2 while i was using my intuos 5 pen.
    Prior to doing this, I also did the procedure listed here:  http://forum.wacom.eu/viewtopic.php?f=10&t=8036
    So it's possible that both need to be done in order for the freezing to stop.  I hope this can help others.

  • Use VSS or similar tool with Flex Builder 3 Profesional

    Hi
    I want to use Visual Sorcesafe or other similar tool with
    Flex Builder 3. so that we can work in a team on single project.
    Can anyone please give some ideas, that how can i do this.
    Thanks & Regards
    Ajay Dekavadiya

    Almost anyone using this list is probably going to be using
    CVS or SVN with Flex rather than Visual SourceSafe, as they are
    free. You can get plugins for Flex Builder/Eclipse that integrate
    CVS or SVN source code control into your project. Many projects use
    SVN now, and on Windows TortoiseSVN is frequently used as a context
    menu based way of managing changes in your source code repository.
    You can do some googling for 'eclipse svn plugin', or I
    believe CVS is built-in by default, which you would see under
    Window->Preferences->Team->CVS in eclipse/FB.

  • Is it possible to use the af:query component with programmatic VOs?

    My understanding is that the view criteria in a normal SQL-based VO are used to add WHERE clauses to the VO.
    Since programmatic VOs do no have this capability, is there something I need to override in the view object implementation class to support the view criteria that will be established by the af:query component?
    Does someone have an example of how this might be done?
    Thanks, -Klaus

    Unfortunately no. The remote control will work, but the radio will not.
    The radio only works with the iPod video and the nano.

  • Can I use Oracle 11g Developer tools with 10G and XE

    Hi, I want to use Oracle 11g ODAC 11.1.0.6.21 with Oracle Developer Tools for Visual Studio with 10g and Xe . Will there be any issues. I want to do so because I am not able to see Oracle Database project in Visual Studio when I install Oracle 10 g developer tools wherein I see that in Oracle 11g developer tools. Please suggest.

    No there are no issues. Just be sure to install ODT in a separate location than where XE is installed.

  • Satellite Pro L300 - Cannot use Intel ProSet WLan tool with Win XP

    Hi! I have same problem. I have installed an XP SP3 and I can't use the *Fn+F8* hotkey to switch on/off the WLAN function. Other Fn keys operate properly. The wlan also operates, but it can be used only by windows built-in function. The Intel ProSet or Atheros programs don't work. It seems "no wlan driver installed". The card is a Realtek 8187B, downloaded the driver from Toshiba original support site.What can I do?

    > The WLan also operates, but it can be used only by windows built-in function. The Intel ProSet or Atheros programs don't work
    If the WLan works fine using the Windows zero configuration then the WLan card is enabled and dont need to use the FN+F8.
    The point is that your 3rd party WLan configuration tool doesnt work because your WLan card is *Realtek!!!!*
    The Intel ProSet works ONLY with Intel WLan card and the Atheros Wlan configuration tool can be used ONLY if your have got a Atheros Wlan card.
    Youve got Realtek so use the Windows own zero WLan configuration!

  • Cannot create user using Web Site Administration Tool with Oracle Express

    Hello,
    I am following the tutorial here to add roles/memberships/profiles etc. using the Oracle providers supplied by Oracle:
    http://www.oracle.com/technology/obe/11gr2_db_prod/appdev/dotnet/aspprovider/aspprovider_otn.htm?_template=/ocom/print
    This tutorial fails at step 7: When I click Create user (on the security tab) the web page brings me to a page that says:
    "An error was encountered. Please return to the previous page and try again."
    Does anyone have any idea why this is happening?
    Also, does anyone know if log files are created that I may take a look at to get more details about the error?
    Thank you,
    John DeAngelis

    Hi John,
    This is the forum for the Oracle Provider for OLE DB. You may want to post your question the forum for Oracle Providers for ASP.NET.
    Oracle Providers for ASP.NET
    as it will be seen by a wider audience using that product.
    J.B.

  • Using New LabVIEW Merge Tool LVMerge With Tortoise SVN

    Hi,
    I've just posted a new blog article Using New LabVIEW Merge Tool LVMerge With Tortoise SVN to my blog at ExpressionFlow. Check it out!
    Tomi
    Tomi Maila

    The LV merge tool really does become far more powerful when integrated into SVN than when used manually.  Here's an article on Using LVmerge LabVIEW Merge Tool with TortoiseSVN with all the necessary setup instructions for LabView 8.5 and 8.6.
    Jesse

  • Photoshop Elements 6 Clone Stamp Tool with Overlay

    Does anyone know how to use the clone stamp tool with the (new) overlay feature in PSE6 to clone whole objects? How do you show the overlay?
    (Or, send me to a free tutorial on it.)
    Thanks,
    Stuart Klein

    I suggest that you look on
    http://www.photoshopelementsuser.com/learningcenter/
    it has a tutorial on the v6 clone overlay

  • Only noise in v.o. tool with MBox

    I recently upgraded to a Mac Pro and I installed Final Cut Studio (Universal) and all the available upgrades. I have an MBox 1 with ProTools LE and Digi CoreAudio Manager 7.1.1 installed.
    In ProTools the MBox works fine.
    Today I tried to use the Voice Over Tool with the MBox in Final Cut Pro. When I switch the input to the MBox the input level shoots up to 0 dB and over, even if i disconnect the mike (input 1) and turn the gain down to zero.
    If I record to the timeline I get only noise up to exactly -6 dB.
    There's no settings in the Digi CoreAudio Manager that have any effect, the audio settings in System Preferences don't seem to matter... So what's wrong? All devices are set to record/play 48 kHz.
    In my previous setup (G4) this configuration never failed....
    Mac Pro 2.66 GHz   Mac OS X (10.4.8)   2 Gb RAM, ATI Radeon X1900 XT, Sony DSR-11, FCP 5.1.1
    Mac Pro 2.66 GHz   Mac OS X (10.4.8)   2 Gb RAM, ATI Radeon X1900 XT, Sony DSR-11, FCP 5.1.1

    You should ground reference all floating signals for this module as stated in the User's Manual.
    Justin
    National Instruments
    Product Support Engineer - Conditioned Measurements

  • How use Apache Lucene Search Tool

    Hi All,
    how to use apache lucene search tool with sun one application server 8.1
    thanks in advance,
    ritu

    See this manual: Configuring the Lucene Search Engine - 11g Release 1 (11.1.1.8.0)

  • Using annotation processor as a query tool

    Is it possible to use Annotation Processor as tool for querying over a set of .java files as well as .class files in jars/zips/folder? For example, given a set of source folders and jars/zips/folders containing class files I want write a queries like:
    - list all classes that extend javax.swing.JComponent
    - list all methods that returm javax.swing.JComponent
    - list all methods that take javax.swing.JComponent as a parameter

    Is it possible to use Annotation Processor as tool
    for querying over a set of .java files as well as
    .class files in jars/zips/folder? For example, given
    a set of source folders and jars/zips/folders
    containing class files I want write a queries like:Annotation processing can work over source and/or class files. However, there is no built-in support for enumerating all the types in a given set of jar/zip/folders. If this list can be generated, those types can be passed as the initial inputs to the tool. If you are using apt, in Tiger update 1 and later the -XclassesAsDecls flag allows type names to be given as input. This capability is available out of the box with JSR 269 in the JDK 6 javac.
    - list all classes that extend
    javax.swing.JComponent
    - list all methods that returm
    javax.swing.JComponent
    - list all methods that take javax.swing.JComponent
    as a parameterAll of these queries can be written using the model provided by the annotation processing frameworks.

  • Benefits of SAP Business Warehouse Reporting compared with the Query-tools?

    Hello experts,
    I've been creating reports with SAP Query tools, but been faced with few problems. First of all, there are restricted possibilities in terms of joining tables, and thus I cannot include all the data required for the report.
    One solution for this would have been to create separate queries and join the data together in Excel. The problem with this is that there exists no common field that would make sense as for a selection criterion. If the selection criterion is different in different queries, there is the danger of combining false data together, which would eventually result with distorted data. 
    So I was wondering, could anyone briefly tell me if SAP Business Warehouse reporting would solve these problems? And what other benefits would it provide compared with the SAP Query? I'd urgently need to know if it would be a beneficial investment for the company, since I haven't found solutions for the problems occurred in the creation of reports.
    Thank you in advance for you help!
    Maria

    The answers are yes - and thousands of companies have gone down this route
    Puttingin BW is a strategic aim of the comapny and not to be thought about and discussed in a BI forum such as this
    The costs of implementation and hardware will no doubt make your eyes water.
    To be quite honest SAP BI is a "no brainer" as most of the new e-SOA and new R3 modules reply on BW for their reporting needs

Maybe you are looking for

  • Blue screen and volume issue

    Need some help here. (hope Im in the right place) Im getting the blue screen and spinning wheel at shutdown, computer wont turn off. I run Techtool Deluxe and my Volume Structure fails (passes surface scan). Disk Utility says volume is fine...... Im

  • How to distribute from cost center to profit centers?

    Dear Experts, We have created profit centers as per business.  We have certain expenses that are common.  e.g. IT, A/c, HR etc.  We have created cost centers for the same.  Now we want to assign it to various PCs.  How to distribute from cost center

  • ScrollPane: thumb doesn't get updated after contents of scrollpane change

    Hi, I some content in a scrollpane. The horizontal scrollbar(thumb) is showing because the content is to big to fit horizontally. The problem is if the content changes, i.e. gets smaller for example, the scrollbars don't get updated. Only after touch

  • Bad Parameter

    When inserting or deleting pages out of a pdf on occasions I get the 'bad parameter' message and am not able to insert/delete pages. I have searched this for a long time and can not find anything apart from having to combined files and print to pdf,

  • Java.lang.AbstractMethodError "setSavepoint()"

    Hello all, I tried to use the method setSavepoint() in interface java.sql.Connection and i had this exception in run time (java.lang.AbstractMethodError). From the JDK documentaion i understood that this can happen in run time only if a definition of