Dreamweaver Search pages

I’ve been trying to create a Search/Result pages in Dreamweaver CS6 without success results. I already have MySql data base bind to my website’s pages. Not sure what kind of server behavior to use. I’ve been googling it but there is not much information about how to proceed to achieve this task, and the little information I could find is very confusing and not clear. Would someone help at lost to find out the right information source to achieve this? 

Thank you for the link,but creating the data base is not an issue, my problem is how to create a Search page to find specific data in the my data base, and retreive the results in a different page. I need to create one page with the "search" or "find" field and another page to get the "search results".

Similar Messages

  • Help needed for implementing master details region on the search page

    Hi All,
         I am new to Jdeveloper and OAF. I need to develop a sales order search page, for which the VO query is
         SELECT ch.order_number order_number
         , ch.attribute97 order_detail
         , ch.attribute14 sold_to
         , ch.attribute50 business_group
         , ch.source_doc_type source_doc_type
         , ch.line_number line_number
         , ch.transaction_amount transaction_amount
         , ch.split_pct||'%' split_percentage
         , jrs.NAME resource_name
         , jrr.resource_number resource_number
         , ch.processed_date processed_date
         , cq.NAME quota_name
         , ch.attribute34 transaction_type
         , ch.attribute35 order_type
         , ch.attribute51 product_line
         , ch.attribute54 city
         , ch.attribute55 state
         , ch.attribute56 district
         , ch.attribute57 area
         , ch.attribute61 salesrep_number
         , ch.attribute62 region
         , ch.attribute64 sales_org
         , ch.attribute68 terr_order_type
         , ch.attribute58 market_indicator
         FROM cn_commission_lines_all cl
         , cn_commission_headers_all ch
         , cn_quotas_all cq
         , jtf_rs_salesreps jrs
         , jtf_rs_resource_extns jrr
         WHERE cl.direct_salesrep_id = cl.credited_salesrep_id
         AND cl.commission_header_id = ch.commission_header_id
         AND cl.quota_id = cq.quota_id
         AND ch.direct_salesrep_id = jrs.salesrep_id
         AND jrr.resource_id = jrs.resource_id
         AND (NVL(ch.source_doc_type,'X') = 'EVEREST' OR NVL(ch.source_doc_type,'X') = 'SAP')
    AND (NVL(ch.attribute50,'X') = 'EMG' OR NVL(ch.attribute50,'X') = 'LSCA')
    I have 3 query parameters business_group, source_doc_type and sales order number.
    The results region should look like,
    Header region with order_number,order_detail,sold_to,business_group and the source_doc_type columns.
    The remaining fields go into the details region.
    Highly appreciate if anyone could help me on this.
    Regards,

    Hi,
    When I have a messagestyle layout for my header, I am not able to find the items in this region for the querycriteriamap. I need to populate the header region with values entered in the search region.
    For example: I create the OrderNumber messagestyledtext item in the messagecomponent layout of the header region. In simplesearchmappings, for the querycriteriamap, I am not able to find this item in the drop down for Results Item property.
    Please help me to understand.
    Regards,

  • OAF - Values not getting displayed in Search Page

    Hi all,
    I have developed a search page with the search citeria mapped to the search panel. I have created VO for this attribute and selected the value from View in this VO(Viewobject). I have created the Query region and set the property of Construction mode as autocustimazationcrietria.
    Now my problem is when am running this page and search through any value or simply if i pressed the Go button,no value is being displayed in the page.
    I have checked the value and same view and the query is returning value in Toad.
    If someone can helpout this issue,it would be great help for me.
    Thanks,
    Renu.

    Hi Renu ,
    Since its working perfect for other query , it should also work for the query you have mentioned above .
    Please make sure that you have shuttle the VO to the AM , and check the View Instance name and View attribute
    for every field that are there in the query region is appropriate .
    You can also run the below query with the search criteria parameter by passing it in where clause  (run it from sql developer / toad ) , and check
    whether you are able to get the result set in back end .
    SELECT hca.attribute1 division, acac.customer_name,
    hca.account_number customer_number, acac.collector_name collector,
    NVL (acac.overall_credit_limit, 0) credit_limit,
    NVL (acac.credit_available, 0) available_credit,
    NVL (acac.balance, 0) open_balance,
    acac.customer_status customer_status
    FROM hz_cust_accounts hca, ar_customer_accounts_ce acac
    WHERE 1 = 1
    AND acac.customer_number = hca.account_number
    AND acac.currency_code = 'USD'.
    Keerthi

  • Issue with File Download(messageDownload) on Search Page.

    Hi,
    I created a custom OAF search page which fetches values from one table. The document in getting stored in my custom table in a BLOB colums and NOT in FND_LOBS.
    The table has 3 collumns along with others:
    1st is primary key (Record_Seq) ==> number data type
    2nd to store actual file name (File1Name) ==> varcahar2 data type
    3rd to store the actual uploaded data (File1Data) ==> BLOB data type
    The reason for having the “File1Name” is so that I can display the original file name of the document that was uploaded, instead of just the “view” in the search page results .
    On the File1Data BLOB and created a messageDownload for that under query results table with following details:
    ID : File1Data
    ItemStyle : messageDownload
    FileMIME Type : pdf
    Datatype : BLOB
    View Instance : LacEmpExposureVO1
    view Attribute : File1Name
    File View Attribute : File1Data
    When I click on the "File1Name" data hyperlink, it is opening only the first document corresponding to the first record in the search page results.
    For example, If my search page returns 10 rows then when I click on the file1name on any row, It is open the first row file name only.
    I have a primary key column(RECORD_SEQ) in the Table / EO / VO which is displayed in the search page results.
    Also one weird thing is happening:
    If I try to do this more than 2 times then it is opening the update page with the first record from the search page results…
    I tried to print the context and it is nul the first time, But the second time then context is changing to "update". Dont know how this is happening????
    Any advice is greatly appreciated as it is very crucial for me to get this resolved ASAP. I have looked at several forums and did a lot of things as advised in the forums . But nothing seems to work for me.
    Thanks,
    Mir
    CO code for the search page
    ===========================
    if (pageContext.getParameter("Create")!= null)
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of CREATE");
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureCreatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    else if ("update".equals(pageContext.getParameter(EVENT_PARAM)))
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of UPDATE");
    System.out.println("LacEmpExposureCO ==> RecordSeq in PROCESS FORM REQUEST is: " + RecordSeq);
    HashMap params = new HashMap(1);
    params.put("RecordSeq", RecordSeq);
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureUpdatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO, // Do not display breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    else {           
    String strEvent = pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM);
    System.out.println(strEvent);
    System.out.println("Into the last ELSE part in LacEmpExposureCO.java");

    Duplicate post -- Issue with File Download(messageDownload) on Search Page.

  • When right click on link in search page it takes me to where it wants not page

    If I search from au.yahoo.com or google (search pages I always use), it brings up a list of suggested sites. If I right click on one of the suggested links and choose to open in new tab or just click on the link, it won't take me to the page listed. It seems to take me to what other site it suddenly feels like taking me to. There is no set site it takes me to, just a huge variety of them. I have done a registry clean, I have uninstalled and reinstalled firefox, I have done a pc clean and have run malaware program.

    If you right-click the link and use Copy Link Location, then paste into the address bar, and press Alt+Enter, does Firefox load the correct site in the new tab? If so, it does unfortunately sound like the nasty malware sometimes called the Google Redirect Virus. This recent thread has a lot of suggestions: [https://support.mozilla.com/nl/questions/873812 90% of the time I get redirected to a destructive site (according to WOT) when I click on a search result. | Firefox Support Forum | Firefox Help].

  • How do I keep a page as my home page when dragging icon to left of URL to house image & confirming that I want it as home page works only for current session, so when Firefox next opened, I end up with some stupid search page which McAfee doesn't like?

    A couple of days ago, I connected to the Internet as usual & opened Firefox, only to be greeted by an almost blank screen with a Google-type search box in the middle & this message from McAfee:
    "Your default search settings have changed. This may pose a security risk. Would you like to restore them to McAfee Secure Search to provide a safer searching experience?"
    instead of my usual home page (BT Yahoo). I naturally clicked on the "Yes" option in the message, but rather than restoring my BT Yahoo home page, all that did was to insert the McAfee logo to the left of the search box in the top right-hand corner of the screen. The first time it happened, I had to search for the BT Yahoo page & then followed the standard procedure for setting it again as my home page. It worked only for that session: each time I shut down Firefox or restarted my computer after that, all I got was the blank "search page" & restoring the previous session was the only way to get back to BY Yahoo. How on earth do I make the home page setting permanent?
    As far as I'm aware, I have done nothing to alter my search settings. However, I am anything but computer-literate, so I may have done/pressed something without realising it, but trying to understand what is now happening is far beyond my limited IT skills.

    See McAfee support to find out how to disable that McAfee feature - that isn't part of the normal Firefox installation.

  • When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history pa

    When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history page etc. Happens on all options that should open new page. I am so frustrated, this has been happening since Firefox updated itself 2 days ago to Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C) was fine before that. using windows vista. Can you please advise what I should do? Also can you go back to previous version? Error console eg
    Warning: Error in parsing value for 'cursor'. Declaration dropped.
    Source File: https://ib.nab.com.au/nabib/styles/menu_nab.css?id=009
    Line: 116
    ib.nab.com.au : server does not support RFC 5746, see CVE-2009-3555 and Warning: Selector expected. Ruleset ignored due to bad selector.
    Source File: https://ib.nab.com.au/nabib/styles/nabstyle.css?id=014
    Line: 837
    == This happened ==
    Every time Firefox opened
    == 2 days ago after update.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Hide 'No data found' msg in report region  when you 1st click search page

    Hi,
    (sorry if it's confusing but my APEX is in FRENCH and I tried to translate)
    I created a search page in my application.
    1- I have an HTML region, with a search box and I search button
    2- I've got a report region (PL/SQL source) which sometimes returns no data, giving a 'No Data Found.' message.
    When I click on the search page for the 1st time (on my navigation bar), I would like to HIDE the report region so I don't have the " No Data Found" message.
    Only Once we click on the search button and there is no result, I want to have the message "No Data FOund"
    How can I achieve this?
    thanks
    Roseline

    1. create a hidden element on your page (P1_HIDDEN_ELEMENT)
    2. put your No Data Found message in a span tag
    <span id="no_data_found">No Data Found</span>3. create an on load computation to set your P1_HIDDEN_ELEMENT to 'no_data_found' if it is NULL and to set it to ' ' if it is NOT NULL - type PL/SQL Function Body
    BEGIN
       IF :p1_hidden_element IS NULL
       THEN
          RETURN '<script>html_HideElement(''no_data_found'');</script>';
       ELSIF :p1_hidden_element IS NOT NULL
       THEN
          RETURN ' ';
       END IF;
    END;4. Put this into the page footer:
    &P1_HIDDEN_ELEMENT.The other solution would be to create a display region - pure HTML and to display that first. Once the search is started that region would remain hidden and only the report would show up.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • When i try to open a tab a Yahoo search page comes-up, i just want a blank page.

    When I do a Ctrl-t to get a new tab it brings up a Yahoo search page. I want a Blank page, like I used to get with a new tab. I must have downloaded the Yahoo stuff, but need to know how to reset my tabs in Firefox to get a Blank page again.
    == This happened ==
    Every time Firefox opened
    == I downloaded, accedently, a Yahoo toolbar I have deleted the toolbar, but the tab problem still exists.

    ''This is a hidden add on!'' Here’s the easy, ''get rid of it for good solution'': It’s done within Firefox. Enter [about:config] in the url address box. Click “I’ll be careful. I promise”. In the <filter> field, type “extensions.netassistant” (no quotes). Right click on the field: “extensions.netassistant.tabsearch.url”, click on [modify] , either delete its string or enter your own. I’ve entered “https://encrypted.google.com” (this is a beta encrypted search by Google) just as a personal satisfaction against Yahoo. Do the same for:”extensions.netassistant.url” field.
    '''NOTE''': If you haven’t modified your Firefox configuration before and you don’t feel comfortable in what you are about to do, '''BACKUP!''' The backup procedure can be found at: http://support.mozilla.com/en-US/kb/backing%20up%20your%20information . Or just do a Google search for “backup Firefox pref.js”.

  • How to add a new  search criteria in Advance Search Page in OAF

    HI,
    In my application (R12) we can access customer related information from 2 places (2 different responsibilities as mentioned below), both are OAF pages.
    1. AX receivables
    2. Sales online
    From both the responsibilities we can perform search for customer related information as well (Simple as well as Advance Search).
    But Advance Search screen from 'Sales online' allows user to perform search, based on few additional fields as well such as 'Classification' (it's an lov based field).
    Now, User is asking to add that field on search page of AX receivables as well.
    So, how to add one more field (as search criteria), on an standard 'Customer' screen?
    Additional Info :
    1. LOV is based on HzPuiClassificationFilterVO
    2. And this VO is available on both pages. (oracle.apps.ar.hz.components.search.server.HzPuiClassificationFilterVO)
    So can we achieve this by Personalization only ? if yes plz share the steps as well.
    Regards,
    Adi

    Yes. It is possible through personalization.
    1. Create a criteria row under Advance Search
    2. Create a Result Item under advance table columns
    3. Create a Query Criteria Map based on the criteria and result item above.
    Please note the newly added criteria field should be in the Searchresults VO attributes list.
    Otherwise you need to extend the VO as well.
    Hope this helps.
    Regards,
    -Mukesh.

  • How do I reorder the list of fields on my search page?

    I have about 10 fields in my query criteria for my search page. They don't appear to come up in an order that would be meaningful to my users, so I'd like to change it. But I can't figure out how. They do always show up in the SAME order, but that order does not appear to be based on anything specific. It's not in column order from the database, it's not in alphabetical order, length order, anything, as far as I can tell. The criteria don't show up in the Design view or the Source file. In the view's XML file, they're in a different order than how they appear on the page. There doesn't appear to be any sequencing information anywhere, as far as I can tell.
    Does anyone know how to do this? I'm using build 4814. Thanks!

    Hi,
    note that you are working with a non-public build, which means that you should really use the internal forum if you are from Oracle. Since the question appears to be generic, lets continue despite of this.
    How did you build the search page, is it that you used the af:query element ? Note that there are several options to build search pages, which makes it important to be specific of which implementation you have chosen. If you are Oracle internal, please send me a testcase based on the HR schema
    Frank

  • Can't go back to original Google search page in Safari 5.0.2 update

    A couple of days ago updated Safari to 5.0.2. I used to do a Google search, advance thru a few pages, on a link, and then click the "return" arrow in the Google box, top right, and would be returned to my "original" search page. In the Safari 5.0.2, the "return arrow" isn't there anymore. Where is it?? Very annoying, requiring more entries now to get back to my "original" search. Did Apple remove this or is it just turned off. Thanks!,

    Don't know what that is. There used to be an arrow in the google box at top right that aloud me to go back to the original page. But now if I search google from the bookmarks bar.. no arrow appears. So, what is the Snap Back from the extensions gallery??

  • On my Macbook, with google homepage, it often begins looping onto google search page and will not allow me to access any websites either by clicking on one, or typing address in. in page

    I use google as my homepage. Very often( every day at some point) when I search a subject and click on the address, a google search page come up with list of choices. When I click on address it simply returns to this page and will not let me access any websites either by clicking on them, opening in new window or tab, nor allowing me to access anything from the address line. When this occurs, it just keeps looping into this page. I clear cache, shut down, and try everything possible. Occurs very randomly and never when I first turn on the computer. ???????

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • How to add Column field in the custom Query Link search page as a header

    Hi,
    I have created a Query page link in web layout editor. Now, I want to customise the view of the result. I see an option to change the "Text1" and "text2", but how do I add other fields as a colum in the search result ?
    The only column I see by default Id, Title, release date and author. I want to see some of the custom metadata in the search result. I don't wan't to apply user specific custom search page.
    Overall, I want a common search view across all the user such that each user doesn't have to create a custom search view.
    Please help.
    Thanks

    hi
    By adding context node, you will not be able to fetch value. To fetch value in BTSubject, you need to have following nodes in your context node.
    Node          Relation                  Higher level node
    BTAdminH
    BTBOSSet  BTHeaderBOSSet   BTAdminH
    BTSubjectSet BTSubjectSet_A BTBOSSet
    BTSubject BTSubjectAll  BTSubjectSet_A
    Right now you dont have BTBOSSet and BTSubjectSet in your view. That is why component is unable to pull data in BTSubject.
    My suggestion would be to create cuco with above nodes
    Bind BTAdminH with BTAdminH of Component controller
    and bind BTSubject of details view with BTSubject of your Cuco.
    If you want code code gp catalog as it comes in complaint then there is seperate procedure for that.
    Best regards
    Pankaj Kumar

  • Possible to disable iPhone Spotlight Search page?

    I understand a lot of people use the Spotlight search feature on their iPhones to launch apps, find documents, songs and whatever.
    Personally I have no need for it as I only use a very few basic apps, no documents and 2 playlists.
    What I would like to do is disable that 'page' completely as I accidentally swipe to it every week or so and then have to swipe back to find what I was looking for. Just trying to make things a bit less annoying. A quick internet search of this issue found a fair number of people in the same situation.
    Note: I've already set double-tapping the Home button brings up my few favourite phone numbers. I'm guessing someone will read the topic title, glance at the post and reply with "duh, just change the double-tap home button settings lol".

    There is no way to disable the search page unless you jailbreak. Even then, I'm not familiar with an app that does what you are looking for. Sorry...

Maybe you are looking for

  • Logical export in RMAn

    Dear friends, Is it passible that we take logical backup(i.e Export/Impot) in Rman. If yes then. Why? [email protected]

  • How to get a txt file output of Bookmarks or Annotations

    I just tried to get a txt file report for the bookmarks. but its not working. var root = this.bookmarkRoot; var Report = new Report(); PrintBookmark(Report, root, 0); Report.save("/c/temp/newreport.txt"); function PrintBookmark(Report, Bm, nLevel) Re

  • Display C4795 won't work

    Printer won't turn off when power button is pressed and display consistantly just has hp on it with running bar underneith. 

  • How to generate graph of total CSV used space ?

    hi , I want to generate graph of total  Hyper-v CSV used space we use scom and i can get graph of each volume individually. I want to create a summation graph to know average growth rate Ramy Shaker

  • Frozen and lost photo's!?!?

    i just imported 200 so photo's into iPhoto but after the import i was rotating some and the program crashed, when i re-opened it the photo's i just imported were not there. As usual i had selected the option to delete the photo's from my camera after