Display results on another page

Is it possible to display the search results on another page?

user493403,
Note exactly sure what you mean, but yes, it is. The main class used for seaching is oracle.ultrasearch.query.Request. Using this class, you set the query, language, start index, # documents to return, and other good stuff.
You get back an iterator of Documents and you build the paragraph how you want it.
Good luck,
- Stephen

Similar Messages

  • Search criterias in one page, the query results in another page?

    Hi, can I put search criterias in one page, and get query results in another page?
    Need help
    Thanks in advance
    karman

    If you meant a situation like: Page 1 has some items and page 2 has a report which refers page 1 itemsThen your report _query would fetch proper results provided the page 1 item values are available in the session_.
    That is, after submitting their values(using page submit,dynamic action,ajax etx) to session state , their values would be available in any page (anywhere in that session ) , until the page cache for the item page(page 1) is cleared.

  • Problem displaying recordset from another page

    I have a form on a page and when I click submit, the values
    get passed to another page for processing. All looked well until I
    attempted to put the Record Navigation on the page. I was
    displaying two records at a time while designing the page. Now that
    the design is complete, my search resulted in three records. The
    first two display properly however when i click on the NEXT button,
    it is blank. It appears that my values that were passed are not
    being retained.
    Can someone help me out on this?
    thx

    Ok...i kinda of have this figured out but would really like
    someone to explain to me or point me in the right direction
    regarding variables. I recoded everything (Form action to GET and
    change from form variable to url parameter). This works. however,
    is this the proper way of doing it?

  • Excel 2010 – VBA Userforms – Vlookup via Textbox, display result in another textbox

    Hi,
    Thank you in advance for your time.
    I have a multi-page userform and I am having problems getting the result I am after.
    I am trying to get the user to enter a four digit (numeric code) into a textbox and display the contents of that code in another textbox when the user clicks in another textbox.
    I have 2 textboxes.
    One textbox txt_SAC_No is for the user to enter a four digit numeric code, which should return the address in another textbox txt_Site_Address.
    The lookup is located in a dynamic named range
    as SiteAddress which encompasses 20 columns. The first column has the code and the second column holds the actual address which is what I am after.
    Included in the named range, I have set up a code of 0000 (zeros) and instead of having the address in it, I have a message in there to tell the user to manually type the address (overwriting my text message). The code, 0000, means that there is no pre-defined
    address and it's a once off entry.
    I do not want the address to be updated in the source of the Vlookup as it is a ‘once only’ entry and unlikely to ever be used again.
    I have searched on the web and attempted to adapt various codes, but I have been unable to get anything to work.
    I have some sample code I have tried, but my attempt to adapt it to my needs has not been successful.
    Worksheet where data is transferred is code named: ws_Incident_Details
    (which is actually sheet named “Incident Details” – but I’d like to use the ‘coded’ sheet name in case someone changes the name in the tab of the sheet
    Private Sub SAC_No_AfterUpdate()
    'lookup value based on SacNo
    With Me
    .txt_Site_Address = Application.WorksheetFunction.VLookup(CLng(Me.txt_SAC_No), wsAlarmResponseList.Range("SiteAddress"), 2, 0)
    End With
    End Sub
    I'd really appreciate any help :) I have tried other avenues for help, but it doesn't seem like anyone wants the challenge :(
    Thanking you in advance .... it will indeed be appreciated :)
    Kind regards,
    ShyButterfly
    Hope you have a terrific day, theShyButterfly

    Hi Andreas :)
    The above code works like a dream :) Thank you ...
    I succeeded on this ocassion on being smart, and was successful in adapting your code to auto-complete textboxes based on the SAC # details.
    They ALL work purrrrfectly .... thank you SO much .....
    Here's the code that worked (this is based on the Name Range only capturing the 'Column Heading' ... so I created a Named Range for each of the Column Headings (highlighted in bold ... I hope :) )
    Private Sub txt_SAC_No_Change()
    Dim R As Range
    Set R = Range("SAC").EntireColumn.Find(txt_SAC_No.Value, _
    LookIn:=xlValues, LookAt:=xlWhole)
    If R Is Nothing Then
    txt_Site_Address = "(not found)"
    ElseIf R.Value = "0000" Then
    txt_Site_Address = "(manually type the address)"
    Else
    txt_Site_Address = Range("SiteAddress").Cells(R.Row).Value
    End If
    'Manned / UnManned Site:
    Set R = Range("SAC").EntireColumn.Find(txt_SAC_No.Value, _
    LookIn:=xlValues, LookAt:=xlWhole)
    If R Is Nothing Then
    txt_Manned_UnManned_Auto = "N/A"
    ElseIf R.Value = "0000" Then
    txt_Manned_UnManned_Auto = "N/A"
    Else
    txt_Manned_UnManned_Auto = Range("MannedUnManned").Cells(R.Row).Value
    End If
    'txt_Business_Owner:
    Set R = Range("SAC").EntireColumn.Find(txt_SAC_No.Value, _
    LookIn:=xlValues, LookAt:=xlWhole)
    If R Is Nothing Then
    txt_Business_Owner = "N/A"
    ElseIf R.Value = "0000" Then
    txt_Business_Owner = "N/A"
    Else
    txt_Business_Owner = Range("Business").Cells(R.Row).Value
    End If
    'Site Type:
    Set R = Range("SAC").EntireColumn.Find(txt_SAC_No.Value, _
    LookIn:=xlValues, LookAt:=xlWhole)
    If R Is Nothing Then
    txt_Site_Type = "N/A"
    ElseIf R.Value = "0000" Then
    txt_Site_Type = "N/A"
    Else
    txt_Site_Type = Range("SiteType").Cells(R.Row).Value
    End If
    End Sub
    With immense gratitude :)
    The ShyButterfly
    Hope you have a terrific day, theShyButterfly

  • Referencing a page item with query results from another page

    Hello Gurus,
    Any Idea How to achieve following in APEX.
    Step 1: Page 1, Region A of type SQL report.
    Sql query:
    select employee from emp;Step 2: Page 2, A display item is created on this page, say :P2_X that is intended to source its values from the query/region written in Page1.
    In this example stated above, I need to display :P2_X on PAGE 2 that in receives value from employee column on the query mentioned in step 1.
    Any idea how to achieve this?
    Thank you for reading this post.
    -R

    Hello Rich,
    Edit your SQL Report.
    Under Column Attributes , edit the EMPLOYEE Column.
    Go to LINK Tab.
    In link text : select the first option #EMPLOYEE#
    In Target is - select Page in this application.
    in item type P1_X and in value enter #EMPLOYEE#
    Regards,
    Shijesh

  • How to transfer data from an IFrame to another page

    Hi,
    I had a search page with a search selection and an interactive report region for the result.
    Then, via a button, I submitted the data from the search results to another page (plsql process).
    Now we have changed that and the interactive report with the results is located in an own page, this page is 'embedded' in my old Search page within an IFrame.
    If I want to use the button to transfer the data --> no data is transferred. I guess this is because the button and the process is not on the new page but in the old search page.
    How should I handle that now? Any suggestions are appreciated!
    Thank you!
    BR
    Lena

    Hi,
    You could try moving the process to the report page and have a hidden button on the page as well. Your existing button could call some javascript that does something like:
    document.frames("iframe_ID").document.doSubmit("report_page_button_name");I don't use IFRAMEs myself any more as some functionality is not available "for security reasons" in javascript, so the above is just a theory!
    Andy

  • Issue with table selection and display the seleted rows in another page as a table data

    Dear ALL,
    I have a  requirement as below:
    I have a custom OAF  page having one button, on pressing the button it will open a popup window, in that i am doing search operation and data would populate in table region below.
    Then from the table i am doing multiple selection of rows and i have a button, on pressing the button the seleted rows should display in the base page where i called this popup window and popup window should close.
    so i am able to perform multiple selection of row  from the table but how i can display the seleted rows in my base page  and how i can close the poup window after the seleted rows displayed in the base page, please help me on this.
    Thanks
    Deb

    Hi,
    For navigation data from one page to another  you can use  a hashmap that contains the parameters.
    // processFormRequest()
    HashMap hsp = new HashMap(1);
    hsp.put("myParam", "myParamVal");
    pagecontext.setForwardURL("MY_FUNCTION", (byte)0, null, hsp,true, "N", (byte)0);
    You can then retrieve this parameter in processRequest() via:
    pagecontext.getParameter("myParam")
    //Code for redirect to base page with commit
    Refer to the setPostToCallingPage method, from OADialogPage Class how to make the dialog page action buttons submit back to the calling page. In the example, the OK button commits the changes on the dialog page and the NO button rolls back the changes.
    OADialogPage dialogPage = new OADialogPage(OAException.*, mainMessage, null, "", "");
    dialogPage.setOkButtonItemName("okButton");
               dialogPage.setOkButtonToPost(true);
               dialogPage.setNoButtonToPost(true);
               dialogPage.setPostToCallingPage(true);
               dialogPage.setOkButtonLabel(yes);
               dialogPage.setNoButtonLabel(no);
    Thanks,
    Dilip

  • How to display the query results in several pages?.

    Hi,
    i want to display the query results in several pages. for example my query result found 50 matches, now i want to print 20 per pages next 20 will be in next pages. iam using only jsp & mysql.
    Regards
    Chinna

    Hi, what you are trying accomplish is known as pagination.
    You could use JSTL tags with Custom Tags to perform pagination in your JSP pages.
    evnafets showed me DisplayTags , you could use those as well http://displaytag.sourceforge.net/11/tut_externalSortAndPage.html
    Here is one article on paging:
    http://www.javaworld.com/javaworld/jw-07-2004/jw-0726-pagination.html

  • Display picture on another web page

    Hi,
    I'm a NEWBIE to dreamweaver...
    I have a web page that contains several pictures (small). When the client clicks on a small picture I want to display that particular picture (bigger) on another page. How would I go abouts doing this? Do I have to pass the filename, of the picture, to the other page? If so, what is the best way to do this.
    I currently use HTML and CSS to code the web site.
    Please Help.
    Thanks in advance,
    Marc

    I have a web page that contains several pictures (small). When the client clicks on a small picture I want to display that particular picture (bigger) on another page.
    Linking to an image as you have suggested doesn't link to a page as the OP described. An image is not a page unless it's contained in a page. If it's just an image then it's just that: just an image. It may open in a browser window or tab, but a browser window or tab is not necessarily a page. Link to a page by placing the image in the page in similar manner as how the thumbnails were added to a page then link thumbnail to the lardger image page by using anchor tag.
    <a href="you_image_page.html"><img src="th_thumb_image.jpg" ...
    best,
    Shocker

  • How to display query result in seperated page.

    How to display query result in seperated page, if the results are very big (more than 5000 records) and there are so many concurrent users (about 500 - 1000 users).
    Are there any solutions or frameworks?
    Plese help me .........
    thanks,
    --bhasin

    Hi,
    How to display query result in seperated page?I think RowSet will be the better technology to use in this
    situation.For more information on this please visit http://developer.java.sun.com/developer/Books/JDBCTutorial/chapter5.html
    which explains in detail about RowSets.
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support/

  • How do I display # symbol in PHP to refer to an anchor on another page?

    How do I display # symbol in PHP to refer to an anchor on
    another page?
    I am updating a record and using a dynamic anchor name for
    the page to forward to like this:
    seeAllEntriesXcodeAsc.php#<?php echo
    $row_getProductsWithSAMEcode['id']; ?>
    But I keep getting an error, I think its because its reading
    the # hash sign as a PHP instruction rather than an anchor hash...
    Is there are way to mark it up so as to use the # as part of the
    URL ?
    I have even tried referring to a dummy field with a hash in
    like this - but that doesn't work either.
    seeAllEntriesXcodeAsc.php<?php echo $_POST['hash'];
    ?><?php echo $row_getProductsWithSAMEcode['id']; ?>
    Thanks!

    Sorry, I will try and explain in a different way...
    I have a page in php where a database has an entry added,
    changed or deleted.
    The page is posted to an in between page to process the
    transaction (which works)...
    You are then taken to a dynamic anchor of the entry on a
    database summary page to the SAME entry to see that the change has
    been done.
    (So the basic problem is that the link to take to the anchor
    needs to have a # hash symbol in the middle to denote the anchor,
    but the URL that is created puts the # at the end of the URL rather
    than directly before the link the php code generates... All I need
    is a way to code a PHP URL that manages a # hash in the middle.)
    So in the middle processing page, I have update an entry
    transaction with the page to redirect to after undertaking the
    transaction as:
    seeAllEntriesXcodeAsc.php#<?php echo
    $row_getProductsWithSAMEcode['id']; ?>
    So the final URL error I get is this:
    Parse error: syntax error, unexpected
    T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or
    T_NUM_STRING in
    /secure/c/capitalgarden/admin/DeleteEntryProcessor.php on line 39
    The file is too large to post here so I have saved the file
    as an HTML file so you can read the code at this URL:
    http://www.new.capital-garden.com/DeleteEntryProcessor.html
    Thanks for your help!
    C

  • Search result to get data from bing search and display it in sharepoint page.

    I have configured result source which gets data from bing site,i have given following url as source url
    http://www.bing.com/search?q={?searchterms}&format=rss&Market=en-Us
    but it returns only 8 results from RSS. i want to get all results of search and display it in my SharePoint search results page. 
    any pointers will be helpful. 

    Hi,
    According to your post, my understanding is that you wanted to search result to get data from bing search and displayed it in sharepoint page.
    To display more items, you can modify the item number when you add
    New Query Rule.
    To get all results, I recommend to use the “Show More”
    link in the result page.
    You can enter the URL when you add New Query Rule:
    "More" link goes to the following URL: http://www.bing.com/search?q={searchterms}
    Here is a great blog for your reference:
    http://sharepoint-community.net/profiles/blogs/integrate-bing-with-sharepoint-online-2013-search
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Displaying facemessage to a another page other than requested page

    Dear All,
    I have requirement to display FaceMessage to an another page that is other than the requested page.
    Code in the backing bean is some thing like this.
    Login.java:
    if(login.validate())
    FacesContext.getCurrentInstance().addMessage(null,
    new FacesMessage("User logged Successfull!"));
    return "success"; // Which will show success.jsp
    else
    FacesContext.getCurrentInstance().addMessage(null,
    new FacesMessage("Invalid login!"));
    return "failure"; // Which will show login.jsp
    I am able to display the "Invalid login message succesfully in the login.jsp if the user is not a valid user.
    But if user is successfull, it's not showing any message in the success.jsp
    Thanks in advance
    Manas

    Does the navigation case have a <redirect/> directive for the 'success' case? If so, remove it.
    Does the success JSP file have a <h:messages/> tag? If not, add it.

  • How to display a JSF page inside center part of panel of another page?

    How can I display a second JSF page inside my center part of Stretch layout in my First page on click of a commandImageLink of First JSF page? Can anyone help me in this with some example?

    Here is a tutorial that will introduce you to the concepts of taskflows, page fragments and regions - http://www.oracle.com/technology/obe/obe11jdev/ps1/boundedtaskflow/bounded_task_flow.html

  • What is a deep link? How to get a deep link of a page and get it displayed in another page or iview?

    I  am asked to get the deep link of a particular iview in a page in ESS role and use it in another page so that the users can easily navigate to the deep linked contents..

    Hello Ajeeth,
    maybe you should ask the person who gave you the assignment, what they mean by "deep link".
    Regards,
    Steffi.

Maybe you are looking for

  • ITunes 7.7 messes up alphabetical order

    Hello! After installing iTunes 7.7 any new import I make is put to the wrong place in the alphabetical order. I use "Album by Artist" sorting, and when I imported an Avril Lavigne album it was put to the letter L instead of A. Similarly Alice Cooper

  • Create a an Table of content or an Index page in report in Oracle BI Publisher

    I want to create an Index page for my multi page report in Oracle BI Publisher. Any help would be appreciated. I am using MS word 2010 for creating the template (*.rtf file). Please let me know if any more details are required. I am creating a rtf te

  • Discussion forum Cannot find the configuration file config\common\bc4j.xcfg

    I successfully deployed the discussion form portlet and registered it with portal. I can reach the provider test page at Http://myserver:7777/forum/providers/forum Everything seems to be good except when I add the portlet to a page, and then view the

  • Can't open movie files

    I downloaded windows media for mac and I still can't open movie files. When I click open a error window pops up saying "the file is not a movie file." That's crap I can open the files on my pc but not on my mac. By the way the files are on a external

  • Photoshop Elements 12 - problems with copying image

    I'm trying to select a person from one photo and put them into a completely different photo.  Using the selection brush (the lasso and magic wand didn't work with this photo) I have outlined the person then copied to the other photo.  The problem is