[b]Creating custom search screen[/b]

I created a form to search by CustomerNO or Last Name and to display the customer info if found or all customers that begin with Last name. I have a main canvas with 2 items(textboxes) for 1 for each search. I also have a stacked canvas that will be displayed when the info is found. Problem is how can I open this form in enter_query mode to accept customerno or lastname and then click on my own created button(search) to execute the query. I am setting the where clause in the pre-query trigger of the datablock for the stacked canvas. When I run this form it only works if after I enter the criteria in either item textbox and press CTRL-F11, but I don't want to do this. What I want is for my user to click on my button (search). Please HELP!!!!!!!

Okay this worked, but I also have to change the where clause to search by last name. What am I doing wrong?
set_block_property(block_name,default_where,'Last_name = ' || 'SMITH');
execute_query;
I get an error after it tries to execute: FRM-40350 "Query cause no records to be retrieved"

Similar Messages

  • Create Contact Type in Create Customer contact screen of collections mgt

    Hi All,
    Can anyone please let me know if its possible to create a new contact type ( Currently we have four default types (Outbound call / Inbound Call / Visit to Customer / Visit from Customer) in the FSCM collections management, in the create customer contact screen.
    If its possible to create a new contact type, please let me know where to do that.
    Thanks in advance.
    Thanks
    Krishna

    You can add new contact types in the customizing table UDMV_CCT_TYPE.
    With this you would be able to select the contact types you have
    defined.
    Please note that you can create entries in this table only with the
    customer namespace i.e. prefix 'Z' to the contact type that you choose.
    e.g. if you want to create a new entry in contact type say 'TEST' then
    the entry in the customizing table should be as below:
    Contact type | Name of contact type
    Z03 | TEST
    Another point to note here would be that for each entry that you create
    in this table, the system displays 2 entries (1 for Inbound and 1 for
    Outbound) in the contact type dropdown on the customer contact screen in the collection management system. This is as per the standard design
    and it cant overridden.
    Thanks
    Krishna

  • Creat Custom Search Page

    Hi All,
    I need to Create a Custom search and result page to search business partner in SAP CRM 2007.
    Please help me to creat the same.. 
    I have created my own Z Component need help to proceed further.
    THanks,
    Vandna

    Now call your z component as a work center area link in the navigation bar. You can handle this requirement mostly with configuration in 'Define Workarea componnet repository' and 'Define UI object types' in 'Technical Role definition' and 'UI Framework Definition' respectively. Refer these wikis - 1 & 2 .

  • Creating customized search helps in Dialog Programming

    Hello people I have a little predicament here. I need to create search help restricting the results.
    Like lets say I want to create a search help that select material numbers and name for a specific material group. Then use that as a seach help.
    Right now Im playing around with function module <b>HELP_VALUES_GET_WITH_TABLE</b> but it seems to open right when you access call screen.
    Also Since this is dialog programming I am using screen painter. And I need to assign the search help in an I/O Field.
    Well that's all for now take care guys. Take care to you all.

    Hi Chad,
    Is your problem been resolved .
    If not , just try this code
    Copy paste as it is and it will work .
    TYPES: BEGIN OF values,
             carrid TYPE spfli-carrid,
             connid TYPE spfli-connid,
           END OF values.
    DATA: carrier(3) TYPE c,
          connection(4) TYPE c.
    DATA: progname TYPE sy-repid,
          dynnum   TYPE sy-dynnr,
          dynpro_values TYPE TABLE OF dynpread,
          field_value LIKE LINE OF dynpro_values,
          values_tab TYPE TABLE OF values.
    CALL SCREEN 100.
    MODULE init OUTPUT.
      progname = sy-repid.
      dynnum   = sy-dynnr.
      CLEAR: field_value, dynpro_values.
      field_value-fieldname = 'CARRIER'.
      APPEND field_value TO dynpro_values.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE value_carrier INPUT.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
           EXPORTING
                tabname     = 'DEMOF4HELP'
                fieldname   = 'CARRIER1'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'CARRIER'.
    ENDMODULE.
    MODULE value_connection INPUT.
      CALL FUNCTION 'DYNP_VALUES_READ'
           EXPORTING
                dyname             = progname
                dynumb             = dynnum
                translate_to_upper = 'X'
           TABLES
                dynpfields         = dynpro_values.
      READ TABLE dynpro_values INDEX 1 INTO field_value.
      SELECT  carrid connid
        FROM  spfli
        INTO  CORRESPONDING FIELDS OF TABLE values_tab
        WHERE carrid = field_value-fieldvalue.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield    = 'CONNID'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'CONNECTION'
                value_org   = 'S'
           TABLES
                value_tab   = values_tab.
    ENDMODULE.
    <b>For Screen 100 logic:
    Copy:</b>
    PROCESS BEFORE OUTPUT.
      MODULE INIT.
    PROCESS AFTER INPUT.
      MODULE CANCEL AT EXIT-COMMAND.
    PROCESS ON VALUE-REQUEST.
      FIELD CARRIER MODULE VALUE_CARRIER.
      FIELD CONNECTION MODULE VALUE_CONNECTION.
    <b>Do design the layout also.</b>
    I hope this will help you.
    If this satisfy  you then please close the thread by rewarding appropriate points to the helpful answers.
    Cheers
    Sunny
    Message was edited by: Sunny

  • 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.

  • Custom Search Screen Question

    I have a search screen where the user can enter multiple search criteria fields and click 'FIND' button.
    Below is the code behind the find button. As you can see if the use doesn't enter any of the search criteria
    then it is supposed to get all the records in the block BLI_DATA (this is a db block built on a view of a table).
    At the bottom of the BLI_DATA screen, there are two buttons 'OPEN' and 'CANCEL' (these belong to a diff. block called
    BLI_DATA_ACTION). Open opens up the record selected in BLI_DATA. Cancel cancels out of this and takes back
    to the search screen. That scenario works ok. Else if the user enters any of the criteria, then the dynamic where
    gets the required records. That works too.
    What is not working is, if I enter say state = 'LA' in the first pass and click find, it gets
    me the records for LA. Then if I click'CANCEL'and come back to the search screen, remove all the search criteria
    and now click 'FIND' in the 2nd pass, it still gets me the LA information.
    Code behind the FIND button
    DECLARE
      v_where varchar2(1000):=null;
      v_orderby varchar2(1000):='BLI_ID';
      al_id ALERT;
      al_button NUMBER;
    BEGIN     
    IF :BLI_SEARCH.BLI_STATE IS NULL AND :BLI_SEARCH.BLI_STORE_TYPE IS NULL
        AND :BLI_SEARCH.BLI_COUNTY IS NULL AND :BLI_SEARCH.BLI_COUNTY_NAME IS NULL
        AND :BLI_SEARCH.CITY IS NULL AND :BLI_SEARCH.GEO_IND IS NULL
        AND :BLI_SEARCH.BLI_PLAT_LEASE IS NULL AND :BLI_SEARCH.FORM_DATE_FROM IS NULL
        AND :BLI_SEARCH.BLI_LEASE_DATE_FROM IS NULL AND :BLI_SEARCH.FORM_DATE_TO IS NULL 
        AND :BLI_SEARCH.BLI_LEASE_DATE_TO IS NULL THEN
       --app_find.find('BLI_DATA');
       -- P_GET_BLI_DATA;
    --   v_orderby:=':BLI_ID ASC';
    --SET_BLOCK_PROPERTY('BLI_DATA',ORDER_BY,v_orderby);
      message('i am here' ||'-'|| :BLI_SEARCH.BLI_STATE);
      GO_BLOCK('BLI_DATA');
      Execute_Query(all_records);
      GO_BLOCK('BLI_DATA_ACTION');
      GO_ITEM('BLI_DATA_ACTION.OPEN'); 
    ELSE
         v_where := 'WHERE state = nvl( ''' || :BLI_SEARCH.BLI_STATE ||''',state)
                                       and concept =  nvl( ''' || :BLI_SEARCH.BLI_STORE_TYPE ||''',concept)
                                       and county_type = nvl( ''' ||:BLI_SEARCH.BLI_COUNTY ||''' , county_type)
                 and county_name = nvl( ''' || :BLI_SEARCH.BLI_COUNTY_NAME || ''', county_name)
                 and city = nvl( ''' || :BLI_SEARCH.CITY || ''', city)
                 and platform_lease = nvl( ''' || :BLI_SEARCH.BLI_PLAT_LEASE || ''', platform_lease)
                 and geo_ind = nvl ( ''' || :BLI_SEARCH.GEO_IND || ''', geo_ind)
                 and form_date >= nvl(to_date(''' || to_char(:BLI_SEARCH.FORM_DATE_FROM,'DD-MON-RR') || ''',''DD-MON-RR''),form_date)
                            and form_date <= nvl(to_date(''' || to_char(:BLI_SEARCH.FORM_DATE_TO,'DD-MON-RR') || ''',''DD-MON-RR''),form_date)
                 and lease_date >= nvl(to_date(''' || to_char(:BLI_SEARCH.BLI_LEASE_DATE_FROM,'DD-MON-RR') || ''',''DD-MON-RR''),lease_date)
                            and lease_date <= nvl(to_date(''' || to_char(:BLI_SEARCH.BLI_LEASE_DATE_TO,'DD-MON-RR') || ''',''DD-MON-RR''),lease_date)';
    SET_BLOCK_PROPERTY('BLI_DATA',DEFAULT_WHERE,v_where);
    GO_BLOCK('BLI_DATA');
    DO_KEY('execute_query');
    message('i am here1 ' ||'-'|| :BLI_SEARCH.BLI_STATE);
    IF :BLI_DATA.STATE IS NULL THEN
          al_id := Find_Alert('AOK');
         Set_Alert_Property(al_id, alert_message_text, 'No Records were found');
         al_button := Show_Alert(al_id);
         GO_BLOCK('BLI_SEARCH');
         GO_ITEM('BLI_SEARCH.BLI_STATE'); 
         RAISE FORM_TRIGGER_FAILURE;
    ELSE
      GO_BLOCK('BLI_DATA_ACTION');
      GO_ITEM('BLI_DATA_ACTION.OPEN'); 
    END IF;
    END IF;
    END;Code behind the CANCEL button:
    GO_BLOCK('BLI_DATA');
    CLEAR_BLOCK(NO_VALIDATE);
    GO_BLOCK('BLI_SEARCH');
    CLEAR_BLOCK(NO_VALIDATE);
    :BLI_SEARCH.BLI_STATE :=NULL;
    :BLI_SEARCH.BLI_STORE_TYPE:=NULL;
    :BLI_SEARCH.BLI_COUNTY:=NULL;
    :BLI_SEARCH.BLI_COUNTY_NAME:=NULL;
    :BLI_SEARCH.CITY:=NULL;
    :BLI_SEARCH.GEO_IND:=NULL;
    :BLI_SEARCH.BLI_PLAT_LEASE:=NULL;
    :BLI_SEARCH.FORM_DATE_FROM:=NULL;
    :BLI_SEARCH.FORM_DATE_TO:=NULL;
    :BLI_SEARCH.BLI_LEASE_DATE_FROM:=NULL;
    :BLI_SEARCH.BLI_LEASE_DATE_TO:=NULL;
    :BLI_SEARCH.BLI_LL_REF_CODE:=NULL;
    :BLI_SEARCH.BLI_LOC_TYPE:=NULL;
    :BLI_SEARCH.BLI_CLASSIFICATION:=NULL;
    show_view('BLI_SEARCH');
    GO_ITEM('BLI_SEARCH.BLI_STATE');
    hide_view('BLI_DATA');When I remove all the search criteria in the 2nd pass, why does it still get the LA information?
    Thanks,
    Chiru
    Edited by: Megastar_Chiru on Sep 21, 2010 9:44 AM

    I had a similar requirement and I put it in a procedure like this.
    PROCEDURE BUILD_WHERE_CLAUSE IS
      hold_clause varchar2(2000);
    BEGIN
          -- check location code and add condition if it is not null
       IF :key_block.locn_code IS NOT NULL THEN
          hold_clause := hold_clause ||
          ' and (cwvcatr_locn_code = :key_block.locn_code)';
       END IF;
          -- check case type and add condition if it is not null
       IF :key_block.case_type IS NOT NULL THEN
          hold_clause := hold_clause ||
          ' and (cwvcatr_ctyp_code = :key_block.case_type)';
       END IF;
          -- check action code and add condition if it is not null
       IF :key_block.cwvatyp_code IS NOT NULL THEN
          hold_clause := hold_clause ||
          ' and (cwvcatr_cwvatyp_code = :key_block.cwvatyp_code)';
       END IF;
          -- check case assign day and add condition if it is not null
       IF :key_block.case_assn_day IS NOT NULL THEN
          hold_clause := hold_clause ||
          ' and (upper(cwvcatr_case_assn_day) = upper(:key_block.case_assn_day))';
       END IF;
          -- strip off initial 5 characters ' and '
       IF hold_clause IS NOT NULL THEN
          hold_clause := SUBSTR(hold_clause,6);
       END IF;
       -- Set the DEFAULT_WHERE to newly built WHERE clause
       SET_BLOCK_PROPERTY('CWVCATR_1_BLOCK',DEFAULT_WHERE,hold_clause);
          -- Set the ORDER_BY clause
          IF :key_block.sort_by = 'C' THEN
                 SET_BLOCK_PROPERTY('CWVCATR_1_BLOCK',ORDER_BY,'cwvcatr_case_id');
          ELSE
                 SET_BLOCK_PROPERTY('CWVCATR_1_BLOCK',ORDER_BY,'cwvcatr_assn_date');
          END IF;
    END;So regardless of what user puts in parameters, the default where is set accordingly. If there is no parameter entered, it does not set anything. And if only one parameter is entered, only one condition is set and so on. This might be helpful in your case too.
    Edited by: Zaafran Ahmed on Sep 21, 2010 10:49 AM

  • Instructions to create custom home screen icons for websites and phone #'s

    Here are instructions to create a home screen icon for a phone number or a website. This is very cool!
    1. Go to http://webclip.us on your computer (not on your phone) and click on "create now".
    2. In icon label, type what you want to call your icon.
    3. In URL, type either the URL of the website you want to link to, or for a phone number link, type http://##########.tel.QLNK.net (where ########## is the 10 digit phone number you want).
    4. In icon file, click the arrow to browse to the photo or image you want the icon to display.
    5. Enter the security code shown, then click "upload now". You will get a "webclip number".
    6. Now on your iPhone in Safari, go to http://webclip.us and enter the webclip number your computer just generated, and tap Go.
    7. Use the plus sign to add the icon to your home screen, change the name to whatever you want, and you will have a cool little icon with the photo you uploaded!
    If you used the phone number option, when you tap the icon on your home page, it will launch Safari and then pop up "Call" and "Cancel" buttons to call that phone number directly. If you used a website URL, it will launch that website just like a regular webclip.
    So I now have an icon with my husband's face on it that dials his phone number. Very cool!!
    -SB
    Message was edited by: SisterBlue
    Edit to make it clear that I don't take credit for creating this procedure - I simply found a reference to them in another post and posted the step-by-step here because it worked so well for me.

    Do you know if this requires the 1.1.3 upgrade.. I got all the way through it until the end where it would not give me a plus sign or a way to add it.. wondering if it can be done with 1.1.2 thanks!

  • Creating customized search results in SharePoint 2013

    I am trying to customize search result through display template. my template has two block for Rendering. how to customize search result such as following image:

    Hi Dastani,
    There are two ways to display your results.
    In Search result web part by creating the display type.
    Content Search web part
    As per your above image, I guess you are talking about the content search web part. So for that you need to modify the both control template as well as item display
    template. I don't think you will get the desire result as per your block , During the render process the item template call for each item (indexed item in the
    search corpus).
    Basant Pandey
    http://sharepointfordeveloper.blogspot.com/

  • How to create custom splash screen that shows loading %?

    I'd like to add a splash screen to my app. that shows the loading as a percentage.  I have flashbuilder 4.6.  How can I do this?

    You might need to consider adding your child elements in application manually. Displatch a new event back to the application when the child is created (from creationComplete) and update progress bar.

  • Custom Search using new View Object (Programatically)

    Hi Experts,
    Currently i am exploring the ADF-BC and i have a basic question. Hope you experts will help on this. I am thinking of implementing the search functionality with out using the "Query component" because the search that i am going to implement is complex and very custom. So for that i have decided to create one View object with the controls that needs to be displayed in the search screen. E.g assume the DepartmentVO is available and i want to create the search screen So i have create a another view object called DepartmentSearchVO (Program view object) and create transient variables for each search filed that i was thinking to have.
    Now i want to implement the Search button. When the users clicks on the search then i can called the DepartmentVORowImpl method called search() and construct the query based on the input. Then how about the results return. Since the DeparmentVO is coarse grain i am thinking to have another light View object called DeparmentLightVO (Program object) and use that to bind with the table for display.
    Please let me know am i going in the right direction. Is there any better way for this kind of requirement implementation.
    -t

    Hi,
    As Shay mentioned, you could set the where clause of the VO which you want to filter.
    In your search() method, you could get the VO (DeparmentVO in your case), set the where clause based on the parameters you are passing to this method (or the columns in the DepartmentSearchVO) and execute the query.
    You could use the VO (on which you've performed executeQuery) as a table / ROT in your application.
    -Arun

  • Customized Search Help

    Dear Firends,
    In dialog program I want to create Search Help as per our needs , what is the best way to create Customized Search Help .
    Deepak

    Use fm F4IF_INT_TABLE_VALUE_REQUEST for your requirement.
    check  this code.
    DATA: progname TYPE sy-repid,
    dynnum TYPE sy-dynnr,
    dynpro_values TYPE TABLE OF dynpread,
    field_value LIKE LINE OF dynpro_values.
    data: begin of t_t001l occurs 0,
    werks type werks_d,
    lgort type lgort_d,
    end of t_t001l.
    data: v_werks type werks_d,
    V_lgort type lgort_d.
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS: P_PLANT LIKE MSEG-WERKS,
    P_STOLOC LIKE MSEG-LGORT.
    SELECTION-SCREEN END OF BLOCK B1.
    INITIALIZATION.
    PROGNAME = SY-REPID.
    DYNNUM = SY-DYNNR.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_STOLOC.
    CLEAR: field_value, dynpro_values. REFRESH dynpro_values.
    field_value-fieldname = 'P_PLANT'.
    APPEND field_value TO dynpro_values.
    CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
    dyname = progname
    dynumb = dynnum
    translate_to_upper = 'X'
    TABLES
    dynpfields = dynpro_values.
    READ TABLE dynpro_values INDEX 1 INTO field_value.
    select werks lgort into TABLE t_T001L from T001L where werks = field_value-fieldvalue.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'P_STOLOC'
    dynpprog = progname
    dynpnr = dynnum
    dynprofield = 'P_STOLOC'
    value_org = 'S'
    TABLES
    value_tab = t_T001L.
    based on one field input ur search help will be created

  • Custom search form and custom results

    Hi, everyone!
    My problem is that I have to search for custom items with custom fields (attributes). So I have to create my own search form with necessary fields. Than the solution may be to call the portal30.wwsbr_search_api.submit_search procedure, but it renders it's own HTML result with advanced search form. That doesn't suit me. Searching for alternative API, I found portal30.wwv_searchdb.search function. I tried to use it, but in any case it fails with exception and error message "ORA-01403: no data found". From the previous messages I've discovered that there is custom search portlet in 9.0.2. But is it possible to solve my problem without these new features?
    Thank you for your answers ;)
    yk
    P.S. Sorry for my English...

    Yuriy,
    I'm sorry but the portal30.wwv_searchdb.search api is not one of the public apis. There is no simple out of the box way to address your issue with release 1 of Oracle9iAS Portal (you'll have to wait for release 2 for that), but you could do some post processing of the HTML that gets returned from the search results screen and present that to your users. While it would take a little work it would probably give you the functionality you desire.
    You would create a custom search screen, and have the submission call our api with the users values. Then process the results of that call (an HTML page) inside a procedure to finally present your own view of the data.
    Good luck,
    Rich

  • How to hide the Save Results Layout checkbox on the Create Saved Search pop

    I need to hide the Save Results Layout checkbox on the Create Saved Search popup. Can anyone tell me how to do it?
    This popup is used when the user is on a query (rendered by the af:query component) and they select click the "Save..." button. The have three options, Set as Default, Run Automatically, and Save Results Layout. I have an implementation that supports everything except saving the layout. So I need to hide that checkbox.
    Thanks,
    Mike

    For anybody else who needs to do this, here is how I did it.
    Add this to your css
    /* This hides the Save Results Layout checkbox on the Create Saved Search screen */
    span[id$='saveLayout'] {
    visibility: hidden;
    }

  • Custom leave screen creation with feature of uploading doctor's certificate

    Hi Experts,
    In our ESS / MSS implementation project we have to create custom leave screen. In the leave screen, we have to provide following feature:
    The employee has to provide the scanned copy of doctor's certificate while applying for sick leave. For this, the leave entry screen should have a browse button. When the employee will click on browse screen one window should pop-up. Here the employee has to browse and attach the scanned doctor's certificate. The certificate will be attached to the leave application.
    Later on when the Manager will login he should see the leave request along with doctor's certificate attached by employee.
    How we can achieve this?
    Regards,
    Gary

    Hi Gary,
    Did u have a discussion with ur work flow and Netweaver Consultant? We had developed the same by writing some BSP's . Pl check with work flow and EP consultants.
    Laxmi.

  • Sharepoint 2013 custom search results grouping display template

    Hi,
    I am trying to implement custom grouping for search result items. I would like to group them by a managed property, but without using result blocks (query rules). The idea is to sort the results by the property and then compare the current item (ctx.CurrentItem)
    with the previous item using ctx.CurrentItem.ParentTableReference. If a new property value is detected we insert a new 'group header' (just some simple html). The problem is the ParentTableReference is undefined. Shouldn't there be such a property in current
    item object?
    I'm implementing this in a custom search result item display template...
    Thanks in advance.

    Hi,
    According to your post, my understanding is that you want to customize search result items display template.
    I suggest you get enumerate all properties of JavaScript context object and debug you code to watch the
    ctx.CurrentItem object.
    The following articles for your reference:
    Debugging Display Templates in SharePoint 2013 Search
    http://powersearching.wordpress.com/2013/01/25/debugging-display-temlates-in-sharepoint-2013-search/
    Enumerate all properties of JavaScript context object in display templates in SharePoint 2013
    http://sadomovalex.blogspot.co.uk/2013/06/enumerate-all-properties-of-javascript.html
    How to Define a Custom Group Display Template (GroupTemplateId) for the Search Results WebPart via JavaScript
    http://www.eliostruyf.com/how-to-define-a-custom-group-display-template-for-the-search-results-webpart-via-javascript/
    Creating customized search results in SharePoint 2013
    http://www.abelsolutions.com/totm/creating-customized-search-results-in-sharepoint-2013/
    Best Regards
    Dennis Guo
    TechNet Community Support

Maybe you are looking for

  • Manual Depreciatioin by depreciation area

    Hi Experts In our company code, we have multiple depreciation areas. say atleast 6 depreciation areas.  of which, we use deprciation area 15 for manual depreciation (ABMA) every year.  Due to some reasons,  we need to post manual depreciation at othe

  • External Data in Customs Declarations

    Hello - What BAdIs can be used to default external data from the Feeder System (but not from a PO, Inbound Delivery, or Goods Receipt document) into a GTS Customs Declaration?

  • How do I download and start using Premiere?

    How do I downlod and start using Premiere?

  • Challenge with FaceBook game App myvegas

    Just purchase newer iPad.  Using FaceBook app myvegas and am told Flash Player needs to update.  Go to update and am told iPad doesn't support.  Anyone else have this problem and if so were you able to resolve?

  • Settings for BI Statics

    Hi  Experts, When we go to tcode: RSA1we havean option in menu bar: tools>Settings fot BI Statics. Can you tell me what the option is for? It contains query ,infoproviders,web templates ,work books,  with Statics ON/OFF, OLAP flags. What does these f