How to build an adf search form

How to build an adf search form without using the view criteria out of box search functionality provided by adf

my query is this .. but still i face the same problem... missing in or out parameter at index ::1
select ms.state_name,
sum(decode(mp.status,'12',1,0)) cnt_active,
sum(decode( mp.status,'12',mh.chargesheet_name,0)) sum_active,
sum(decode(mp.status,'18',1,0)) cnt_inactive,
sum(decode( mp.status,'18',mh.chargesheet_name,0)) sum_inactive,
sum(decode(mp.status,'',1,'5',1,'16',1,'17',1,0)) cnt_expired,
sum(decode( mp.status,'',mh.chargesheet_name,'5',mh.chargesheet_name,'16',mh.chargesheet_name,'17',mh.chargesheet_name,0)) sum_expired
from mst_pindetails mp,
mst_batchno mb,
mst_chargesheet_hdr mh,
mst_state ms
where mp.swhbatchcode=mb.swhbatchcode
and mb.chargesheetno = mh.chargesheet_code
and trim(ms.state_id) = mb.statecode and mp.status=nvl(:pstatus, mp.status) and ms.state_name=nvl(:pstatename,ms.state_name) and mp.attribute_date1 >= nvl(:pfromdate,mp.attribute_date1) and mp.attribute_date1 <= nvl(:ptodate,mp.attribute_date1)
group by state_name

