How can we create a Collective search help  plz tell me with steps

How can we create a Collective search help  plz tell me with steps
thanks,
basu

Hi
1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
3)An elementary search help defines the standard flow of an input help.
4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
CREATION:
Go to SE11  Tcode
select search help
give the 'z' search help name and create
select the selection method ur table name eg : 'mara'
dialog module 'display value immediately'.
add the field whatever u want and lpos = 1 and spos = 1 and check import and export parameter.
where left position when displaying and spos = search position
and then save and activate ..
See the links:
http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee45446011d189700000e8322d00/content.htm
pls go through this for search help creation
http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm
Search Help Exits:
Re: dynamic values for search help
Re: Dynamic search  help
Reward points for useful Answers
Regards
Anji

Similar Messages

  • How can we create a Collective search help

    Hi all sap experts,
    How can we create a Collective search help on field “OBJECT” which allows to search tables
    o   ARCH_OBJ
    o   TOJTB (Search help: H_TOJTB)
    on 2 tabs.
    Thanks,
    Basu

    Hi
    1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    3)An elementary search help defines the standard flow of an input help.
    4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
    5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
    6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
    CREATION:
    Go to SE11  Tcode
    select search help
    give the 'z' search help name and create
    select the selection method ur table name eg : 'mara'
    dialog module 'display value immediately'.
    add the field whatever u want and lpos = 1 and spos = 1 and check import and export parameter.
    where left position when displaying and spos = search position
    and then save and activate ..
    See the links:
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee45446011d189700000e8322d00/content.htm
    pls go through this for search help creation
    http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm
    Search Help Exits:
    Re: dynamic values for search help
    Re: Dynamic search  help
    Reward points for useful Answers
    Regards
    Anji

  • Can't find the Collective Search help for Customer in VD02/VD03

    Hi
    I ave (I hope ) an easy question for you  - 
    I need to extent the Collective search help for Customer in VD02/VD03 with an additional elementary search help, but I can't find the name of the Collective Search Help (F1 -> Technical Information only gives Search help '=')
    So, where do I find it ?
    Regards
    Morten Nielsen

    OK I Found it  -  Called DEBI
    Regards
    Morten Nielsen

  • How can I call a specific search help from and still get all the tabs

    hello
    I use F4IF_FIELD_VALUE_REQUEST to display a specific search help from my program. This search help is included in a collective search help, but only the one specified search help is displayed.
    Is it possible to call the collective search help and display one specific search help ?
    Example: in CRM i have a collective search help BUPA. When F4 is issued from a customer field the search help "Search customer" should be displayed, and not the last search help which was activated - i.e.. "Search employee".
    best regards
    Peter Christiansen

    Hi,
    you can try some thing like this..
          CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
            EXPORTING
              TABNAME           = 'KNA1'
              FIELDNAME         = 'KUNNR'
              SEARCHHELP        = 'DEBI'
            TABLES
              RETURN_TAB        = LT_RETURN
            EXCEPTIONS
              FIELD_NOT_FOUND   = 1
              NO_HELP_FOR_FIELD = 2
              INCONSISTENT_HELP = 3
              NO_VALUES_FOUND   = 4
              OTHERS            = 5.
          IF SY-SUBRC <> 0.
            MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    Regards
    vijay

  • How can i create my own search form/A user defined search form

    Hello All,
    I have a simple table name employee with two fields, they are Emp_id and Name having 10 recrods.
    I have a form with a text box and a button labled Search.
    I want to search the employee in my employee table. I write the Emp_id in the text box field if the entry (Emp_id) does not exist in the employee table having 10 records then i want a message appear "There is no such employee Code "0001" try again.
    On the other hand if i found some employee in my employee table then it will open the employee form and go to the specified record and show me that record.
    How can i accomplish this task in Oracle Form 6i?
    If anybody help me in this regard i am thankfull to you..
    Please write all necessary code as well.
    Thanks in advance.

    try this one here is :vemp is textitem ,i hope you know how to create button and buttonn's trigger to embed this code
    DECLARE
      cnt           NUMBER := 0;
      RECORD_NUMBER NUMBER;
      VCNT          VARCHAR2(20);
    BEGIN
    GO_ITEM('EMP.empno');
    FIRST_RECORD;
              BEGIN
                   RECORD_NUMBER:=:SYSTEM.CURSOR_RECORD;
                   LOOP
                     IF :EMP.empno = :vemp THEN
                       cnt := cnt + 1;
                       RECORD_NUMBER:=:SYSTEM.CURSOR_RECORD;
                     END IF;
                     EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE' OR cnt > 0;
                     NEXT_RECORD;
                   END LOOP INNER;
                   IF cnt=0 THEN
                           message('No record found..');
                   END IF; 
                   GO_RECORD(RECORD_NUMBER);
              END;
    NEXT_ITEM;
    END;Khurram

  • How can I replace a standard search help in SRM 7.0 as enhancement?

    Hi experts.
    In SRM 7.0, Shopping Cart, Account tab - when using search help for the Cost Center field, a search help 'KOST' is called in the backend system.
    I need to replace this functionality with a call to a local search help.
    Being newbie in WebDynpro, I expected to be able to make this change in the Context field, search help attribute as an enhancement, but that was not possible.
    Thanks in advance!
    Per

    Hi again.
    I tried the proposed solution with no luck.
    The problem is, that the standard program is dynamically accessing the attributes of the field I deleted and then I got a short-dump
    The solution was however quite simple, when I first had the idea.
    If SAP can access a screen field dynamically adding a search help, then I probably could do the same.
    So I created a enhancement post exit in view method "WDDOMODIFYVIEW" with this code:
    DATA lo_nd_account_detail TYPE REF TO if_wd_context_node.
    * navigate from <CONTEXT> to <ACCOUNT_DETAIL> via lead selection
      lo_nd_account_detail = wd_context->path_get_node( path = `COMP_CONTEXT.ACCOUNT_DETAIL` ).
      DATA lr_node_info TYPE REF TO if_wd_context_node_info.
      lr_node_info = lo_nd_account_detail->get_node_info( ).
      CALL METHOD lr_node_info->set_attribute_value_help
        EXPORTING
          name            = `COST_CTR`
          value_help_mode = lr_node_info->C_VALUE_HELP_MODE-DDIC
          value_help      = 'BBP_COSTCENT_VALUE'
      CALL METHOD lr_node_info->set_attribute_value_help
        EXPORTING
          name            = `G_L_ACCT`
          value_help_mode = lr_node_info->C_VALUE_HELP_MODE-DDIC
          value_help      = 'Z_GL_ACCOUNT'
    The above code sets the search help for two fields in the Context.
    Hope this helps someone out there!
    Best regards
    Per

  • How can I create MWV file from iMovie that is compatible with Windows

    Hi Folks:
    I have have an iMovie project that I need to share as a WMV file that I can upload to a website that is then able to be opened in a Windows browser.
    I've already created a QuickTime version that seems to work in Mac and Windows browsers. Just need a way to create a WMV file that works.
    I have purchased software (Flip4Mac WMV) that lets me make a WMV file but the files that I make with that software open up in Mac browsers (Firefox and Safari) but will not open in either Firefox or IE for Windows. The windows browsers both report that the page is not available. One of the options is to refresh the page. I do this on Win 2K IE6 and the movie is played in Media Player in a pane at the left side of the browser. On Windows XP IE 7 the page just does not produce anything that is useful.
    Anyone able to tell me what I should do to make the WMV files OK for Windows or some software that actually creates WMV files that work on Windows? Or is this a Web Page Formatting problem?
    Is it something I am doing on the site? I am using the "embedding" technique recommended by Apple to use a JS function to embed the file in a web page as shown below: (slightly modified)
    function InsertMovie(movie)
    document.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
    document.write('<param name="src" value="movies/' + movie +'" />\n');
    document.write('<param name="controller" value="true" />\n');
    document.write('<param name="autoplay" value="false" />\n');
    document.write('<embed src="movies/'+movie +'" width="320" height="256" autoplay="false" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>\n');
    document.write('</object>\n');
    This works in that the movie is presented to the Windows browsers are presented with the movie but they don't want to display it. I have two versions of the Movie and the one that's an H264 encoded QT movie loads fine in both IE and Firefox on Windows with QT installed. It is the WMV file that is not being handled as I would like.
    Any help would be appreciated a great deal. In fact, I will give a registration code for RollingCredits to anyone able to solve this problem for me.
    I know, resorting to bribery could be considered bad form but I am in need of a solution. And I know there are a lot of smart people out there.
    Cheers
    David

    Are you saying that my problem is that I am not using
    the correct software to create the WMV file or that
    VisualHub is a less expensive alternative.
    My problem seems to be that the file that I create is
    not being recognized by the browser -- not that it is
    not a WMV file.
    As I'm sure you know, WMV, like QuickTime mov files, come in many flavors. VisualHub may give a slightly different 'flavor'.
    After I made my original post, it occurred to me that Flash video is probably a more universal solution to your problem. Had you considered Flash video?
    But your suggestion(s) to try VisualHub have not gone unheeded.
    It's the least expensive way I've found so far to create Flash video files.
    F Shippey

  • How can I create a new catalog of all my photos with no develop adjustments?

    I use Lightroom 4.3.  I tried this by deleting the old catalog, and creating a new one, thinking that the develop adjustments would no longer exist after first deleting the old catalog.  The develop adjustments were still there.  (I deleted the catalog out of the lightroom sub-folder of My Pictures.) 
    The reason that I want to do this is that I have one folder (of about 800 important photos) where something went very wrong in Lightroom, and every time I try to pull up one of the photos my whole computer stalls.  Everything works beautifully in my other folders.  I even re-installed Lightroom.  I want to re-add those dng photos without the develop adjustments.  It doesn't bother me if none of my files have develop adjustments.  I save all of my files after they are adjusted.  I save the DNGs also. 
    Thanks,
    Jennifer

    One easy way: reset after importing (which can be done from library module - e.g. main menu, context menu, quick-develop...). If you can't even get that far, consider using exiftool to strip the xmp from DNGs and/or jpegs, or just delete xmp sidecar file in case of proprietary raw.

  • How can I create blurred out sidebars in non-widescreen video with Adobe Premier?

    How, in Adobe Premier, can you make video which is shot in non-widescreen appear as widescreen with the blurred out side bars.
    An example is this video at 0:28 http://www.youtube.com/watch?v=7goDFFN-6J8&feature=player_embedded#at=28

    Duplicate the layer. Scale up the underlying layer and apply a blur effect to it.
    Since you're new to Premiere Pro, I suggest that you start here.

  • Exapmple required on Collective Search Help

    Hi,
    As per my understanding Collective search help is combination of "Elementary Serach Helps".
    I have created two Elementary search helps
    one (Name : ZELE_TEST)is with the following fields
    MKPF-MBLNR
    second(Name : ZELE_TEST1) is with
    LFA1- LIFNR
    LFA1-LAND1
    STEP 1: Afterwards I have try to create COLLECTIVE SEARCH HELP( Name: ZCOLLE_TEST ) using the above two Elementary search helps. While creating the COLLECTIVE SEARCH HELP in Definition tab I took MBLNR, LIFNR, LAND1 fields.
    STEP 2: In Included Search Helps tab I took the above two elementary serach helps ie ZELE_TEST and ZELE_TEST1.
    STEP 3: afterwards I gone through the  "Parm. Assignment" push button. May be I am going wrong in this step or else .....but finally I am unable to execute the collective search help.
    Please correct me where I am doing wrong in the above procedure.
    It would  be greatful if u will provide me example for collective search help using morethan one elementary search help.
    Thanks in Advance.
    - Kumar.

    Hi Kishore,
    Check this thread on Collective Search Help Creation:
    How can we create a Collective search help
    Check these links also
    http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21ee86446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/c9/83eb02be4c11d1950200a0c929b3c3/content.htm
    Regards,
    Chandra Sekhar

  • How to create an elementary and collective search help in webdynpro

    Hi all,
    my requirement is i have to create an collective search help. and that should be same as other tcode search help functionality.
    and now the ztcode is in r3 system and my webynpro development is going on bw system how to copy that tcode from r3 to bw system. and then for my input field is cost center and for this input field i should create the search help functionalty.kindly help me how to achieve this functionality i am new to this webdynpro so kindly send me the detail steps.
    Thanks & Regards,
    Naveen

    Hi Naveen,
    There's no difference to using a collective search help or a regular search help.
    in the attribute of the context that you want the search helps to appear for - specify that the input help is of type dictionary search help, then specify that the input help is your collective search help.
    Search helps in WDA, if search help is available at dictionary level, no need to create any search help, you get automatically.
    If you want to create search help for any input field, another option is using OVS. we have WDR_OVS component for search helps, you need to reuse this component in your custom component, just change some coding according to your requirements you get search help.
    Go through these documentation and helps...
    http://help.sap.com/saphelp_nw73/helpdata/en/cf/21ee45446011d189700000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw73/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/content.htm
    OVS search help..
    http://wiki.sdn.sap.com/wiki/display/Snippets/OVSSearchHelpinWebDynproAbap
    freely programmed inputhelp
    http://wiki.sdn.sap.com/wiki/display/WDABAP/Freelyprogrammedinput+help
    http://wiki.sdn.sap.com/wiki/display/WDABAP/UsingSearchhelpattachmentsforWebDynproABAP
    Thanks,
    Kris.

  • Problem creating a hybrid collective search help for werks,bukrs and ekorg

    Hi All,
    I have to create a collective search help for Org_key field of a custom table.
    This org_key field is a char4 field and can hold the value for plant , bukrs and ekorg.
    I need to create a collective search help which includes
    C_T001                          Collective Search Help for BUKRS (Company Code)
    H_T001W_NEW     Possible Entries for Plants
    H_T024E                         Input Help for Purchasing Organization
    I have added org_key field in the field description , how can i do the parameter assigment ( or declare the field description ) so that if the user press F4 for org_key field ,he is able to see all the search paths corresponding to C_T001,H_T001W_NEW, and H_T024E simultaneously, and corresponding to value chosen ( for plant , werks or ekorg ) the value is passed back to the org_key field.
    Thanks in Advance
    Regards
    Anurag

    Problem resolved. You can hard code values, like the domain name within the search help.
    Although I have found that if you don't use a search help and you have domain values then your drop-down list values will be automatically populated from the domain values for the field. At least in my dynpro it does.
    Jas

  • What is matchcode objects and how can we create tthem

    hai to all.
         what is matchcode objects .
         and how can we create matchcode objects
         and how will it works

    Hi
    In which version of SAP are you working?
    Matchcodes are replaced by SEARCH HELPs in latest versions
    see the doc
    1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    3)An elementary search help defines the standard flow of an input help.
    4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
    5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
    6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
    CREATION:
    Go to SE11 Tcode
    select search help
    give the 'z' search help name and create
    select the selection method ur table name eg : 'mara'
    dialog module 'display value immediately'.
    add the field whatever u want and lpos = 1 and spos = 1 and check import and export parameter.
    where left position when displaying and spos = search position
    and then save and activate ..
    See the links:
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee45446011d189700000e8322d00/content.htm
    https://forums.sdn.sap.com/click.jspa?searchID=3173469&messageID=2176485
    https://forums.sdn.sap.com/click.jspa?searchID=3173469&messageID=3601619
    pls go through this for search help creation
    http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm
    Search Help Exits:
    Re: dynamic values for search help
    Re: Dynamic search  help
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee52446011d189700000e8322d00/content.htm
    http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_exit.htm
    https://forums.sdn.sap.com/click.jspa?searchID=4390517&messageID=1712818
    Collective search help Combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    A Collective search help provides alternative search
    Paths by combining elementary search helps.
    Only one search help can be attached to a field, table or data element. Several search paths are therefore attached with a collective search help.
    A collective search help also has interface parameters like
    an elementary search help.
    Like an elementary search help, a collective search help has an interface of IMPORT and EXPORT parameters with which the search help exchanges data. Using this interface, the collective search help can be attached to fields, tables and data elements exactly like an elementary search help.
    Parameter assignment needs to be done for each of the
    Included search helps.
    When you define a collective search help, there are no components for describing the dialog behavior and data selection; instead the included search helps are listed here. You must assign the parameters of the collective search help to the interface parameters of the included search help for each inclusion.
    User may choose the tab and thus the elementary
    search maethod.
    When we execute the search help SCUSTOM, we are confronted with a dialog which gives us an option of either restricting
    By 1)Search for customer according to booking
    2)Search for customer according to name.
    These are effectively the elementary search helps (SCUSTOM_BOOK and SCUSTOM_NAME) which have been included in the collective search help SCUSTOM.
    HOT KEY
    The hot key is used to select the elementary search help from the collective search help and to enter the restrictions in the dialog box for restricting values directly from the entry field. If the user often searches for values using the same search help, this procedure can save time.
    Steps to create a Collective Search Help
    1)Enter the search help name and click on create.
    2)Choose Collective search help radio button option as the search help type.
    3)Enter the search help parameters.
    4)Instead of the selection method, we enter the included
    search helps for the collective search help.
    5)We need to assign parameters for each of the included
    search helps.
    6)Complete the parameter assignment by clicking on the push button
    7)Collective search help offers the user to obtain F4 help
    using any of the included search helps.

  • Add documentation to (collective) search help

    If i create a collective search help via se11 and execute it, the blue 'I'-button (information) appears.  When I press it, nothing happens.
    (the same thing occurs with the sflight searchhelp)
    I would like to add a documentation to a collective search help that would appear when this button is pressed.  is this possible and how should I do it?

    Hi Dries,
    Go through this info.
    Creating Collective Search Helps
    Procedure
    In the initial screen of the ABAP Dictionary, select object class Search help, enter the name of the search help and choose Create.
    A dialog box appears in which you must select the type of search help.
    Select Collective search help and choose .
    The maintenance screen for collective search helps is displayed.
    Enter an explanatory text in the field Short text.
    You can for example find the search help at a later time using this short text.
    In the Definition tab page enter the parameters of the collective search help.
    Select the Imp flag if it is an import parameter. Select the Exp flag if it is an export parameter.
    Define the types for the parameters of a collective search help by assigning a data element. Enter the name of the data element that describes the contents of the search help parameter in the Data element field.
    You can assign the parameter a default value in the Default value field.
    In exceptions it could be necessary to change the standard process defined by the search help. You can implement the deviation from the standard using a search help exit.
    In this case enter the name of the search help exit in the corresponding field.
    On the Included search helps tab page, define the search helps that you want to include in the collective search help.
    You can include elementary search helps and collective search helps.
    Use the Hide flag to control whether an included search help should appear in the dialog box for selecting the elementary search help. If the flag is set, the search help is not offered.
    It makes sense to hide search help inclusions if one or more search paths in the standard system should not be used in a concrete R/3 System. Similarly, search help inclusions can also be already hidden in the standard system because they only can be used meaningfully in a few R/3 Systems. You have to cancel the flag in this case.
    Position the cursor one after the other on each allocated search help and choose Parameter assignment.
    In the next screen, enter the parameter names of the elementary search helps to which the corresponding parameters of the collective search help should be assigned in the field Reference parameter.
    You can select the parameters contained in the included search help using the input help. Create a proposal for the assignment with Proposal.
    Save your entries.
    A dialog box appears in which you have to assign a development class to the search help.
    Choose .
    Result
    The collective search help is activated. You can find information about the activation flow in the activation log, which you can display with Utilities ® Activation log. If errors occurred when the collective search help was activated, the activation log is automatically displayed.
    Do not forget to link the search help to a screen field. The search help attachment is not part of the search help definition; it is part of the object definition to which the search help is attached.
    Other Options
    You can test the flow of an input help defined by the collective search help with . A dialog box appears in which you can simulate the behavior of the search help under different conditions. You can obtain information about the options provided in this window with .
    Rewards some points .
    Rgds,
    P.Naganjana Reddy

  • Collective search helps

    how to create collective search helps.plz.

    1.      In the initial screen of the ABAP Dictionary, select object class Search help, enter the name of the search help and choose Create.
    A dialog box appears in which you must select the type of search help.
           2.      Select Collective search help and choose .
    The maintenance screen for collective search helps is displayed.
           3.      Enter an explanatory text in the field Short Text.
    You can for example find the search help at a later time using this short text.
           4.      In the Definition tab page enter the parameters of the collective search help.
    Select the Imp flag if it is an import parameter. Select the Exp flag if it is an export parameter.
    Define the types for the parameters of a collective search help by assigning a data element. Enter the name of the data element that describes the contents of the search help parameter in the Data element field.
    You can assign the parameter a default value in the Default value field.
           5.      In exceptions it could be necessary to change the standard process defined by the search help. You can implement the deviation from the standard using a search help exit.
    In this case enter the name of the search help exit in the corresponding field.
           6.      On the Included search helps tab page, define the search helps that you want to include in the collective search help.
    You can include elementary search helps and collective search helps.
    Use the Hide flag to control whether an included search help should appear in the dialog box for selecting the elementary search help. If the flag is set, the search help is not offered.
    It makes sense to hide search help inclusions if one or more search paths in the standard system should not be used in a specific SAP System. Similarly, search help inclusions can also be already hidden in the standard system because they only can be used meaningfully in a few cases. You have to cancel the flag in this case.
           7.      Position the cursor one after the other on each allocated search help and choose Parameter assignment.
    In the next screen, enter the parameter names of the elementary search helps to which the corresponding parameters of the collective search help should be assigned in the field Reference parameter.
    You can select the parameters contained in the included search help using the input help. Create a proposal for the assignment with Proposal.
           8.      Save your entries.
    A dialog box appears in which you have to assign the search help a development class.
           9.      Choose activate
    Search Helps:
    These are two types.
    Elementary n Collective.
    1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    3)An elementary search help defines the standard flow of an input help.
    4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
    5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
    6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
    pls reward points if helpful,
    shylaja

Maybe you are looking for

  • How can I get my music from my nano 5th gen. back onto my computer?

    My old comp. got rained on so I had to get a new one. How can I transfer the music? I have a Windows 7 OS.

  • Jdic browser help

    Hello, I used jdic to embed internet explorer in a java application. I have a textfield and when the user inputs the website he wishes to visit, the jdic does the work and displays the site. My problem is that I dont know how to update the textfield

  • What the **** is going on with that export ?!

    Hi everybody. it's my first post, i don't know where to start, i'll try to make it short and precise. (and sorry for my bad english) I'm editing uncompressed SD 10bits captured with an AJA LHe. I used to be able to print it to tape (to a DVW A500P) a

  • MS Explorer on Macs

    Ok, so I never knew how poorly coded WIn machines were until I got a Mac. But its not only that just look at one of their main sites: http://www.msnbc.msn.com/ Viewed on any PC or any Mac running other than Explorer will yield a "normal" result. But

  • Noip dynamic update client

    Installed noip dynamic update client from community repo for ssh access if my ip changes while at work. No info in wiki or man pages.  Resorted to "noip2 help" no-ip.com support pages and Google for config info. Have noip installed and working, altho