Candidate Attachment Search

Hello,
I have upgraded the e-Recruiting system to EHP 4 with SES. When i do a free text search to search for candidates, the system does not display any extracts from the attachments of the candidates, although there are candidates whose attachments contain the search term.
I have checked with Note 1364736 - Snippets and "Count only" and everything is ok. I am not sure what else I can check to make sure the excerpts appear in the candidate search. If anyone has encountered this error before or you have an idea of the problem please help me.
Regards,

Hi,
well from which version did you upgrade your system?
Which TREX-Version do you have?
And which SPS for E-Rec EhP4 do you have?
I am asking, because the indexing mechanism has changed with EhP4 SP4 and TREX 7.10.18.0.
If you have an old index created in an EhP3 System using SES and you still use the old ones after upgrading, you should try to reindex.
With SP4 and the new TREX you do not need a KPRO index anymore. And I bet that the new indexing mechanism uses different attributes than before. So you should consider checking that and maybe reindex.
Regards
Sebastian Menger

Similar Messages

  • Attaching search help to a field in table control

    Hi,
    Please suggest a way to attach search help functionality to a field in table control.
    My requirement os based on matnr the f4 help for the next field shud come.
    I gave the func mod dunp_values_read, but the internal table i pass does not return with the fieldvalue of matnr field.
    is there any func mod to read values of screen fields in table control so that based on that I can go to func mod f4_init_....
    Will be rewarded.

    Check the FM: HELP_VALUES_GET_WITH_TABLE_EXT
    Check the documentation for example code.
    regards,
    Ravi

  • Attaching Search helps dynamically to an attribute

    Hi ,
    I have a requirement where I would like to attach search help to an attribute dynamically in WD ABAP .
    Is it possible to attach a search help with respect to some condition dynamically at runtime .
    Best Regards
    Sid

    Hi Thomas,
    My scenario is as follows:
    I have a table control with around 5 columns. The first column has a F4, based on the value selected there the F4 attached to the second column needs to change dynamically. Eg: Initially the F4 attached initially is /kyk/h_ctr and then it should get changed to /kyk/h_order.
    These columns are mapped to Component Controller attributes.
    Based on your reply yesterday I implemented the same in one of my view methods. The value does get changed but it doesn't reflect in the front-end, it still shows the initially attached F4 instead of the new one. What else do I need to do?

  • How to attach search help to a particular feild in the selection screen..

    Hi all,
    how can we put a search help for a field in the selection screen.
    i have to attach search help for this.
    SELECT-OPTIONS: s_xabln  FOR  qals-mblnr.             "GRS No

    Find out the respective search help and use like this...
    Parameters : p_pernr type pa0001-pernr MATCHCODE OBJECT prem .
    Here PREM is the search help for PERNR

  • Attaching search help to table control

    i want to attach search help to a field in table control. and based on that entry i want to fill the corresponding columns of that row

    HI Sarath,
    Welcome to SDN..
    Check out this thread ..
    How to create Search Help for a field in Table control !!
    Regards,
    Santosh

  • Hi how to attach search help to a field

    hi all,
    how to attach search help to a field.

    hi
    <b>Attaching a search help to a field</b>
    A search help can influence the behavior of a field when the input help is called. The search help must be assigned to the field in order to do this. You have the following options for this assignment:
    Attach search help to a data element / table or structure field / screen field / check table.
    Conventionally search helps are attached to table fields or data elements. We shall see the same.
    <b>Attaching a search help to a table field</b>
    Choose the field name, click on search help tab and
    provide the name of the search help.
    A search help is attached to a field of a table or structure in the maintenance transaction for this table/structure, analogously to attaching to a table. You must assign the interface parameters of the search help to any fields of the table/structure. The search field must be assigned to an EXPORT parameter of the search help at this time.
    Attach the search help to the table field
    The search help ZSTRAVELAG_NAME is therefore directly attached to the field AGENCYNUM of table ZSTRAVELAG.
    <b>Attaching a search help to a data element</b>
    Provide the search help name and the parameter name
    under the further characteristics tab of the data element.
    If the input help of a field is defined by its data element, no further screen fields can be used in the input help.
    Also note that the input F4 help would be available wherever the data element is used.
    <b>Attaching a search help to a screen element</b>
    A search help can be directly assigned to a screen field in two ways.
    The name of the search help must be entered in the Screen Painter in the Attributes for the field in the field Search help.
    The name of the search help can be defined for selection screens in ABAP reports in the PARAMETERS or SELECT-OPTIONS statement directly following the supplement MATCHCODE OBJECT.
    However, input help is only available for this particular screen.
    In this case, the search help is only available for this screen.
    <b>IF YOU WANT TO ATTCH A SERACH HELP TO THE SCREEN FILED THIS IS THE CODE</b>
    TYPES : BEGIN OF ST_OBJID_SH,
    OTYPE TYPE HRP1000-OTYPE,
    OBJID TYPE HRP1000-OBJID,
    END OF ST_OBJID_SH.
    DATA : IT_OBJID_SH TYPE STANDARD TABLE OF ST_OBJID_SH.
    DATA : WA_OBJID_SH TYPE ST_OBJID_SH.
    ************SELECTION SCREEN DESIGN************************
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    *SELECT-OPTIONS : S_OTYPE FOR HRP1001-OTYPE NO INTERVALS .
    SELECT-OPTIONS : S_OBJID FOR HRP1001-OBJID NO INTERVALS .
    SELECT-OPTIONS : DATE FOR SY-DATUM NO-EXTENSION OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    ***********END OF SELECTION SCREEN DESIGN******************
    **********VALIDATION FOR SCREEN FIELDS*********************
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_OBJID-LOW.
    * IF S_OBJID IS NOT INITIAL.
    SELECT OTYPE OBJID FROM HRP1000
    INTO TABLE IT_OBJID_SH
    WHERE OTYPE = 'D'.
    IF SY-SUBRC EQ 0.
    * SEARCH HELP FOR QUALIFICATION.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    * DDIC_STRUCTURE = ' '
    RETFIELD = 'OBJID'
    * PVALKEY = ' '
    DYNPPROG = SY-REPID
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'S_OBJID'
    * STEPL = 0
    * WINDOW_TITLE =
    * VALUE = ' '
    VALUE_ORG = 'S'
    * MULTIPLE_CHOICE = ' '
    * DISPLAY = ' '
    * CALLBACK_PROGRAM = ' '
    * CALLBACK_FORM = ' '
    * MARK_TAB =
    * IMPORTING
    * USER_RESET =
    TABLES
    VALUE_TAB = IT_OBJID_SH
    * FIELD_TAB =
    * RETURN_TAB = RETURN_TAB
    * DYNPFLD_MAPPING =
    * EXCEPTIONS
    * PARAMETER_ERROR = 1
    * NO_VALUES_FOUND = 2
    * OTHERS = 3
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF.
    <b>REWARD IF USEFULL</b>

  • Attaching Search Help to Standard Field

    Hi,
       In QAPP table, i want to attach customized Search Help to USERN2 field. So i take access key for that data element but still it's not modifiable mode.
      so can you please tell me how to attach search help to that field.
    Regards,
    Pushkar.

    Hi,
    Goto to the table QAPP, goto the entry help/check tab and in that keep the cursor on the field USERN2 and press the search help button below the tab and you can insert the search help only if you have the access key to changes.
    Reward if useful.
    Thanks,
    Muthu.

  • Attaching Search Help to a field

    HI All,
    Can anybody please tell me how to attach search help to a particular field??
    Thanks.

    hi
    good
    Attaching to a Table Field or Structure Field
    The search help can be used by all screen fields that refer to the table field or structure field. The search help parameters and the fields of the table or structure must be assigned to one other in this type of attachment.
    If an export parameter of the search help is assigned to a table field, the contents of this parameter are returned to the corresponding screen field as soon as the user has selected a line of the hit list in the input help. If an import parameter of the search help is assigned to a table field, the field contents are used for the value selection (see Value Transport for the Input Help).
    Normally some parameters of the search help cannot be assigned to a table field. The assignment is thus left open for some search help parameters. A constant or any other field that is searched for in the module pool when the input help is called can also be assigned to a search help parameter.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/63/1b70bfc32111d1950600a0c929b3c3/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/63/1b70c2c32111d1950600a0c929b3c3/content.htm
    thanks
    mrutyun^

  • How to attach search help in field BEDNR in table EKPO

    Hello, Experts!!!
    I have a problem in attaching Search Help in field BEDNR in table EKPO.
    Can anyone share something about this.. I've been dwelling on this for some time now,
    but still wasn't able to find a solution.
    Any thoughts would be highly appreciated.
    Thank you!!!
    Ellainne22

    Hi,
    I don't think you can directly link any search help with BEDNR without modification. If a search help was already linked, we could have gone for append search help. But in this case, nothing is there. So the options would be,
    see whether you can insert any search help through enhancements in the screens..You have to do it in every screen then.
    Other option is create a database view, & replace the dataelement with your own with a search help. You can refer this view after that.
    or go for modification & change the dataelement.
    Regards,
    Gokul

  • Attachment search in CRM_BUS2000223

    Hello,
    SAP Note 1949699 lists a series of objects that can be configured to allow attachment search. 
    SAP Note 1950354 describes the configurations to be done in order to allow the search using BTDOCSET node.
    However, these notes do not seem to allow attachment search in service requests CRM_BUS2000223.
    In the ESH_MODELER, while enhancing search objects I found the button “Enable GOS attachments”. Does anyone know the purpose of this button? 
    I tried entering the values CRM_GUID and BO, but I’m getting the following error:
    Has anyone used the “Enable GOS attachments” to perform attachment search on the CRM_BUS2000223 object?

    Hi Kristoffer,
    I am kind of stuck with the config steps in the attachment search option.Let me tell you what i did.
    a)In SICF transaction i did activate the crm_prt_km_dav service. But when i test this service it comes up with a blank web-page. If i am right it should show me the hierarchies(BP and related docs underneath it).
    b)On the Portal side, i configured an HTTP system which is pointing to my CRM system . so under the HTTP system i gave the url as http://<crmserver>:8080/
    c)I created a WebDAV repository manager which has the same system ID as the HTTP system. Also i added the system path as "/callreports". This is the BO path that i have configured in the CRM WebDAV config.
    Now is there any step thats missing out here.. Any clues as to why this com.prt.km.dav service is not showing me the documents.??
    Thanks again for your help
    Regards,
    Anand

  • Attach search help to standard table field

    Hi,
    I need to attach search help to standard table field VBKD-EMPST.
    I have create a z search help and taken acess key from SAP.
    But unable to attach this to standard table field.
    Kindly help.
    Moderator message: duplicate post locked.
    Edited by: Thomas Zloch on Oct 27, 2010 6:11 PM

    Hi,
    just go throw this link
    Re: Attaching Search Help to a field
    I hope this will help u
    Thanks
    Regards
    Akhilesh Singh

  • How we can attach search help directly to the table field / structure field

    Hi All,
       Can you please let me know the step by step procedure of How we can attach search help directly to the table field / structure field.
    Regards,
    jaya

    Hi Jaya,
    1. Create a search help using SE11.
    2. Include this search help in the field of table in SE11. There is a tab in the table defination where you can specify the search help.
    Even you can specify search help at data element level, screen field level.
    Reward points if useul.
    Regards,
    Atish

  • Attaching search criteria to a site

    Hi!
    Is there a way to attach search criteria to a site.
    I mean... when you are constructing a site in dreamweaver, is
    there a way to sort of attach search words to the site.
    So that when people search for those words on google, your
    site comes up.
    For Example, I'm designing a site for a jewellery store in
    sydney . And I would like when people search words like :
    jewellery, or necklace, or wedding sydney etc, that my site comes
    up ..
    Is this at all possible....
    Thanks
    Karen

    > So that when people search for those words on google,
    your site comes up.
    > For Example, I'm designing a site for a jewellery store
    in sydney . And I
    > would like when people search words like : jewellery, or
    necklace, or
    > wedding
    > sydney etc, that my site comes up ..
    > Is this at all possible....
    In theory, it's possible by adding "keywords" to a Meta tag
    in the head of
    each and every page.
    In DW: Insert > HTML > Head Tags > Keywords.
    However, you'll find that these won't weave any magic for
    your ranking on
    the web because
    a) competition for your keywords is fierce,
    b) keywords have been around for a long time so there will be
    many sites
    ahead of you in the queue
    c) spammers have rendered Keywords almost useless
    Don't expect to reach no.1 or even the top 10 any time soon
    unless there's
    something unique about your site.
    I entered "jewellery wedding sydney" into Google Australia
    and got 136,000
    results.
    Your best assets are good Titles and Descriptions (Insert
    > HTML > Head Tags
    > Description) for all your pages, relevant text content
    on your site, good
    use of headers (H1, H2 etc) and a good site structure so
    Google can easily
    find what you want it to.
    Regards
    John Waller

  • Attach search help to standard screen

    Hi Gurus,
    I have to populate order quantity KWMENG in screen subscreen 4900 of VA01 ( Create Sales Order) from a ztable based on customer and date.
    I have tried customer-exits ..<b>There exists none</b> satisfying this req. Could anyone pls tell how I can go about this now?
    I believe , one way is to create a search help attaching to the screen-field . Can anyone help what is the process ? Has anyone done this earlier -<b>attaching search help to standard screen</b>
    Rewards for helpful answers are sure!!
    Regards,
    Shweta

    Hi Shweta,
    Check this matter.
    There are 3 ways:
    1)In the PAI of the screen, add a module Process on value request.For example:
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_100.
    PROCESS ON VALUE-REQUEST.
    FIELD field_name MODULE value_request_for_field_name.
    *field_name is the field for which you require search help.
    In the Module value_request_for_field_name call this function 'F4IF_INT_TABLE_VALUE_REQUEST'.
    2)The above procedure can be used if the field you have defined doesnt have an existing search help.If it already has search help and the field in the screen is taken from the dictionary,then in the attributes,u can check from from dictionary under the dictionary tab.
    3)A manual search help can also be created in the se11 transaction by clicking on the search help radio button and giving the table and field name for which search help is required.
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • Increasing the Number of Candidate Job Search Results in E-Recruiting

    Hello,
    Would anyone happen to know where to go to increase the number of candidate candidate job search results in E-Recruiting?  It's default value is set as only allowing 10 jobs per page.  If you want to display more you have to click the down arrow.  How would I allow it to show, say 25, or maybe 50 per page?
    Any help you can provide would be appreciated!
    Thanks Ryan!

    Thank you Sandra for your reply,
    I tried the following combinations in table T77RCF_UI_PARAM
    Name                           Param.type                            Parameters
    hrrcf_unrg_srch             MAX_VISIBLE_ITEMS             25
    hrrcf_unrg_srch             VISIBLE_ROWS                     25
    hrrcf_unrg_srch             SEARCH_POSTINGS             25
    None of which increased the number of hits that appeared on the page.  The value still remained at 10 per page.
    It would appear that somewhere in the result_list.bsp view for hrrcf_unrg_srch that this is being set.  If I view the methods for class CL_HRRCF_UNRG_SRCH_HL_RESULT_V I find three that would appear to be relivent:  PREPARE_HITLIST, GET_HITS_PER_PAGE and SHOW_HITLIST.  However, I am having trouble tracking down where the default value of 10 hits per page is being set at.
    Regards,
    Ryan

