How can I filter a table from Data Control without enter query

I have a table from a web service data control based on WSDL.
I want to filter the table without input query at filter text box. Without filter text box, each would filter the table with a hardcoded query internally.
For example, when user click A menu button then it filters the table where type = '1' and B menu button filters the table by type='2' and C menu button filters the table by type=' ' .
How can I filter the table without enter query?
Could anyone point me to a solution please.
Thanks.
jdev 11.1.5
Edited by: 893364 on Oct 26, 2011 12:15 PM
Edited by: 893364 on Oct 26, 2011 12:21 PM

Hi,
when you created the table, did you try selecting the "filter" option. Select the table and go to the Property Inspctor. In the tool bar of the Property Inspector there is an icon to change the configuration. Its adding filter filter fields for the user to search in.
Option 2: The data of the Web Service actually is held in the iterators. If you wanted to filter the WebService query, I would not use the WS DC but a JAX-WS proxy in a POJO to fetch the WS Data. Then have the Data Control created from the POJO. You could have a method exposed on the POJO that allows you to filter the internally held data
Frank

Similar Messages

  • How can I remove I cloud from my phone without a password ??

    I forgot my OLD password and even the e-mail addy is an old one .
    How can I delete I-cloud from my phone without a password I have been trying for an hour
    with no succes.
    The pop-up box keep coming up for me to sign into I-cloud and I can't.
    Can someone help please ??

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iDevice, then sign back in with the ID you wish to use.  When you do this you may find that the password for your old ID isn't accepted.  If this should happen, and if your old ID is an earlier version of your current ID, you need to temporarily recreate your old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How can i change my icloud from my computer without doing it from my ipod

    How can i change my icloud from my computer without doing it from my ipod touch

    What is it you want to change?

  • How can i delete a picture from camera roll without deleting everywhere

    how can i delete a picture in camera roll without deleting everywhere

    You can't, when you 'copy' a photo into an album that you've created directly on the iPad then you are effectively just creating a pointer to the photo and not creating a second copy of it - so if you then delete the original photo from your iPad you will also be deleting all pointers to it and therefore removing it from other albums.

  • How can you copy a table from Safari to Numbers

    I am in the process of migrating from open office to Numbers, since Numbers really does look a lot nicer… however there is one point that I cannot find how to do in Numbers.
    If I select a table in Safari, then in Open Office I can paste that table, and it will go into the rows/columns as a table. How can I do something similar in Numbers?

    Welcome to the Apple forums
    Safari & Numbers have improved in recognizing a table on a web page & pasting it as expected.
    Often what looks like a table on a web page really isn't & the blame should be on the web page author not Safari or Numbers. I had this problem for a few years with my online Discover Card statements. Using Firefox or Camino made no difference. When I complained to them their response was "tough, live with it" although maybe not in those exact words. I would paste the data into a Pages document & use a lot of find & replace to get the data formatted to use in a Numbers spreadsheet.
    But… it could be that the problem you're having is that you have the cursor active in the cell when you paste. If the cursor is active Numbers "thinks" you want to paste everything into that cell. Click outside the table then click once on the starting cell, making sure that the cell is outlined but you don't see the cursor & then paste. This is a much more common cause than above.

  • How can I filter a table by Calendar weeks

    I have a table categorised by Category and Name as my primary.
    I have added a column with a date range per calendar week.
    How can I best setup the table where i can view it in as per schedule calendar week.
    Should i create a second table and access the data with a sumif function?
    Any suggestions?
    Thank you
    Chris

    Why not just use week number, then you have a single number to work off of for summary and aggregate work on.
    Jason

  • How can i do mass emails from data on a spreadsheet

    Hi, looking to do a promotion from data i have on a spreadsheet and want to email it out. Any ideas how i can do this ? 
    Thanks

    www.icloud.com  - sign in using your Apple ID and password.  You will have access to your iCloud mail, Contacts, reminders, calendar, and Find My iDevice.

  • How Can I use a Variable  in Data Controls query. Frank Kindly check...

    Hii,
    I am using JDeveloper 11g ADF BC.
    My Requirement is that I hv a login screen which is taken from [http://blogs.oracle.com/shay/simpleJSFDBlogin.zip].
    I hv attached BC in this application. I want to use the login usercode in the next pages after login screen. Next screen contains 3 list items which will be populating based on the user. So I created <af:selectOneChoice> using the BC( Just drag & dropped the column into the page from the data controls). But in the data control i want to use this usercode for passing the condition. Now Data is coming without any condition.
    So How can I use the usercode in the Data controls query.
    When I tried to display the usercode in the next page it is showing by binding the value. its code is follows
    <af:outputText value="#{backing_getUser.uid}"
    The program for checking the username & Password is follows.
    package login.backing;
    import oracle.adf.view.rich.component.rich.RichDocument;
    import oracle.adf.view.rich.component.rich.RichForm;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    import oracle.adf.view.rich.component.rich.layout.RichPanelFormLayout;
    import oracle.adf.view.rich.component.rich.nav.RichCommandButton;
    import java.sql.*;
    import java.util.List;
    import java.util.Map;
    import oracle.adf.view.rich.component.rich.output.RichMessage;
    import oracle.jdbc.OracleDriver;
    public class GetUser {
    private RichInputText uid;
    private RichInputText pid;
    private RichCommandButton commandButton1;
    private RichInputText inputText1;
    private RichInputText inputText2;
    public void setUid(RichInputText inputText1) {
    this.uid = inputText1;
    public void setPid(RichInputText inputText2) {
    this.pid = inputText2;
    public RichInputText getUid() {
    return uid;
    public RichInputText getPid() {
    return pid;
    public void setCommandButton1(RichCommandButton commandButton1) {
    this.commandButton1 = commandButton1;
    public RichCommandButton getCommandButton1() {
    return commandButton1;
    public String login_action() {
    // Add event code here...
    String user = this.getUid().getValue().toString();
    // String pass = inputText2.getValue().toString();
    String pid = this.getPid().getValue().toString();
    Connection conn;
    conn = getConnection();
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery ("SELECT usercode FROM guser where usercode = '"+user.toUpperCase()+"' and pwd=F_TEST('"+pid.toUpperCase()+"')");
    if (rset.next()) {
    conn.close();
    return "good";
    conn.close();
    } catch (SQLException e) {
    System.out.println(e);
    return "bad";
    public static Connection getConnection() throws SQLException {
    String username = "ACCTS";
    String password = "ACCTS";
    String thinConn = "jdbc:oracle:thin:@SERVER1:1521:G5PS";
    DriverManager.registerDriver(new OracleDriver());
    Connection conn =
    DriverManager.getConnection(thinConn, username, password);
    conn.setAutoCommit(false);
    return conn;
    public void setInputText1(RichInputText inputText1) {
    this.inputText1 = inputText1;
    public RichInputText getInputText1() {
    return inputText1;
    public void setInputText2(RichInputText inputText2) {
    this.inputText2 = inputText2;
    public RichInputText getInputText2() {
    return inputText2;
    -----

    Hi,
    I didn't look at the example, but if you want to secure your application then you should use container managed security. Read this .
    Anyway, you could add this before return "good"; in your login_action()
    FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put("username", user);Then, you can access this from anywhere in the application by using #{sessionScope.username}.
    Pedja

  • How can you run an executable from AS2 code without using fscommand() or a projector?

    Just using some short .asc files made out of Notepad for some back-end server stuff, but without using fscommand() or projectors, how can you call an executable? There's a C++ program that I want to run from more-or-less the same directory as the .asc files, which handles some logging, and I need to be able to pass it arguments when telling it to run.
    Please note that I have Googled this with no useful results and that I'm on an assignment that necessitates this question. Also I'm open to the possibility that it can't be done.
    Thanks!

    The swf is on a different server and using AS3.  The little bit of AS2 back-end stuff is on a few different servers that the swf is hooking up to for streaming video and audio.  The executable would be on the AS2 servers.

  • How can i fetch numeriic records from data dictionary table

    hi friends..
    let assume one data dictionary table ztable which contain
    fields like 1. key datatype c length 2
                  2. data datatype c length 10
    which contain data like
    aa      varehouse
    bb      material
    cc      sales
    01      one
    02      two
    03      three
    from these i want to fetch only 01, 02 and 03 records...
    i.e i want all the records that is in numbers only in key field of ztable
    can you guide me how to get tis?

    select * into table itab
    from ztable
    where key eq '01'
    or key eq '02'
    or key eq '03'.
    declare itab of the type same as ur ztable..
    the above select query will giv u required records..
    Edited by: Rudra Prasanna Mohapatra on Jul 14, 2008 11:13 AM

  • How can I temporarily remove games from my iPhone without losing the app data included?

    My iPhone 5 is running low on space so I plan on cleaning it out soon. I have a lot of games on my iPhone with app data included that I don't play as often. I was planning on removing these temporarily because some day I might want to play them again but I'm afraid I won't have my progress anymore. Ex: My levels conquered on Cut The Rope or my worlds on Minecraft PE.
    So is there a solution out there for me to be able to temporarily remove my games without losing their app data? All feedback is greatly appreciated and I how there is a way to do this!

    The only way to recover the data for a deleted app would be to restore from a backup made before you deleted the app.  Apps and their data are integral to eachother, so deleting one deletes the other.
    If you have a backup, you could restore from that to restore an App's data, but a restore is also an all or nothing option - the restore will restore everything to the state of the backup, not single or selective items.
    Other than that, there is no way to acheive what you wish - if you delete the app you delete its data.

  • How can I copy a table from a web file and paste it into a word document on a pc?

    I am having diffculty getting a pdf file from a web document pasted into my word document.  I do no get the option to copy or save as a table.  I can copy and paste the text but I lose the table and the format and just get the text.  Anybody know what I can do to solve this?

    Try holding down the alt key as you mark the text to be copied. You can then copy columns to table text.

  • How can I filter on a relative date, not an "absolute" or fixed date?

    I get e-mails that are more than a day off (before or after) the current date. They are invariably spam. I want to filter them, but filter allows me to filter on a date, say "before 3/23/2014", but not "after Today". The only way I know to accomplish this, I would have to change my filter every single day.

    Creating filters for spam messages is tedious. Set-up your junk mail controls instead.
    http://kb.mozillazine.org/Junk_Mail_Controls
    Note, the filter needs to be trained for a while before working properly.

  • How can i display blank table if data not present

    hi all,
    i have problem here.
    i need to display one blank table if there is no data. in default, it just show column name box.
    now i need to add blank box under column name.
    please if you have any advice, let me know.
    regards,
    dityo

    hi,
    the solution that i get is create two similar table with if condition.
    if condition for table A : <?if:count(G_PARTS) > 0?> . G_PARTS is name of group. table A will showed if data present.
    if condition for table B (blank table) : <?if:count(G_PARTS) = 0?>. this blank table will showed if no data.
    if
    table A
    end if
    if
    table B
    enf if
    hope this help.
    rgrds,
    tyo

  • How can I prevent my daughter from downloading apps without my permission?

    I have a very secure password and there is no possibility that she could know what it is. She is only 7 yrs. old but has a photograpic memory so I've always made sure not to let her see it when I purchase an app. Last night she purchased two apps and I can't figure out how. Anytime I purchase or even update an app, I'm asked for my Apple ID so I know it's not being stored where she could have access to it.Is there a way to block what she can purchase? PLEASE help!!

    Edit > Preferences > Store > Automatic Downloads. Disable those you don't want.
    You'll probably still get a count of available updates unless you first update those that are outstanding now (iTunes would otherwise remember the total) and then remove the apps from your iTunes library.
    Personally I prefer to keep a complete copy of my media and apps, and a backup as well. Should you need to restore your device it will be much quicker to do so from locally held data than over a Wi-Fi connection. There is also the small risk that an app you like is subsequently removed from the store and thus no longer available to you when the time comes.
    tt2

Maybe you are looking for