HOW TO CREATE FORMATTED SEARCH ?????

HOW TO CREATE FORMATTED SEARCH ??
ANYONE KNOWS PLESE EXPLAIN????
Regards,
Vinayak

hi Vinayak,
Please no Caps...
check this thread [Click here|http://forums.sdn.sap.com/thread.jspa?threadID=1579223]
check the ff. Wiki Pages as well
http://wiki.sdn.sap.com/wiki/display/B1/S-FSFormattedSearchesSQLPostedtoWiki
http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=69763407
regards,
Fidel

Similar Messages

  • How to create generic search help in wd abap

    Hi experts,
          How to create generic search help in wd abap.
    Regards...
    Arun.

    Hi Arun,
    Following links have step by step procedures for creating search helps and other related topics.
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/content.htm">ABAP Dictionary Search Help for WD</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/9b/c51c42735b5133e10000000a155106/content.htm">Input Help in WD ABAP</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm">Search Helps</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21ee5f446011d189700000e8322d00/content.htm">Creating Elementary Search Help</a>
    Regards,
    Neha
    <i><b>PS:Reward if helpful</b></i>

  • Creating formatted search using DI API

    Dear All,
    Please let me know if we can implement/create formatted search on a UDF textbox using DI API. Is it possible to create formatted search through code using DI API ?
    Regards,
    Noor Hussain

    Yes, it is possible. Look for the FormattedSearches object in SDK.

  • How to create an  search help for standard Screen

    Hi,
    Can any one help me out ... How to create a search help for standard screen field.......
    thanks & regards,
    Naveen...

    Hi Naveen.
    I would like to suggest a couple of references,
    [SDN - Standard Reference for create a search help for own fields in selection screen |How to create a search help for my own fields in selection screen;
    [SDN - Standard Reference for Attaching search help to standard screen|Attach search help to standard screen;
    [SDN - Reference for want to add a field in standard search help screen|want to add a field in standard search help screen;
    [SDN - Reference for Attaching a search help to a standard screen - Case 2 |attaching a search help to a standard screen;
    Hope that's usefull.
    Good Luck & Regards.
    Harsh Dave

  • How to create a search with multiple criteria

    Hi
    I've a table that contain staff information. (name, dept. position, ext, email...etc)
    I've created a search page that allow the user to search any field. The result should appear in the same page
    first i've created the form:
    enter staff First_Name:
    enter Dept. :
    select position:
    submit button
    Then I've created the record set that select all the feilds from the table, now i need a help in the criteria, This is what I used:
    SELECT *
    FROM tblstaff
    WHERE First_Name LIKE %colname% AND Dept = coldept
    for both colname and coldept
    default = 1
    runtime value = $HTTP_POST_VARS['First_Name']    -    $HTTP_POST_VARS['Dept']
    It seems to work fine when i enter all the values in the search form. but what if i left some fields empty? In other word how can I add (All in the drop down menu and accept empty value for the text search)??
    can anyone help me?

    The simplest way to do this is to add a wildcard character to the end of coldept and make the field optional.
    SELECT *
    FROM tblstaff
    WHERE First_Name LIKE %colname% AND Dept LIKE coldept%
    If the department field is left empty, it will match all departments.
    By the way, you should not be using $HTTP_POST_VARS or $HTTP_GET_VARS. It's obsolete code, and will break on a modern installation of PHP. Use $_POST and $_GET instead.

  • How to create advanvance search page style oracle web  with adf?

    i want create advance search page. it can add parameter at runtime (select attribute from drop downlist and click add) how to?

    OK - so you want to be able to change the attribute you are searching on..In that case I'd probably do something like create a search form with all possible parameters..then using Expression Language, hid the ones that are not the selected value in a drop down list....
    I'll have a quick play and see if I can get this working but thats the idea anyway.
    regards
    Grant Ronald
    Oracle Product Management

  • Create Formatted  Search by code in a user form

    Hi, I want to create a formated search in a user form but it doesnt work using my form id (STEC_EXTRAS) as the search.FormID.
    I created the formatted search by SAP (Shift+F2) and in the table of formatted searches the formid appears as 2000001000
    ¿Where is the relation between my id and the id SAP uses?¿Any SAP table or conversion rule?
    Thanks for the possible help.

    Hello,
    When You create a form, the id (Type) can be set up by  Add function, ..... it is staring form 2000000000 ...
    Maybe Your "ID" STEC_EXTRAS is the Unique ID of the Form...... not the Type
    Public Const WM_USERFORM As Integer = 2000000000 ' User defined forms minimum ID
    Public Const YOURFORM As Integer= WM_USERFORM + 1 ' My form id will be  2000000001 
    oForm = m_SBO_Application.Forms.Add("MYFORM", SAPbouiCOM.BoFormTypes.ft_Sizable, YOURFORM - WM_USERFORM)
    'this is the same as
    oForm = m_SBO_Application.Forms.Add("MYFORM", SAPbouiCOM.BoFormTypes.ft_Sizable, 1)
    ' or the same as
    Dim creationPackage as SAPbouiCOM.FormCreationParams
    creationPackage  = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
    creationPackage.UniqueID = "MYFORM"
    creationPackage.FormType = YOURFORM
    creationPackage.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Fixed
    oForm = SBO_Application.Forms.AddEx(creationPackage)
    If you use  STEC_EXTRAS as FormType, You will see in the CSHS table STEC_EXTRAS as the FormId
    Dim creationPackage as SAPbouiCOM.FormCreationParams
    creationPackage  = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
    creationPackage.UniqueID = "MYFORM"
    creationPackage.FormType = "STEC_EXTRAS"
    creationPackage.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Fixed
    oForm = SBO_Application.Forms.AddEx(creationPackage)
    Regards
    J.

  • How to activate formatted search

    Hi,
    I want to activate a formatted search when I open a form.
    Is that possible?
    Thanks
    Fabio

    Fi Fabio,
    ->> IF you assign the FMS in UDF on Document.
    ->> Auto Refresh of any field(for ex. AutoRefresh of Customer/Vendor Code or DocDate ).
    -> Assign the Refresh Regularly.
    Ex.
    1. Goto the UDF and Clcik ShiftAltF2.
    2. Select the SEARCH BY SAVED QUERY.
    3. Assign the FMS Query.
    4. Select the AUTO REFRESH WHEN FIELD CHANGES.
    5. Select Customer/Vendor Code or DocDate
    6. Check the
    Refresh Regularly

  • How to create a search form? - Jdev TP4 11.1.1.0.0

    Hi,
    I am using Jdev TP4 11.1.1.0.0.
    I have a af:table which is based on a view. I want to have a search form on top of this af:table to query based on the selection in the search form. I have 15 columns in the view. When I drag and drop the "All queriable attributes" from the named criteria I get all these columns in the search form. I need only 3 of the columns in the search form and the af:table should query based on the selection. How can I achieve this? Any help. Thanks in advance.

    You can create a new named query with only these three columns in the where clause and use that.
    Or you can drag the VO as a search form and remove the columns you don't need.

  • HOW TO CREATE THE SEARCH OPTION ON THE DASHBOARD

    Hello developers,
    So, I am supposed to come with a credit card sales report that will enable the end user to search for the last 4 digits and be able to see where the sale was made, (location); transaction #; dollar amount, payment location, store #, and purchase details..
    The tables seems obvious, I am just not quite sure about the search part. . How do I go about put the option of letting end-users be able to search for the last # digits and then see everything else. I am brand new into OBIEE
    willl appreciate your feedback

    I would suggest use this column as char type and in the prompt
    use Operator as 'ends with' and then Control as 'Edit Box'. In the report make this column as Is Prompted.
    Using the column as number type I dont see any way to do it. Just give a try.
    If helps mark
    Edited by: Srini VEERAVALLI on Apr 12, 2013 4:51 PM
    Can you update on this?
    Edited by: Srini VEERAVALLI on Apr 17, 2013 4:24 PM

  • 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 create custom search box will allow up to 60 alphanumericcharacters & User can input a minimum of 1 character and the system will pull back an exact match on the sequence entered.

    Hi,
    Can anyone please help me in creating the Custom Search box with below mentioned functionality
    "The search box will allow up to 60 alphanumeric characters.User can input a minimum of 1 character and the system will pull back an exact match on the sequence entered"

    Hi Pradeep,
    Find the complete JQuery AutoComplete function with along with different events in it like focus, select, open and close. You can modify this code as per your requirement.
    $("#ddlSearchTextBox").autocomplete({
    source: function (request, response) {
    var getUrl = "<site URL>";
    $.ajax({
    url: getUrl,
    type: "GET",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    data: {
    featureClass: "P",
    style: "full",
    maxRows: 10
    dataFilter: function (data, type) {
    return data.replace(/\\'/g, "'");
    success: function (data) {
    response($.map(data.d, function (result) {
    return {
    label: result.Last_Name + ", " + result.First_Name,
    value: result.id
    focus: function (event, ui) {
    $("#ddlSearchTextBox").val(ui.item.label);
    return false;
    minLength: 1,
    select: function (event, ui) {
    $("#ddlSearchTextBox").val(ui.item.label);
    return false;
    open: function () {
    $("#ddlSearchTextBox").removeClass("ui-corner-all").addClass("ui-corner-top");
    close: function () {
    $("#ddlSearchTextBox").removeClass("ui-corner-top").addClass("ui-corner-all");
    Let us know if you need any further.
    Thanks, Shakir | Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How to create a search all value on list

    I am trying to create a form which will enable user to select
    an item on a list to filter records, or allow him to not select
    anything and see all records.
    I created a generic form with one list on it and a submit
    button. Values are:
    Item Label Value
    Select All-- (I left this blank)
    Bicycles--Bicycles
    Motorcycles--Motorcycles
    Skateboards--Skateboards
    My results page seems to be okay. I created a recordset and a
    dynamic table. In recordset, the default varable that was created
    shows Name: colname
    Type: Text
    Default value: -1
    Runtime Value: $_POST['2']
    Problem is that when I select one of the items from the list
    on the form (ex. skateboards), my results page shows all records
    for skateboards. When I select "Select All" from the list, I don't
    receive any records. What can I do to allow user not to enter any
    value and have him receive all records?
    Thanks in advance....

    I found the answer for all of you trying to do the same
    thing:
    In your "Select All" value, put %
    then, select 'contains' instead of = in your filter. That
    should do it! Hopefully this helps someone!

  • How do you create a search engine in Dreamweaver?

    I will like to know how to create a search engine in Dreamweaver?  I am using the following PHP and MAMP for my testing server.  I am looking for a link or information to point me in the right direction.
    Thank You!

    Or use a commercially available search on your website.
    http://Freefind.com
    http://www.wrensoft.com/zoom/
    http://www.google.com/sitesearch/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Mandatory Input in Formatted Search Query Field

    I have created formatted search query. Which has only one field "Serial Number"?  I have to ensure that, the user has to enter the value in that field.  How to do that?
    I was thinking on implement in stored procedure SBO_TransactionNotification with Object_Type = "219". But I am not sure, how to enforce the validation only for this search query.  Because there are 50+ formatted search queries are available in the system.
    Please help

    Hi Suresh
    Check the below document
    How to SET a UDF field as Mandatory Does TNSP required for It?
    With Regards
    Balaji Sampath

Maybe you are looking for

  • External Web Server links to internal web server on LAN - how to configure?

    I'm hoping someone can give me a bit of assistance with some routing configurations: Currently, I have a Cisco PIX 515E that's handling my VPN and routing/DNS, etc. I'm dumping the PIX (it's overkill for my organization and it's costing too much mone

  • Aix migration to windows

    I am a unix / solaris dba. My IT director wants to migrate to Windows based so they can hire more database operators familiar with windows. In my city there is a shortage of really good unix people. anyway , I was curious I think I am given more cont

  • Firefox sync error server incorrectly configured

    The very first time I loaded firefox on my laptop (which i bought only a couple months ago) the syncing worked just fine. After i dont know how much time i started getting errors that the syncing was failing. I tried to reconfigure the syncing proper

  • No historical data in database. UCCE

    HI all. We are running UCCE 9. And today faced the problem: neither AWDB or HDS database tables   _half_hour or _interval shows no data. Real-time tables works fine. Cuic historical reports also shows no data What i've checked: Hds/aw databases has e

  • Color matching setup?

    Hello, I'm an editor new to SG CS6 and am looking how to reveal the Color tab to expose the 2up/3up buttons. I saw a few tutorials regarding the color-matching workflow and went through seemingly everything to find these buttons to no avail. Thanks i