Maybe you are looking for

  • Operating Time Machine over a remote Back to My Mac connection is a challenge -- can I do restores in Terminal?

    When operating Time Machine remotely via Back to My Mac (and by remotely, I mean from Illinois to Ohio ), seeing your remote mouse cursor is largely a no-go, even in Lion. It simply does not get displayed, with very minor, flickering exceptions.  Cer

  • How to hold the values as  it's not holding the values when it cross 255

    DATA : fval1  TYPE edidd-sdata. DATA : fval2  TYPE edidd-sdata. DATA : fval3 TYPE edidd-sdata. DATA : fval4 TYPE edidd-sdata. DATA : fval5 TYPE edidd-sdata.   DATA : len(3) TYPE n. values1 = wa_final-low.   values2 = wa_final-high.   IF wa_final-high

  • Best Options For Re-Orderable Table

    Hello,I am creating an interface for our HR team to create job postings on our website, and I am running into trouble with one portion of the C#.NET web application.The way this is set up is, we have 6 sections, and they enter bullet points under eac

  • Process J000 died, see its trace file

    os:centos5.4 64 db:oracle 11.2.0.3 alert日志中经常出现以下告警(有时候1分钟报好几次): Process m000 died, see its trace file Process J000 died, see its trace file : kkjcre1p: unable to spawn jobq slave process Errors in file .... SQL> show parameter job NAME TYPE VALUE jo

  • C:\lib not found after run asant

    I found result that was C:\lib not found. After run asant build the exercise date and bookstore, I can see the result C:\lib not found in dos prompt.Why? What lib I need ? It worked for hello1 and hello3.I think I installed the javahome and j2ee home