How to find the search help for the parameters stmt in a report

hi
how to find the search help for the parameters stmt in a report , that is using which addition to the parameters statement

I am not sure if I understood the question,but if you meant how to attach a search help to parameter for which a default search help is not available,you can do that by using addition  "Matchcode Object"
Parameter: a type i matchcode object 'Search Help Name'
Search Help name should be in single quotes.
Regards,
Anubhav.
P.S: Award Points if useful.

Similar Messages

  • Search help for the CJ20N trn

    Hi,
        I want to populate the search help for the CJ20N Transaction for the fields in the user fields tab. Can you pl tell the suitable user exit for this.
    Thanks,
    Joe

    Hi,
    I hope the below BADI must help for your requirement.
    Definition Name - WBS_USER_FIELDS_F4
    Interface Name - IF_EX_WBS_USER_FIELDS_F4
    Method - AT_F4
    Hope it helps.
    Reward if it is useful.
    Thanks,
    Srinivas

  • How to create Search help for the field /SAPSLL/PRGEN-ATTR20V

    Hi ,
    I need to add a search help for the field /SAPSLL/PRGEN-ATTR20V and their is a chk table used for this field is /SAPSLL/TCOATV20.
    In this table /SAPSLL/TCOATV20-ATTRV20V is a Primary key field.
    How can I add search help for this field?
    Any suggestions will be appreciated!
    Regards,
    Kittu

    HI,
    Fixed on my own..
    I am closing this thread!
    Thank you!
    Kittu

  • Changing the search help  for vbap-aufnr in va01

    Hi Folks,
    Can we change the search help provided for the field Order(vbap-aufnr) in the table Control ALL ITEMS in VA01.
    1.go to va01.
    2.give the order type.
    3.press enter.
    4.it will take us to the overview screen.
    5.there we will find a table control named ALL ITEMS.
    6.in that we can find a field called ORDER(vbap-aufnr) with a Search Help provided.
    7.I want to change this search help to the search help provided for the same field  in other screen.
    (the same field is in some other screen which is having a different kind of search help,I want to provide that search help for the above said screen too)
    Let me know how to go with this in detail.
    Thanks,
    K.Kiran.

    Hi Folks,
    The same requirement I am trying to explain in a detailed manner.
    1.go to va01.
    2.give the order type.
    3.press enter.
    4.it will take us to the overview screen.
    5.there we will find a table control named ALL ITEMS.
    6.in that we can find a field called ORDER(vbap-aufnr) with a Search Help provided showing only the Orders.
    7.Now double click in the same field which is taking us to Item Data Screen.
    8.here we will  be able to see a few tab strips.
    9.click on the accounts assignment tab.
    10.we will be able to find the filed ORDER having a Search Help.
    Now I want this search help at the screen I had discussed above.At both the areas search help is provided using 'DD_SHLP_CALL_FROM_DYNP'.
    How to solve this?
    K.Kiran.

  • Custom Search Help for the field Equipment number

    Hi,
    I have enchanced sales order transaction and included a field Equipment number(EQUI-EQUNR).
    Here after pressing F4(Search help) standard search help is display.
    I have a requirement wherein, the standard search help should not appear and a customised search where a specific Equipment category type values should appear in the search help.
    Ex. Field equipment  category (EQTYP).EQUNR(Equipment Number).
    Please let me know how to work for the customised search help.

    Hi,
    You need to create a customized search help.
    [Elementary Search Help - Structure|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee38446011d189700000e8322d00/content.htm]
    [Creating Elementary Search Helps|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee5f446011d189700000e8322d00/content.htm]
    Then you need to attach the search help to the screen field..
    [Assigning Search Helps to Screen Fields|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee93446011d189700000e8322d00/content.htm]
    [Hierarchy of Search Help Call|http://help.sap.com/saphelp_nw04/helpdata/EN/0b/32e9b798da11d295b800a0c929b3c3/content.htm]
    regards
    Nitesh

  • Search help for the "Week Select option"

    Hi Experts,
    My selection screen is like this:
    Article:  .............. to ..............
    Week  .............    to ...............
    I am taking article EKPO-MATNR field.and week S012-SPWOC field
    Now there is there search help for the S012-SPWOC field. How can I create the seach help for this fields.
    Regards
    Krishan

    hi,
    try this way.
    tables: ekpo, s012.
    select-options:article for EKPO-MATNR,
                    week for S012-SPWOC.
    Regards,
    Shankar.

  • How to Assign Custom Search Help to the standard tcode ME53N.

    Hi All,
    Can any help me  out.
    I have created a custom Collective Search ZH_T023_MEPO, I want it to be assigned it to the Tcode ME53N. Replacing the standard one H_T023_MEPO. and i also need to restrict it for only one Plant for other Plantu2019s  standard search help H_T023_MEPO should work as usual

    Hello
    The search help in the item overview (of the purchase order) is H_T023_MEPO whereas in the item details section (tabstrip Material Data ) it is H_T023.
    Thus, there would be at least two search helps that you need to change or modify.
    I would suggest a different approach assuming that your requirement is to restrict the search help under certain conditions (e.g. plant). Implement the BAdI ME_PROCESS_PO_CUST and implement two methods:
    PROCESS_ITEM = check material group of item and invalidate if required
    (IF_PURCHASE_ORDER_ITEM_MM~INVALIDATE)
    CHECK = closing check of entire PO (in case of invalid material groups return CH_FAILED = 'X'
    Regards
      Uwe

  • How to add a search help for a field in Screen Personas?

       I just started learning to use a Screen Personas, and I want to know how to add a search help for a field.
       I found a property in the help document named "IsLookupSupported". Is it the key?  But I saw it was gray in the field I created, and its value is "false". I could not change it.

    Hi, Tamas,
    I found the reason. The function Z_WEBRFC_READ_DATA_SH had a string concatenation error.
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    The correct code is like:
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},{"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    Another question is, I can't get any words in Chinese from WebRFC. It returns error when I try it. How can I configure it?
    Xin

  • Find collective Search Help for partner function at runtime

    Hi experts,
    I have a screen very similar to VF05. When I enter the partner function, the corresponding field for the partner function, I want a collective search help to open.
    If I enter the partner function - Employee responsible, then the search help PERM has to be called or for partner function Payer, I want the search help DEBI to be called. Can anyone let me know how can I get the related partner functions, without hardcoding for every partner function. Something similar to the VF05 report.
    Warm Regards,
    Abdullah

    Hi,
    Collective search helps:- Combination of elementary search helps. When we need to fetch data based on multiple selection criteriau2019s. More than one tables are Selection from multiple tables
    Steps for creating 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.
    Note that there is no selection method to be entered for a collective search help.
    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.
    Hope this helps u.
    thanks

  • Matchcode in OO (call the search help when the button is pressed )

    Hi Guys,
    I'm using the class cl_dd_document in order to fill a form that contains a input element (cl_dd_input_element) and a button element (cl_dd_button_element).
    What I need to do now is to simulate (or build) a matchcode for the button.
    For example, the input field is for entering the name of a table, and with the button i want to show all the tables that are elegibles for that field.
    Any suggestion?
    Regards,
    Eric
    Message was edited by:
            Eric Hernandez Pardo

    Hi Uwe,
    What I want to know is how to call the search help when the button is pressed. (Like the one in SE80 Transaction)
    Regards,
    Eric
    Message was edited by:
            Eric Hernandez Pardo

  • 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

  • Can somebody decipher the online help for the one button dialog?

    So I was looking at the online help for the one button dialog and there is an extra paragraph compared to the LabVIEW help.
    Clicking on the link goes to a help specific to the Embedded module for the ARM microcontroller. Does this really have much to do with the one button dialog? Does it belong here?
    Just wondering. I am not familiar with that module....
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    OneButtonDialog.png ‏47 KB

    The same is true of the online help back to LV2009 inclusive, which (I believe) would be the first to contain the linked dialog too.
    CLD

  • How to limit the search help in the selection screen?

    Hi All,
    I got a selection option in a selection screen,
    say SELECT-OPTIONS KSCHL FOR VAKE-KSCHL.
    I want to limit the output list of the search help of this field, e.g. 33 entries for a specific application and usage.
    What should I do ?
    Thz.

    Hi,
    U can check with these two
    <b>... NO-EXTENSION</b>
    Effect
    The user can only make an entry on one line. Calling the additional "Multiple Selection" screen is not supported and no pushbutton for this appears on the selection screen.
    Addition 12
    <b>... NO INTERVALS</b>
    Effect
    The selection option is displayed on the selection screen without a 'to' field. The pushbutton for calling the "Multiple Selection" screen appears immediately after the 'from' field.
    This addition thus allows you to generate a simplified display on the selection screen. This is particularly useful if you are not making any range selections for this selection option.
    Notes
    On the "Multiple Selection" screen, you can also enter ranges for selection options with "NO INTERVALS".
    By combining this addition with "NO-EXTENSION", you can restrict the user to entry of a single value for the selection option, but with the possibility of also choosing single value options like 'Greater than' or 'Less than or equal'.
    By using the addition " NO INTERVALS" with SELECTION-SCREEN BEGIN OF BLOCK, you can activate the simplified display for all selection options in a block.
    The function module SELECT_OPTIONS_RESTRICT allows you to restrict the set of selection options available for a SELECT-OPTION (for example, only single values and patterns, i.e. 'EQ' and 'CP' are allowed). You can also forbid the leading sign 'E' (= 'Exclude from selection'). This means that you can considerably restrict the selections which can be entered on the selection screen.
    Just now tried it out to limit the search help u have to use NO-EXTENSION.
    <b>Try this simple code.
    Tables: mara.
    SELECT-OPTIONS: s_matnr FOR MARA-matnr NO-EXTENSION.</b>
    Hope this helps.
    Kindly reward points and close the thraed if ur problem got solved.
    U havent rewarded any points?
    Message was edited by: Judith Jessie Selvi

  • How to find conversion exit MATN1 for the field MATNR

    Hi Friends !
    I want to run the infopackage with selection on material. But when put some value in the infopackage selection screen, it says "cannot find conversion exit MATN1 for the field MATNR".
    Ques is how to find where this conversion exit is written? Will it be written in ECC side or BI side?
    Source System Datasource : 0MAT_SALES_ATTR
    InfoObject in BI : 0MAT_SALES
    With Regards
    Rekha

    HI ,
    It will be available in the BI system itself as FM , you can find them in TCODE : SE37 --> provide the converstion exit name
    with star on both sides like MATN1 and press F4 key , every convertion exit will have two FM s , one for INPUT and
    one for OUT put , you can try the Test Run ofFM to check how it works
    For MATN1
    CONVERSION_EXIT_MATN1_INPUT
    CONVERSION_EXIT_MATN1_OUTPUT
    Regards,
    Sathya

  • How to change the search help in the standard table?

    Hello Experts,
    Due to service package installation the search help in standard table (VBAP)  field (KDMAT) was changed from Collective search help (VMCV)  to elementary search help (VMCVA).
    Now I need to change the elementary search help to Collective search help, without taking the Access Key.
    Please suggest me the appropriate solution

    hi
    In SE11, go to the change mode of the collective search help and add the elementary search help, in the INCLUDED SEARCH HELPS tab.for including elementary search help, you just have to enter the name of search help along with its parameter in collective search help
    system autimatically takes selection method and dialog from elementary search help
    regards
    Prashant

Maybe you are looking for

  • Windows doesn't like my partition. Can't proceed with install.

    Hi I'm trying to install Windows Vista using boot camp. Using the assistant I've created a Windows partition on my second drive (in bay 2), and then followed the install instructions. After entering the product key and accepting the ToR, I'm then pre

  • HD to dvd?  How do I do it?

    Now I have been reading endlessly. Very confused. I shot a short on the Varicam, 720P. Final edit was 37min. I compressed it and still the only format I have been successful getting it to transfer to is my Ipod. Now I built the DVD in DVDSP. It wont

  • .dlx-files not loading in PPro CS5

    Hi Community, just upgraded from PPro CS4 to CS5 (no Trial). I tried to move the .dlx-videofiles from my Sony DSR-DU1 HDD Drive to PPro CS5 and it says "File Format not supported". The same file on the same machine worked just an hour ago with PPro C

  • New Tab Page is... broken?

    The image previews for my tops sites are.... ugly. And I mean really, really ugly. Terrible. Absolutely disgusting. The resolution is horrendous, it looks like they're pictures taken with a potato. I recently updated to the latest version of Aurora o

  • Cannot understand the problem

    Hi frnds my name is raj , i am very new to OBIEE , i have been pracitcing it on my own and now i had few problems in understanding the errors . I built a physical layer with CHANNELS ,COSTS , COUNTRIES , PRODUCTS , SALES ,TIMES tables and SALES being