Similar Messages

  • How To create ADF Search form in JDeveloper 11g 11.1.1.0.1

    Hi,
    I am using JDeveloper 11g 11.1.1.0.1 , in which i tried creating an ADF search form that has Find and Execute Buttons.
    I created the same ADF search form using JDeveloper 11g TP3 and TP4 wherein it works fine but not in JDeveloper 11g 11.1.1.0.1.
    Scenario....
    I dragged a read only view object on to the jspx page as ADF Search Form and dragged the same as Read only table.
    After doing this if i run the application the search functionality does not happen .
    ( I click on the find button and enter the condition and then click on the execute button. records does not get filtered based on that condition specified.)
    But when the same steps is done in 11g TP3 and TP4 the search functionalty works fine.
    Can someone suggest me what is the issue.
    Is this a bug in the new release.
    regards
    vinitha

    reply is in this id
    ADF Searchform with find and execute buttons in JDev 11.1.1.0.1 studio edi.

  • How to build wizard in Oracle Forms?

    How to build wizard in Oracle Forms? Is it possible only in JDeveloper?
    Regards
    Rajesh Kumar

    What do you mean here - you want to extend the Forms Builder with your own wizard, or you want to build a Forms Application with a Wizard Style interface?
    If it's the First then you can't, if it's the second then check out the 9i demos there is a re-usable wizard component that shows you how to do it.

  • After query clear ADF search form

    I have a adf search form with a date picker. When I push the search button I go to my view object class to change the query
    String criteria3 = (String)vcr.getAttribute("Datenaiss");
    if (attrs.getName()=="Datenaiss"){
    if (criteria3 != null) {                    
    criteria3="> '"+criteria3+"'";
    vcr.setAttribute("Datenaiss", criteria3 );
    The I receive the result on my jsp but in the field of my date I see now e.g. > '1992-01-17'
    can you help me ?

    If have found a solution to clear the search form
    protected void executeQueryForCollection(Object object, Object[] object1, int i) {
    // set the inputfields to uppercase
    switchStringsViewCriteriaToUpper();
    // execute the query
    super.executeQueryForCollection(object, object1, i);
    // clear the parameters
    super.clearViewCriterias();
    }

  • How to Enable the LOV to query for partial user entries in af:query in an ADF search form

    Hi guys,
    I have faced one issue in creating a search form in ADF, in that I have used af:query and table region. and I have attached an lov vo to the base vo for the list of values and given UI hint as Input values with List of values. Now the issue is that I have given auto submit property as true so when I give some value suppose "Jan-14" and tab out it gives me all the correct results. but if I give like "Jan%" and then tab out then it does not give me any value. Could you kindly help me with some solution. I am using Jdev 11.1.1.6.0.
    Thanks,
    Tanmoy

    To enable the LOV to query for partial user entries, we can trap the 'LaunchPopupListener' event and add custom code there. Within the af:query component, just wondering how can we set property the 'LaunchPopupListener' for the search criteria ?

  • HOW TO CREATE A KEYWORD SEARCH FORM

    Hi, I'm creating a image gallery and I'm about 90% complete. One of my  final objectives is to create a keyword search for my image gallery. I  have 4 fields in my DB, (id,image,description,keywords) I want to be  able to enter keywords into the text field  and the images with there  descriptions show up. I already have the  keywords in my mysql, I already know how to use mysql, I just need to learn how to add a search form that pulls keywords from my mysql. THIS DOES NOT REQUIRE ANY CODE so please do not respond with code. I just need a step by step on what type of form to insert, (dynamic text field or text field) what paramaters to pass etc. NO CODE, this whole thing can be done in design veiw.
    For this project I'm using Dreamweaver Cs5, I'm not really an  experienced coder I rely heavily on dreamweaver for my code, I just make  minor tweaks. So if anyone has an answer to my problem please break  down and simplify your answer I'm still a beginner. Thanks in advance.
    ps
    If anyone knows of any other video tutorials of this process please inform me, it would be greatly appreciated, thank you.(not php acedemies)

    This is helpfull but I'm still running in to some problems. I believe everything on my search page is correct, I think it's my results page thats giving me issues.  When I view my search page in firefox and type in a keyword in the text field, when the results page loads all I get is the field names of DB table (id,layouts,desription,key_words) instead of the actual data...??
    On my search page in the action box I have my results page "search_results.php". In the method box I have "GET".  On my "search_ruselts.php" page I created a recordset, selected all columns, and filtered "key_words". (im not sure if I filtered correctly) I placed this in a dynamic table. Where did I go wrong?
    this is my code if it helps any
    search page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <form id="form1" name="form1" method="get" action="search_results.php">
      <label for="textfield"></label>
      <input type="text" name="textfield" id="textfield" />
      <input type="submit" name="button" id="button" value="Submit" />
    </form>
    </body>
    </html>
    results page:
    <?php require_once('Connections/test_db.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_Recordset1 = 10;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
    $colname_Recordset1 = "-1";
    if (isset($_GET['key_words'])) {
      $colname_Recordset1 = $_GET['key_words'];
    mysql_select_db($database_test_db, $test_db);
    $query_Recordset1 = sprintf("SELECT * FROM images2 WHERE key_words = %s ORDER BY id DESC", GetSQLValueString($colname_Recordset1, "text"));
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $test_db) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    $colname_Recordset2 = "-1";
    if (isset($_GET['id'])) {
      $colname_Recordset2 = $_GET['id'];
    mysql_select_db($database_test_db, $test_db);
    $query_Recordset2 = sprintf("SELECT * FROM images2 WHERE id = %s ORDER BY id DESC", GetSQLValueString($colname_Recordset2, "int"));
    $Recordset2 = mysql_query($query_Recordset2, $test_db) or die(mysql_error());
    $row_Recordset2 = mysql_fetch_assoc($Recordset2);
    $totalRows_Recordset2 = mysql_num_rows($Recordset2);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table cellpadding="4" cellspacing="4">
      <tr>
        <td>id</td>
        <td>Layouts</td>
        <td>Descriptions</td>
        <td>key_words</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><?php echo $row_Recordset1['id']; ?></td>
          <td><?php echo $row_Recordset1['Layouts']; ?></td>
          <td><?php echo $row_Recordset1['Descriptions']; ?></td>
          <td><?php echo $row_Recordset1['key_words']; ?></td>
        </tr>
        <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    mysql_free_result($Recordset2);
    ?>

  • ADF Search form

    Hi,
    I have ADF Search result form page.In that page I have one dropdown with Yes,No,All values.By default search results showing "All" related rows(including search page first time load).Also,I am getting results Based on the dropdown selection values.Up to this fine.
    Now,What i need by default search results always has to display "Yes" rows(including first time search page load).I made/added model view object Sql condion as select ....from... where col="Yes";Its displaying by default "Yes" related rows as expected;But I am not getting the proper results Based on the dropdown selection for "No" and "All";Its shows/returns no rows for "No" selection.
    Anyone please advise me.
    Thanks
    Kalee

    Hi,
    you need to use a bind variable in your query that then - in case of ADF Business Components - exposes as ExecuteWithParams in the binding layer. This ExecuteWithParams has one argument that you can link to a variable in a managed bean. Give "Yes" as the default value to the variable and create setter and getter method for it. Then bind the search drop down value property to the method
    Frank

  • ADF Search form inside a jsp page's panel page container

    I am going through the Oracle JDeveloper 10g for Forms & PL/SQL book and I got to page 391 where I need to drop a search form onto a jsp page set up with a panelpage. The form show up but when I go to delete the extra fields JDeveloper completely locks up. I am running JDeveloper version 10.1.3.3.0.4157. I tried reinstalling it and it still locks up. I tried going back a few steps and recreate the search form and it still locks up.
    Can anyone explain why it is locking up or how to delete the extra fields without locking up?

    I also tried selecting a field in the source file code window. Just selecting a field in any form or window locks up JDeveloper. My program worked find until I created a search form from a data set. I think it is a bug in the version of JDeveloper I have. I did a similar task in a previous version and it worked fine. I could select and delete fields with no problem.

  • How to create Pro grammatically Search Form ?

    Version 11.1.1.3.0
    HI i have a requirement where i cant use the search panel/Af:guery panel or View criteria to create the Search form,
    I want simple search on 3 fields and result shld dispaly in table.
    How can i do that??
    Thanks for help

    Two things:
    1. I don't know why you need to have the bean populate the list box -- is it based on other values in the form, requiring a runtime filter? "data" belongs in databases.
    If so, I would recommend looking up Cascading List boxes (Shay has a youtube channel with that) and I have a video on that, too.
    Secondly, you can have list box on the form that will show the "readable" value to the user that they can select. I have a video on that -- possibly the first video I mentioned, but this one may help too.
    http://www.youtube.com/watch?v=ytpLTC5HdvA&feature=plcp
    2. To create a view criteria programatically:
    In the application module, go to the java tab and create an appmoduleimple class. Create a method that manipulates the view criteria and executes the view object. Then expose that on the application module. On the data control, drag and drop the method onto your form. Choose parameter form.
    A form should be created that has the input and button.
    3. On the data control, click on the method and under it, select parameter. drag that onto the form. Select listbox when it asks what kind of control you want to create. Then it will display the listbox gui to connect the database table. This will create a listbox on the form that users can then select. You can manipulate the view object (also using view critieria) behind the listbox to filter data based on some value on the form.
    I am writing from memory here, so I might have skipped a step.
    This may help also: Re: How to filter the list of data
    Edited by: Stuart Fleming on Sep 17, 2012 12:04 PM

  • How to activate several Formatted Search Forms !!

    Hi Guys,
    I have a problem concerning the manipulation of formated Search Forms. Actually when using the ActivatMenuItem() method, one needs a UID of the items to be activated. And I would like to use this method to activate several formated Search Forms but I don't know how to get the UID of those formatted Search Forms.
    While searching on the Forum, I have seen that some developers used following command SBO_Application.ActivateMenuItem("7425");
    I tried that and it works, but it only activates the first formatted Search Form saved in the CSHS table. My problem is how to activate the other formatted Search Forms and how to access their UID.
    Thanks in advance for Responding
    Bop

    Formatted searches are tied to an individual field on the screen.
    They are not launched by individual UID's, there is only one formatted search menu UID - 7425.
    The actual screen that is called is based on which field the focus is currently in.  If you are in form UID "1", field UID "1" it will call the formatted search (defined in CSHS) for Form 1 / Item 1.  If the focus is currently in field UID "2", it will call a different search.  If there is no formatted search defined on CSHS for the current field, then it will display a dialog asking if you want to create one.
    If you want to open other formatted searches for different fields in your form, simply place the focus on them before calling ActivateMenuItem("7425").  You can do this using the Click method.
    John.

  • Dates in ADF Search Form

    Hi,
    I have implemented a search form where i query the set of entries and display the results below in a table.
    The problem that i am facing is that when i query the set using the "Created by" column of my table i do not get any results. The date format in my database is in the form of dd-MMM-yy and i have set the control hint of the attribute in the entity but with no luck.
    Please someone help me.
    Thanks
    Antonis

    Can you double-check with a SQL example? Often create-date is something people populate with the SYSDATE or the current machine time that has both a date and a time component.
    I tried this test with the SCOTT schema:
    SQL> update emp set hiredate = to_date('17-NOV-1981 10:41:22','DD-MON-YYYY HH24:MI:SS') where empno = 7839;
    1 row updated.
    SQL> select empno, to_char(hiredate,'DD-MON-YYYY HH24:MI:SS') as hiredate from emp where empno in (7839, 7369);
         EMPNO HIREDATE
          7369 17-DEC-1980 00:00:00
          7839 17-NOV-1981 10:41:22If formatted as above at the SQL level to show the full HH24:MI:SS time component, do your created date values have all 00:00:00 for the time, or some non-zero time?
    If you try a query like:
    select count(*) from your_table where trunc(created_date) = created_datedo you get a count that is the same as all rows in the table, or some number that is less than all the rows?

  • How to build dynamically specified GUIs/Forms

    Dear forum members:
    As Flex newbie I still have got some questions concerning the Flex technology.
    I've got to modernize an existent catalog-based ordering system in which a ShopManager (the 1st kind of enduser and an "enduser programmer" at the same time) shall be able to *declaratively specify* some customer groups, products, product bundles, product- and group-specific prices (via pricing rules) and product selection rules. Then, a customer (2nd kind of enduser) shall be able to place orders through a GUI that behaves exactly as specified before by the ShopManager.
    In a non-enduser-programming scenario I normally would use a MVC-framework (like Cairngorm or Swiz, I guess for the Flex world) and hard-code the controller logic as need.
    The problem I have in this enduser-programming scenario is that I cannot figure out how to transform the declaratively specified behaviour into running controller code!?!!!
    Perhaps a rudimentary example in order to clarify issues:
    Let's say we have a ShopManager and a Customer, and that the "workflow" is as follows:
    A) the ShopManager specifies via his/her ShopManagerTool the following topics, ignoring further topic-specic properties for now:
       1. customer_groups = {cg01, cg02}
       2. products = {prodA, prodB, prodC}
       3. product_bundles = {{bundle01, prodA, prodB}, {bundle02, prodB, prodC}}
       4. price_rules = {
                            //atomic product prices, cgroup-specific:  (*1)
                            price_rule(cg01, prodA, 20.00USD),        
                            price_rule(cg02, prodA, 18.00USD),
                            price_rule(cg01, prodB, 25.00USD),
                            price_rule(cg02, prodB, 22.00USD),
                            price_rule(cg01, prodC, 30.00USD),
                            price_rule(cg02, prodC, 27.00USD),
                            //bundle prices, cgroup-specific:
                            price_rule(cg01, bundle01, 39.99USD),
                            price_rule(cg02, bundle01, 37.99USD),
                            price_rule(cg01, bundle02, 59.99USD),
                            price_rule(cg02, bundle02, 55.99USD),
       5. selection_rules = {                                           
                            sel_rule(cg01, dependsOn(prodC, prodA)),   (*2)
                            sel_rule(ALL , dependsOn(prodC, prodB)),
                            sel_rule(ALL , includes(prodA, prodC)),    (*3)
                            sel_rule(ALL , excludes(bundle01, prodC)), (*4)
    B) the Customer uses the ordering GUI to select products and/or bundles and place his/her order.
        The GUI components always follow the pricing and presentation/selection rules imposed by the ShopManager specification done before.
    Explanations:
    (*1) This is a kind of pricing matrix and should be obvious.
    (*2) This selection rules should be read as follows:
         (*2) "for cg01 holds: whenever he selects prodA then prodC becomes selectable (as prodC depends on the selection of prodA)".
         (*3) "for all customer groups: the selection of prodA automatically includes prodC".
         (*4) "for all customer groups: the selection of bundle01 automatically excludes prodC".
    That's basically the kind of app to realize, and as far as I can figure it out with my current Flex-understanding, I'll need some model element classes (Product, Customer, CustomerGroup, RuleSet, Rule, PricingRule, SelectionRule, etc.) used by the ShopManager to specify things, and further also let him define some kind of "model element (property) to view element (property)" mapping for visualizing the specifications.
    1. How could this problem be solved the best way? I.e., what would an appropriate solution architecture look like?
    2. How would I transform the declarative ShopManager specifications into concrete MVC code in general and into concrete controller code
    in particular?
    3. Could anyone of you provide me with a rudimentary example of such "dynamically specified forms"?
    Please, due to the current importance of these issues, I would be very very thankful for any helpful solution hints.
    Thank you very much in advance.
    Best regards
        Alessandro

    Dear Adobe (Flex) Forum Members:
    Really no ideas for this topic?
    I would appreciate any solution hints very much -- even pretty simplistic ones.
    Thank you a million in advance.
    Best regards
       Alessandro

  • ADF 11g: How to implement search form with automatic substring search

    We have ADF search form and result table on the same page. Say, VO that this search form is based upon is famous Employee table from HR schema. What we need is a logic when user enters partial employee first name ie: 'jo'...it should return 'john', johnny, joanne etc...
    just like if user would use wildcard %
    What worked in 10g ADF was something like this:
            AccessServiceImpl svc = (AccessServiceImpl)JSFUtils.EL("#{data.AccessService.dataProvider}");
            BirthViewNewImpl b = svc.getBirthViewNew();
            ViewCriteria vc = b.getViewCriteria();
            String staffId = JSFUtils.getFromSession("staffId").toString();
            String studyId = JSFUtils.getFromSession("studyId").toString();
            if (vc != null) {
                System.out.print("BR " + studyId + " " + staffId + " ");
                AttributeDef[] defs = vc.getViewObject().getAttributeDefs();
                Iterator criteriaRows = vc.iterator();
                while (criteriaRows.hasNext()) {
                    ViewCriteriaRow r = (ViewCriteriaRow)criteriaRows.next();
                    if (r != null) {
                        for (int j = 0, numAttrs = defs.length; j < numAttrs; j++) {
                             if (JboTypeMap.isCharType(defs[j].getSQLType())) {
                                 String val = (String)r.getAttribute(j);
                                 String col = defs[j].getColumnName();
                                 if (val != null) {
                                     System.out.print(col + "=" + val + " ");//just to see what is going on
                 System.out.println("");
            b.searchRecords();//method in VO that executes query
             * This is now very wrong.... Very artificial way to eliminate % from the UI
             if (vc != null) {
                 AttributeDef[] defs = vc.getViewObject().getAttributeDefs();
                 Iterator criteriaRows = vc.iterator();
                 while (criteriaRows.hasNext()) {
                     ViewCriteriaRow r = (ViewCriteriaRow)criteriaRows.next();
                     if (r != null) {
                         for (int j = 0, numAttrs = defs.length; j < numAttrs; j++) {
                             if (JboTypeMap.isCharType(defs[j].getSQLType())) {
                                 String val = (String)r.getAttribute(j);
                                 String col = defs[j].getColumnName();
                                 if (val != null) {
                                     val = val.substring(0,val.length()-1);//return to normal
                                       System.out.println("Column: " + col);               
                                       System.out.println("Value: " + val);               
                                       r.setAttribute(j,val);
            return null;The problem is for some reason this does not quite work in 11g.
    What is the best practice to achieve this functionality in 11g?

    Or use a catsearch index or a contains index in your query. The will preform much better for large datasets as it doesn't do a full table scan.
    Google for Oracle Text ( http://www.google.de/search?q=%27oracle+text%27+catsearch&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:de:official&client=firefox-a )
    Timo

  • Doubt in WebStyle search form in ADF

    Hi,
    I do have a search form as in the following url.
    http://www.oracle.com/technology/products/jdev/tips/muench/screencasts/threesearchpages/threesearchforms_partone.html?_template=/ocom/technology/content/print
    The 'SearchView' has three entity objects in it. One entity is the main table with a primary key. And the other two has the foreign key of the main table and it has multiple records for the same primary key of the main table. So now if I drag and drop this 'SearchView' as a adf search form, the result shows multiple results for the same primary key of the main table as it has multiple occurence in the other two tables.
    So in this scenario, is it possible for me to display the results only from the main table? That is I want to see only one result for the primary key. But at the same time I need other entity objects also in the search view.
    Or can you suggest me any other way to do this? Please help me.
    Thanks,
    Priya.S

    Jan and Steve,
    Thanks so much for the reply. But I am still confused with my case.
    There are three entities.
    1. Bill info (All main info with a request Id as a primary key, with the final status )
    2. Bill status history (Different status history for the same request id)
    3. Bill items (Different items to be billed for the same request id)
    My requirement is that I need to have a search page to find the requests using the request id and other criteria. The result(billInfoviewresult) is a adf table with the request ids which is given with a command link. So using the link, I can navigate to the actual request. This result page should have all the above three entities. i.e. a read and write table for the item entity with the old values and a adf creation form for the 'Status history' so that the user can change the status (the status should be inserted as a new row. The DB should have all the status history from 'new' to 'completed').Everything should be for that particular request id.
    I had a viewobject only for the bill info entity so that the result was a single occurence for a requestid. But I find difficulty in creating a status and item table as it always points to the first record in the data base. And when I manually change the data to set to this particular request, I do get null values. Because of this I wanted to add all these entities into a single viewobject. But getting multiple occurence for the same id in the result.
    Can you please give me any suggestion in building the correct viewobject to acheive this?
    Thanks,
    Priya

  • How to get the SQL Query statement of a Search Form ?

    Hi all,
    We have a requirement to send the query result of an ADF Search Form into report application (Crystal rpt).
    Crystal can accept data source as query statement. SO I think of getting the exact query statement "generated" by the ADF Search form and send it to crystal.
    Is this possible ?
    Thank you very much,
    xtanto

    Try the various get methods of the viewObject such as getQuery:
    http://www.oracle.com/webapps/online-help/jdeveloper/10.1.2/state/content/navId.4/navSetId._/vtAnchor.getQuery%28%29/vtTopicFile.bc4jjavadoc%7Crt%7Coracle%7Cjbo%7CViewObject%7Ehtml/

Maybe you are looking for

  • Read from spreadsheet: a way to automatically continue if the file is missing? (Rather than having to push "continue")

    Hi, I'm using the "read from spreadsheet file.vi" to read in data from a file that may or may not be present.  The data isn't required - it's optional data; nice to have but not everybody will use it. Of course, if the file isn't present, I get an "E

  • MetaDB issue - Solaris 10u8 x86

    Hi all, I am running Solaris 10u8 x86 on VMware. I am trying to configure SVM in my virtual machine and meet the following issue about metadb. I have 01 HDD which contains Solaris OS, swap... and 03 more HDDs for holding data. I did not do anything o

  • Huge backup size for iCloud

    My Friend's iCloud backup is huge but she doesn't have much on, so why.  I have over 200 photos and it says my photo file is 227 mgb, hers only has 40 pics and her photo file is 421mgb. What do you think is wrong?  She has an iPad Air And doesn't hav

  • Mandatory Condition with parameters

    I am trying to enforce a rule that a date range must be specified whenever querying a particular table. I tried using a mandatory condition with parameters, but it appears that parameters can only be used in workbooks, not in business areas. Have I g

  • Problem with Rmiregistry

    this is simple rmi program and its related execution procedure and exceptions please help me out of this situation.. i have jdk 1.4 version import java.rmi.*; public interface Inter extends Remote public String say() throws RemoteException; import ja