Searching for Queries

Hi,
once again. I did already post my qestion and got the list of tables from you.
I thought thats it and was trying to solve my problem, but the information I get from the tables below
are useless I guess.
I would like to say in a selection screen the name of an Infoprovider, or InfoArea or the name of the query and than make a
select statement to a particular table that shows me all queries that exist in that particular infoarea for example.
In all thes tables below I couldnt really find a field InfoArea and a relation to a particular query. So many tables but i dont know how to go ahead...
But there must be a table where these information are stored!?
Thanks
Queries
RSZELTDIR Directory of the reporting component elements
RSZELTTXT Texts of reporting component elements
RSZELTXREF Directory of query element references
RSRREPDIR Directory of all reports (Query GENUNIID)
RSZCOMPDIR Directory of reporting components
RSZRANGE Selection specification for an element
RSZSELECT Selection properties of an element
RSZELTDIR Directory of the reporting component elements
RSZCOMPIC Assignment reuseable component <-> InfoCube
RSZELTPRIO Priorities with element collisions
RSZELTPROP Element properties (settings)
RSZELTATTR Attribute selection per dimension element
RSZCALC Definition of a formula element
RSZCEL Query Designer: Directory of Cells
RSZGLOBV Global Variables in Reporting
RSZCHANGES Change history of reporting components
Workbooks
RSRWBINDEX List of binary large objects (Excel workbooks)
RSRWBINDEXT Titles of binary objects (Excel workbooks)
RSRWBSTORE Storage for binary large objects (Excel workbooks)
RSRWBTEMPLATE Assignment of Excel workbooks as personal templates
RSRWORKBOOK Where-used list for reports in workbooks

It's not working from the web iterface, but cower does a good job:
~ > cower -s firefox spell
aur/firefox-spell-en-us 7.0.1-2 (3)
English (US) spellchecking dictionary for Firefox.
aur/firefox-spell-es-es 1.7-1 (2)
Spanish (Spain) spellchecking dictionary for Firefox.
aur/firefox-spell-es-mx 1.1.3-3 (0)
Spanish (Mexico) spellchecking dictionary for Firefox.
aur/firefox-spell-pt-br 2.1.1-1 <!> (3)
Brazilian Portuguese language dictionary (spellcheker) for Firefox
aur/firefox-spell-ru-en 1.0.0.1-8 <!> (10)
Russian/English spellchecker dictionary for Firefox
aur/mozvoikko 2.0.1-9 (4)
Finnish spell-checker extension for Firefox/thunderbird/seamonkey using Voikko

Similar Messages

  • Searching for AUR packages with "%" queries

    According to https://wiki.archlinux.org/index.php/AUR#Searching it is possible to use mysql LIKE queries to search for a package.  But I can't find packages if I use queries with "%".
    For example, when I try to search for firefox%spell or firefox%spell%, I get nothing.
    I expected those queries would return the same results as firefox-spell.
    The question is: do LIKE queries work (or do I use them wrong)?
    Last edited by alezost (2014-02-13 08:14:08)

    It's not working from the web iterface, but cower does a good job:
    ~ > cower -s firefox spell
    aur/firefox-spell-en-us 7.0.1-2 (3)
    English (US) spellchecking dictionary for Firefox.
    aur/firefox-spell-es-es 1.7-1 (2)
    Spanish (Spain) spellchecking dictionary for Firefox.
    aur/firefox-spell-es-mx 1.1.3-3 (0)
    Spanish (Mexico) spellchecking dictionary for Firefox.
    aur/firefox-spell-pt-br 2.1.1-1 <!> (3)
    Brazilian Portuguese language dictionary (spellcheker) for Firefox
    aur/firefox-spell-ru-en 1.0.0.1-8 <!> (10)
    Russian/English spellchecker dictionary for Firefox
    aur/mozvoikko 2.0.1-9 (4)
    Finnish spell-checker extension for Firefox/thunderbird/seamonkey using Voikko

  • How to search for a text string in Reports designer?

    In iDS reports (10gR2), I want to search from top down for a text string was used in one of the queries or triggers. In Forms, you can do it, in reports the related menu item is always seems to be grayed out no matter what item I pick in the Navigator. Is it doable or not? If yes, then how. I don't wanna open each program piece including the queries in the data model, report triggers or program units and look for (by visual scanning) for the text I am searching for. This is crazy. There must be a way to do it. Thanx.

    That is pretty bad for such an expensive report development program. The forms allows it, I wonder why Oracle did not include similar functionality in the reports developer. I knew the conversion to ascii, but during development it is pain in the ... just to search for a simple text string in the related program units in the report, to convert to ascii, do the search and then go back to the developer. Anyway, if that is the only way, there is nothing we can do I guess :(

  • Search for Property in own coding

    Hello,
    for my custom search component i would like to search for an property. I will the user give the possibility to search for the Contenttype. For example PDF, html or Text.
    I try this (but donts works)
    private IQueryEntryList createQuery() throws WcmException {
    SearchQueryListBuilder sqb2 = new SearchQueryListBuilder();
    sqb2.setSelectedCustomProps("sapportals.com/xmlns/cm:contenttype(value"+ContentType.TEXT_PLAIN+")");
    return sqb2.buildSearchQueryList();
    The other question regarding this problem i have is: How can i connect the property query as AND with the searchwords.
    Any help is welcome,
    best regards,
    Patrick
    Message was edited by: Patrick Höfer

    Hi Patrick,
    the namespace in question is "http://sapportals.com/xmlns/cm" (including "http://"), the alias is "default". The namespace you gave here cannot work in any case.
    Behind "value", a "=" is missing.
    If your "ContentType.TEXT_PLAIN" matches the real values of this property, one cannot see from the code.
    To compose different queries through "AND", add an AND IQueryEntry to the IQueryEntryList and then your own IQueryEntry(List). See https://media.sdn.sap.com/javadocs/NW04/SPS15/km/com/sapportals/wcm/service/indexmanagement/retrieval/search/IQueryEntry.html for further details.
    Hope it helps
    Detlev

  • Searching for numeric values in a text field / SQL Server

    Hi all,
    here's a problem that I've been trying to solve for several days: I try to select rows from an MS SQL Server via JDBC that contain a certain numeric value at a certain position in a long varchar field.
    I'm using queries like
    select * from table where substring(field_1, 37, 7) like '1011234';Those queries always return an empty ResultSet. If I use the same queries in WinSQL, I get correct results (several rows).
    The application code is working in principle; if I search for a text instead of a numeric value, for example select * from table where substring(field_1, 4, 5) like 'Paper'; , I get a complete ResultSet.
    I've tried many variations (= instead of like, search in the entire field (without substring but with like '%1011234%'), with or without ', and more), but that didn't change anything.
    It's also most probably not caused by the JDBC driver; I have tried JTDS first, and then the MS driver (newest versions) - no difference.
    One idea was that the sort order is not correct, tried some COLLATE settings, but that didn't help so far. In this context I'd like to know how to determine the collation sequence of a certain column.
    Another thing I tried was using CAST, for example SELECT * FROM table WHERE CAST(SUBSTRING(field_1, 37, 7) as bigint) = CAST('1011234' as bigint); or SELECT * FROM table WHERE CAST(SUBSTRING(field_1, 37, 7) as bigint) = CAST(1011234 as bigint);, but that didn't help either.
    Some facts:
    Server: Microsoft SQL Server, version 09.00.2047
    Driver in WinSQL: SQLSRV32.DLL, version 03.85.1117
    JDBC-Driver:
    - JTDS, version 1.2
    - Microsoft SQL Server 2005 JDBC Driver, Version 1.2
    JVM: jre1.5.0_11
    I didn't find anything on Google, or in this forum, or other forums. I really hope someone here can help me. Thanks in advance!
    Best regards,
    Uica

    Your note suggests to me that this is a coding problem, not a JDBC or SQL problem unless you are hitting a bug in the SQL Server JDBC driver. Others may have ideas from what you have written, but I think it would be helpful to see the actual code that you are executing that does not bring back the results that you are expecting (don't forgot to use code tags to format your code correctly).
    It might also be helpful to execute a query (from within your Java code) to ensure that you are connecting to the right database, accessing the correct table and that your substring is using the correct offset. The query would look something like this (and then of course display the list of results):
    SELECT substring(field_1, 37, 7) from table

  • Searching for String literals in a ResultSet

    Hi! I am currently working in a little project in which one functionallity should be the possibility to search for customers over a special dialog. This dialog consists of a JTextField and a JTable. Now when the user enters e.g. 'a' in the textfield all the customers which include an 'a' at the beginning of their name should be displayed in the JTable. When the user enters a 'b' addtionally all users which fit the condition 'ab' are shown. Currently I requery the DB every time a key is pressed. But this is not very performant over the network. Is there a way to store a buffered ResultSet in RAM and make queries on this ResultSet?
    Thx

    ...but there must be a easier way to deal with it!Either you have all the data in the GUI or you don't. If you have it there then you have to get all of it. And then do something with it. If you don't get it all, then you are going to have to do a query each time. There is no other solution.
    You could do a partial solution, for example do the first query after they type the first letter and then after that handle the data yourself.
    (Keep in mind that this sort of GUI is 'really cool' but generally serves no pratical purpose particularily for large businesses. Day to day work doesn't support such usage.)

  • Searching for % or _ in a title

    i was running the following queries
    select title from table where title like '%_%';
    select title from table where title like '%%%';
    and for some reason the result was the whole table.
    How can i search for a title that contains either an underscore or a percentage in it whithout returning the whole table?
    are these oracle special characters that we can't use?

    Two options. If you are on 10g or above you can use regexp_like otherwise use the escape key word:
    where txt_column like '%\%%' escape '\'  -- The choice of escape
       or txt_column like '%|_%' escape '|'  -- character is arbitrary
    where regexp_like(text_column,'.*%.*') -- match %
       or regexp_like(text_column,'.*_.*') -- match _
       or regexp_like(text_column,'.*[%_].*') -- match both % or _
       or regexp_like(text_column,'.*[.*].*') -- match period . or *

  • Error message "searching for missing file"

    I have PS Elements 5.0 , I need some help , I get a message,searching for missing file,I am afraid my entire catalog of pictures has the same problem,but I do know I have an entire collection with this message on each picture,I tried to pay adobe for a person to walk me through this problem but 5.0 is no longer supported.Is there any one that can help me fix this problem ? I would really appreciate the help, Thanks BVFD1964
    Message was edited by: BVFD1964

    For details on how/when this problem occurs and how to resolve this issue, please refer to: http://psekb.blogspot.in/2013/03/how-do-i-reconnect-missing-files-in.html
    Let me know if you have any queries.
    ~Andromeda

  • Customizing Search for Tablet or Mobile only devices

    Hi BC Community,
    Quick question - I am building a website using an adaptive layout design and I want to be able to have a Search box in the Tablet device and the Mobile Device.  Is there a way of setting up the search functionality so that when you are searching for something on the Tablet version of the site, it only queries and shows tablet pages?
    Thanks,
    Aaron

    Re: Set up Telstra email with Outlook.com on your tablet or mobile phone
    long winded explanation lacking in detail
    I have heaps of email accounts like gmail and outlook and find the info easy but .....
    I'm trying to set up Mozilla Thunderbird
    followed the info on this page and it totally faills

  • Can't retrieve project from early Photoshop Elements 5.0 as program is searching for Missing Files.  These were transferred from that computer and then lost HELP

    When I bought my new laptop I transferred "My Pictures" onto a memory stick then onto the new laptop which are now lost.  I have a very important family holiday/wedding still on my old computer in Photoshop Elements 5.0.  The photos are there but when I open them I get a window where PE is "searching for missing file".  Is there any way I can save these photos please?

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • Federated Search for Documentum

    Hi. Has anybody implemented a federated search for Documentum? I think Documentum uses Verity internally for full text indexing, but Verity is tightly integrated with Documentum's own metadata search - does Documentum expose the search functionality as a web service - is there any customization required on this web service (meaning, is it already a SOAP web service that Plumtree understands readily or do we have to write any custom code). Any inputs on implementing federated search for remote search repositories such as Verity, FAST, Autonomy would be helpful?

    Hi Bbelko, as Raji mentioned,
    Lync Desktop Client cannot search any external source outside your organization.
    Nevertheless, Lync Full Client can search against your local Outlook contact lists (only your personal contact and linked contact lists like LinkedIn or Facebook). Additionally, Lync is generating its own Address Book (ABS) which it can search against. You
    can modify in Lync how the service should generate the address book, based on the GAL. GAL here does NOT mean the Exchange GAL, instead it is the Active Directory. It only queries information based on Exchange attributes.
    http://technet.microsoft.com/en-us/library/gg429711.aspx
    How this helps understanding how the service is working via the User Replicator.
    Federated contacts can be therefor also only maintained in AD.
    Thomas
    Whenever you see a helpful reply, click on Vote As Helpful & click on Mark As Answer if a post answers your question.

  • "Negative" (Excluded) Search for BP

    hi experts,
    I'm looking for an opportunity to use "is not" search in SAP CRM 7.0 sp05.
    e.g. in the header search you have the possibility to search for country = DE. I've only "is", "contains" and "starts with" as selction criteria in the system, but no "is not".
    any ideas?
    thx for your help,
    hocki

    Hi Hocki,
    there is a customizing where you may influence the operators:
    - SAP Customizing Implementation Guide       
    - Customer Relationship Management           
    - CRM Cross-Application Components           
    - Generic Interaction Layer/Object Layer     
    - Component-Specific Settings                
    - Define Operators for Dynamic Queries       
    but there might be limitations for several searches/applications like in this case:
    The function module " CRM_MKTBP_READ_BP_SEL_AUSP" supports only EQ and  
    BT for Char which is why my development colleagues have analysed and    
    reported that it is not possible to add the NE operation for marketing  
    attribute.                                                              
    Sorry for no better answer.
    Regards, Djuri

  • Searching for Missing Files-Elements 5.0

    Elements 5.0--loaded photos from my camera using Elements.  Added some captions using Elements.  the next time I tried to retrive photos I got a screen saying "Searching for Missing Files"  and the system started scrolling through files.  Not sure why this is happening.

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • "Search for User" display no user

    Hi,
    I'm testing the Early access release of the SVDI.
    I discovered a problem connecting to our OpenLDAP-Directory. The directory is configured with correct values for host, port, Base DN, User DN and password. The setup wizard finished without errors. But the search function on the "Users -> Users and Groups" tab returns no users.
    This might be an issue with the structure of our openldap-tree, so I digg a little deeper. :-)
    Our ldap tree looks like this:
    / ou=department,o=organization,c=de
    |--- ou=Users
    |--- ou=Groups
    |--- ou=Computers
    When I look at the logfiles of openldap, I recognize a ldap query with
    'filter=&(&(|(?objectClass=user)(objectClass=person)(objectClass=inetOrgPerson)(objectClass=organizationalPerson))(!(?objectClass=computer)))(|(cn=*demo*)(uid=*demo*)(mail=*demo*)))'
    This query doesn't return any entries.
    While playing around with ldapserach I removed the '(!(?objectClass=computer))' part and the query works.
    Removing this part from /etc/cacao/instances/default/modules/com.sun.vda.Service_Module.xml and restarting cacao makes me happy. :-)
    What are the requirements for a supported ldap structure? I know that only active directory and Sun directory server are supported, but changing the directory service is not a 'near-time' option for me.
    Currently we are using SUN VDI 2.0 and all (my) missing features are in 3.0. :-)
    Thanks,
    Thomas

    Hi Thomas,
    you did the right thing.
    OpenLDAP doesn't seem to support LDAP queries about object classes it doesn't know.
    This is impossible to have generic LDAP queries that are supported by every type of LDAP directory, and we know it is out of the question for customers to change their LDAP schema. That's why we made the LDAP filters and LDAP attributes, used by VDI, editable, so that customers can customize them to match their LDAP directory requirements.
    The default filters would work OK for quick demos with Active Directory and Sun DS, but for production deployment, it would still be recommended to adapt the filter to match most closely the schema of the directory and to put less strain on the LDAP directory. This will be documented with our official release.
    In Active Directory, computer objects have objectclass=user and objectclass=computer, so the (!(objectclass=computer)) part is there to avoid that computer objects are returned in a search for users and groups. But it is useless for the other type of directories that don't have such a specificity.
    FYI, here is how VDI performs the search for users and groups:
    The filter used by the web-GUI to search for users is: (&<ldap.user.object.filter><ldap.user.search.filter>)) and then the $SEARCH_STRING placeholder is replaced by \*criteria\* where criteria is the string you type in the web-GUI search field.
    Same applies for groups, using the group filters.
    We search first for users and then for groups.
    Regards,
    Katell

  • Search for a color in ordsys.ordimage

    Hi,
    Is it posible to make a search for a specific color in a column ordsys.ordimage. For example i ask i want all the pictures that contains RGB(255,0,0),
    Thanks.

    Hi,
    This is one of the features we are considering for the next release.
    Would you be able to share with us the specifics of the application -
    the domain, what kind queries does the application have ? Do you only look for
    colors or do you also look for specific shapes? Any information will be
    really useful to us in preparing the functionality for this feature.
    Also we would like to get a feeling for the range of applications that
    would find this feature useful.
    I look forward to hearing from you.
    Melli

Maybe you are looking for