How to create F4 Help on search term2 in vendor master?

Hi All,
We have a requirement to attach F4 help for field search term2 in vendor master. we have looked for BADI's, user exits to achieve this and couldnt find anything.
Could you please let us know on how to achieve this functionality?
Thanks in advance,
Srilakshmi.

Hi,
I am not a specialist in the Vendor field but I think you could use the Enhancement Framework (if you are running ECC 6.0) to enhance an existing standard search help :
http://wiki.sdn.sap.com/wiki/display/ABAP/SearchHelpAppend
http://help.sap.com/SAPhelp_nw70/helpdata/en/1f/29ef5777df11d2959800a0c929b3c3/frameset.htm
Proposal : SE11 for collective search help KRED_T, Display -->  Goto  --> Append search helps  and create a ZKRED_xx where you will implement the search on TERM2.
Best regards,
Guillaume
Edited by: Guillaume Garcia on Dec 8, 2010 11:53 AM

Similar Messages

  • How to use search term2 in customer master record

    hi
    how to use search term2 in customer master record. can anyone tell me plz
    thanks
    monica

    Hi,
    Search Term 2
    Label used for search helps.
    Only uppercase letters are stored in this field. Your entries are converted automatically to uppercase letters.
    There are two of these fields for search terms. These fields can be used independently of each other.
    Procedure
    You can use your own criteria for entering the search term.
    Example
    You can enter the main part of the name or an organizational ID.
    For example, for the company "Hechinger & Sons", you could enter "Hechinger" as the first search term.
    The second search term could then be the name ID you use within your company, to help you identify your data later.
    Please check out the following link:
    http://help.sap.com/saphelp_47x200/helpdata/EN/01/a9b331455711d182b40000e829fbfe/frameset.htm
    Hope this helps.
    Please assign points as a way to say thanks.
    Regards,

  • How to create a help view for a customized error message

    Hi all,
    Can you guide me how to create a help view for a customized error message, we need to put some suggestions in it so that user can can resolve this issue with this guide. ( the short text is too short to describe all situations via TC:SE91)
    Thanks very much!
    Bruce, Wen

    Hi Bruce,
    Could you brief your concerns again.
    Why don't you maintain long text in message class for long description.
    Regards,
    Ranjith N

  • How to create POV help

    Hi all,
    Please tell me how to create POV help for module pool.
    Regards,

    hi,
    Try this
    PROCESS ON VALUE-REQUEST.
    * Module to fetch the branch value
    * from the screen
      FIELD zval_discount-zbranch
      MODULE value_branch.
    * field Discount type WRT Branch
      FIELD zval_discount-zdisctyp
      MODULE f4_help_discount_type .
    MODULE value_branch INPUT.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
        EXPORTING
          tabname           = 'ZVAL_DISCOUNT'
          fieldname         = 'ZBRANCH'
          dynpprog          = sy-repid
          dynpnr            = sy-dynnr
          dynprofield       = 'ZBRANCH'
        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.
    ENDMODULE.                 " value_branch  INPUT
    MODULE f4_help_discount_type INPUT.
      REFRESH :
        i_dynpread,
        r_branch,
        i_disctyp.
      CLEAR   wa_dynpread.
      IF sy-dynnr = '0120'.
        wa_dynpread-fieldname = 'ZVAL_DISCOUNT-ZBRANCH'.
        APPEND wa_dynpread TO i_dynpread .
    * Function module to read the value of ZBRANCH on the screen 120.
        CALL FUNCTION 'DYNP_VALUES_READ'
          EXPORTING
            dyname               = sy-repid
            dynumb               = sy-dynnr
            translate_to_upper   = 'X'
          TABLES
            dynpfields           = i_dynpread
          EXCEPTIONS
            invalid_abapworkarea = 1
            invalid_dynprofield  = 2
            invalid_dynproname   = 3
            invalid_dynpronummer = 4
            invalid_request      = 5
            no_fielddescription  = 6
            invalid_parameter    = 7
            undefind_error       = 8
            double_conversion    = 9
            stepl_not_found      = 10
            OTHERS               = 11.
        IF sy-subrc EQ 0.
          READ TABLE i_dynpread INDEX 1 INTO wa_dynpread.
          IF sy-subrc EQ 0.
            MOVE wa_dynpread-fieldvalue TO zval_discount-zbranch.
          ENDIF.
        ELSE.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ELSE.
        CLEAR v_stepl.
        CALL FUNCTION 'DYNP_GET_STEPL'
          IMPORTING
            povstepl        = v_stepl
          EXCEPTIONS
            stepl_not_found = 1
            OTHERS          = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        READ TABLE g_val_disc_maint_itab INTO g_val_disc_maint_wa
        INDEX v_stepl.
        IF sy-subrc EQ 0.
          zval_discount-zbranch = g_val_disc_maint_wa-zbranch.
        ENDIF.
      ENDIF.
      IF NOT zval_discount-zbranch IS INITIAL.
        r_branch-sign = 'I'.
        r_branch-option = 'EQ'.
        r_branch-low = zval_discount-zbranch.
        APPEND r_branch.
      ENDIF.
    * Fetch the recods of purchase type for the
    *  branch selected on the screen
      SELECT *
        FROM zval_disctyp
        INTO TABLE i_disctyp
       WHERE zbranch IN r_branch.
    * Function module for F4 help for the field Purchase Type
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          ddic_structure  = 'ZVAL_DISCTYP'
          retfield        = 'ZDISCTYP'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'ZVAL_DISCOUNT-ZDISCTYP'
          window_title    = 'Discount Type'(016)
          value_org       = 'S'
        TABLES
          value_tab       = i_disctyp
          return_tab      = i_ddshretval
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc EQ 0.
        READ TABLE i_ddshretval INDEX 1.
        IF sy-subrc EQ 0.
          MOVE i_ddshretval-fieldval TO zval_discount-zdisctyp.
        ENDIF.
      ELSE.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " f4_help_discount_type  INPUT
    Edited by: avinash kodarapu on Jan 5, 2009 12:34 PM

  • How  to make the search term in Vendor master (XK01) as List box

    Hi,
    I got the requirement to make the search term in Vendor master (XK01) as List box. Is there any way to reach this requirement.
    Thanks in advance
    Suman

    Hi
    U should change the std dynpro
    Max

  • PO created by means of Workflow  with out Vendor master updates

    Hi  Friends,
       I  have my scenario like this. I am working with Production server. When ever a request is created, it has to be sent for Vendor master data updates. then only a PO has to be created. The problem is the PO is created and the workflow is completed with out vendor master updates. When i check through SWI6  the step is just skipped. In the graphical view the steps vendor master update i.e tru  descion and other wait step types are disappeared. but in the original workflow the steps are present. can any one pls help me in solving this?
    Thanks,
    Archana.

    Hi  Arghadip,
      Thanks for the reply. The process is like this :
       when once request is created , it will fetch the email id of the approver from LDAP
       Then 2 approval steps are there. first approval is not mandatory. second is mandatory and its having terminatting event.
      After this Amendment descion will be there. on rejection of this descion it has to go and update vendor master. Until the amendments the process is going on. after  this  vendor master update will be there . it includes wait steps to  finish the update. then PO has to be created. but  from vendor descion to wait event the steps are disappeared when i checked  in SWI6 for that user. pls help me.

  • How to create Serach help in SRM?

    Hi all,
    Can you please guide me how to create a search help in SRM?
    I would like to display seach help for the custom field on SRM Portal.
    Which are the steps / procedure to display search help in SRM Portal?
    Thanks in advance.
    Regards,
    Hemant

    Hi Hemant,
    Hope this link may help you Adjusting SRM searchhelp using BBP_F4_READ_ON_ENTRY / BBP_F4_READ_ON_EXIT?
    Regards,
    Pravin

  • How to create a help button for downloading a help file in OA Framework

    Hi all
    I want to create a help button for downloading a help document.Plz suggest me how to do it.
    Thanks
    Bhupendra

    Create a button of type "button",set the destination url property to the place u have kept the file.But ur file should be anywhere in Common_top.If this file is stored as blob u can use messagedownload bean.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to create a help file for a VI

    I want to create a help file describing my VI. How do i do that by clicking a control. How do I store the help file.

    Hi Mudda;
    Assuming you are using Windows, with LabVIEW, you can create the necessary files to create a help file, but you can't create the help file. In order to create your help file, you need a WinHelp compiler.
    Also, what LabVIEW allows you to do is to create a file that correspond to the documentation of you VI, so you need to fully document you VIs first.
    To document you VI, go to File -> VI Properties and select "Documentation" from the menu. You can access the VI Properties also by Right-clicking the VI icon in the top-right corner of the Window. To document the controls and indicators in your VI, Right-click the control or indicator and select "Description and Tip...".
    To create the documentation files, go to File -> Print. At some point
    , you will have the option to select a Destination. Select "RTF File" to generate the files a WinHelp compiler understand.
    As you will see too, you can also create html files for your VIs. It can be a good alternative for WinHelp files.
    There are some nice Help editors outhere. I use HelpScribble. You can see a very simple help file I created with HelpScribble in my small projects VI Background Check and VIs for DeployMaster.
    Regards;
    Enrique Vargas
    www.visecurity.com
    www.vartortech.com

  • How to create an in-site search engine

    How does one manually create an in-site search engine (without using Google's site search engine or the like)? Is it very difficult and time consuming?

    If your site is dynamically populated with content from server-side databases, it's not hard.
    If your site is static, a 3rd party search function might be a better choice until you're ready to build a dynamic site.
    Zoom search engine
    http://www.wrensoft.com/zoom/
    Freefind
    http://www.freefind.com/
    Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Building your first dynamic website – Part 1: Setting up your site and database connection
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How to create value help in web-dynpro-abap

    Hi ,
         can anybody tell me detailed step for creating value help in web-dynpro-abap .

    Hi,
    Web Dynpro provides two types of pre-implemented search helps :
    1. ABAP Dictionary Search help
    2. OVS
    Input Help for WDA
    http://help.sap.com/saphelp_nw04s/helpdata/en/b3/4d3642eca5033be10000000a1550b0/frameset.htm
    There is  a blog on implementing OVS help in WDA. You can refer below link for sample code.
    /people/shruti.rathour/blog/2008/05/05/ovs-help-in-web-dynpro-abap
    In addition, you can also provide help through Drop Downs and Select options.
    Working with Select options in WDA
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c09fec07-0dab-2a10-dbbe-c9a26bdff03e
    Plz reward if helpful.
    Thanks.
    Raj.

  • How to create a help page in my application like the one in HTMLDB ?

    Hi,
    What's the best way to create a help file for my application and link it like the help link at the top right of HTMLDB ?
    Thank you.

    That's what I did, but I have a lot of screen captures. Where would be the best place to save those gif, server or in the database by loading them via the images tab in HTMLDB ?
    Thank you.

  • How to create F1 help for fields of a table in SM30

    I have a z-table which is being maintained using SM30. while creating new entries for the z-table using this SM30 i want to create F1 help which will be useful for the user to create new entries. can anyone pls help we this requirement?

    Hi Lalitha,
    To have F1 help documentation, you need to create Documentation by pressing Documentation button in the Change Data Element screen (SE11)
    If you need certain values for the field through F4 help then you need to specify the values in the Domain of this Data element (SE11)
    Jogeswara Rao K

  • How to create F4 help for a coloumn in CL_GUI_ALV_GRID?

    Hi experts,
       I have created alv grid on a container where i can enter data. But i need to create f4 help for a coloumn in the grid.Can you experts suggest some way to do it??
    Thanks in advance
    regards,
    Ashwin

    Hi ,
    Follow thios code.
    Develop a method in your class as follows.
    CLASS CL_PRICE_DATA DEFINITION.
    PUBLIC SECTION.
    ON_F4
    FOR EVENT ONF4 OF CL_GUI_ALV_GRID
    IMPORTING ES_ROW_NO E_FIELDNAME ER_EVENT_DATA.
    CLASS CL_PRICE_DATA IMPLEMENTATION.
    F4 for Reason Code
    METHOD ON_F4.
    FIELD-SYMBOLS: <FT_MODI> TYPE LVC_T_MODI .
    REFRESH :GT_FIELD_TAB,GT_VALUE_TAB,GT_RETURN.
    IF E_FIELDNAME = 'CTMBRCHGREASCD'.
    LOOP AT VALUES_TAB INTO VALUE_TAB.
    MOVE VALUE_TAB-CTMBRCHGREASCD TO GS_VALUE_TAB-STRING .
    APPEND GS_VALUE_TAB TO GT_VALUE_TAB.
    CLEAR : GS_VALUE_TAB.
    MOVE VALUE_TAB-CTMBRCHGRSNDSC TO GS_VALUE_TAB-STRING .
    APPEND GS_VALUE_TAB TO GT_VALUE_TAB.
    CLEAR :GS_VALUE_TAB.
    ENDLOOP.
    GS_FIELD_TAB-FIELDNAME = 'CTMBRCHGREASCD' .
    GS_FIELD_TAB-TABNAME = '/CPC/TCTMBRCHG'.
    APPEND GS_FIELD_TAB TO GT_FIELD_TAB.
    clear GS_FIELD_TAB.
    GS_FIELD_TAB-FIELDNAME = 'CTMBRCHGRSNDSC' .
    GS_FIELD_TAB-TABNAME = '/CPC/TCTMBRCHG'.
    APPEND GS_FIELD_TAB TO GT_FIELD_TAB.
    clear GS_FIELD_TAB.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = 'CTMBRCHGREASCD'
    VALUE_ORG = 'C'
    TABLES
    VALUE_TAB = GT_VALUE_TAB
    FIELD_TAB = GT_FIELD_TAB
    RETURN_TAB = GT_RETURN.
    ASSIGN ER_EVENT_DATA->M_DATA->* TO <FT_MODI>.
    GWA_MODI-ROW_ID = ES_ROW_NO-ROW_ID.
    LOOP AT GT_RETURN INTO GWA_LS_RETURN .
    GWA_MODI-FIELDNAME = GWA_LS_RETURN-FIELDNAME.
    GWA_MODI-VALUE = GWA_LS_RETURN-FIELDVAL.
    INSERT GWA_MODI INTO TABLE <FT_MODI>.
    READ TABLE VALUES_TAB INTO VALUE_TAB WITH KEY CTMBRCHGREASCD =
    GWA_LS_RETURN-FIELDVAL.
    GWA_MODI-FIELDNAME = 'CTMBRCHGRSNDSC'.
    GWA_MODI-VALUE = VALUE_TAB-CTMBRCHGRSNDSC.
    INSERT GWA_MODI INTO TABLE <FT_MODI>.
    ENDLOOP.
    ER_EVENT_DATA->M_EVENT_HANDLED = 'TRUE'.
    ELSEIF E_FIELDNAME = 'CONTMBRSTATCODE'.
    loop at gt_member_status into gs_member_status.
    MOVE gs_member_status-status TO GS_VALUE_TAB-STRING .
    APPEND GS_VALUE_TAB TO GT_VALUE_TAB.
    CLEAR : GS_VALUE_TAB.
    MOVE gs_member_status-description TO GS_VALUE_TAB-STRING .
    APPEND GS_VALUE_TAB TO GT_VALUE_TAB.
    CLEAR :GS_VALUE_TAB.
    endloop.
    GS_FIELD_TAB-FIELDNAME = 'CONTMBRSTATCODE' .
    GS_FIELD_TAB-TABNAME = '/CPC/TCTMBRHST'.
    GS_FIELD_TAB-reptext = 'Member Status'.
    APPEND GS_FIELD_TAB TO GT_FIELD_TAB.
    clear GS_FIELD_TAB .
    GS_FIELD_TAB-FIELDNAME = 'CTSTATSHRTDESC' .
    GS_FIELD_TAB-TABNAME = '/CPC/TCONSTAT'.
    APPEND GS_FIELD_TAB TO GT_FIELD_TAB.
    GS_FIELD_TAB-FIELDNAME = 'CTMBRCHGRSNDSC' .
    GS_FIELD_TAB-TABNAME = '/CPC/TCTMBRCHG'.
    APPEND GS_FIELD_TAB TO GT_FIELD_TAB.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = 'CONTMBRSTATCODE'
    VALUE_ORG = 'C'
    TABLES
    VALUE_TAB = GT_VALUE_TAB
    FIELD_TAB = GT_FIELD_TAB
    RETURN_TAB = GT_RETURN.
    ASSIGN ER_EVENT_DATA->M_DATA->* TO <FT_MODI>.
    GWA_MODI-ROW_ID = ES_ROW_NO-ROW_ID.
    LOOP AT GT_RETURN INTO GWA_LS_RETURN .
    GWA_MODI-FIELDNAME = GWA_LS_RETURN-FIELDNAME.
    GWA_MODI-VALUE = GWA_LS_RETURN-FIELDVAL.
    INSERT GWA_MODI INTO TABLE <FT_MODI>.
    READ TABLE VALUES_TAB INTO VALUE_TAB WITH KEY CTMBRCHGREASCD =
    GWA_LS_RETURN-FIELDVAL.
    GWA_MODI-FIELDNAME = 'CTMBRCHGRSNDSC'.
    GWA_MODI-VALUE = VALUE_TAB-CTMBRCHGRSNDSC.
    INSERT GWA_MODI INTO TABLE <FT_MODI>.
    ENDLOOP.
    ER_EVENT_DATA->M_EVENT_HANDLED = 'TRUE'.
    ELSEIF E_FIELDNAME = 'SH_CUST_NMBR'.
    LOOP AT GT_SHARED_CUSTOMER INTO GS_SHARED_CUSTOMER.
    SELECT SINGLE CUST_NAME FROM /CPC/TCUSTOMER INTO
    GS_SHARED_CUSTOMER-CUST_NAME
    WHERE CUST_NMBR = GS_SHARED_CUSTOMER-SH_CUST_NMBR.
    MOVE GS_SHARED_CUSTOMER-SH_CUST_NMBR TO GS_VALUE_TAB-STRING .
    APPEND GS_VALUE_TAB TO GT_VALUE_TAB.
    CLEAR : GS_VALUE_TAB.
    MOVE GS_SHARED_CUSTOMER-CUST_NAME TO GS_VALUE_TAB-STRING .
    APPEND GS_VALUE_TAB TO GT_VALUE_TAB.
    CLEAR : GS_VALUE_TAB.
    ENDLOOP.
    GS_FIELD_TAB-FIELDNAME = 'SH_CUST_NMBR' .
    GS_FIELD_TAB-TABNAME = '/CPC/TGRPSHRHLD'.
    APPEND GS_FIELD_TAB TO GT_FIELD_TAB.
    clear GS_FIELD_TAB.
    GS_FIELD_TAB-FIELDNAME = 'CUST_NAME' .
    GS_FIELD_TAB-TABNAME = '/CPC/TCUSTOMER'.
    APPEND GS_FIELD_TAB TO GT_FIELD_TAB.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = 'SH_CUST_NMBR'
    VALUE_ORG = 'C'
    TABLES
    VALUE_TAB = GT_VALUE_TAB
    FIELD_TAB = GT_FIELD_TAB
    RETURN_TAB = GT_RETURN.
    ASSIGN ER_EVENT_DATA->M_DATA->* TO <FT_MODI>.
    GWA_MODI-ROW_ID = ES_ROW_NO-ROW_ID.
    LOOP AT GT_RETURN INTO GWA_LS_RETURN .
    GWA_MODI-FIELDNAME = GWA_LS_RETURN-FIELDNAME.
    GWA_MODI-VALUE = GWA_LS_RETURN-FIELDVAL.
    INSERT GWA_MODI INTO TABLE <FT_MODI>.
    ENDLOOP.
    ER_EVENT_DATA->M_EVENT_HANDLED = 'TRUE'.
    ENDIF.
    ENDMETHOD.
    This will trigger when do a F4 on the field .
    Apart from this in the fieldcatalog for that field assign 'X' for the field F4AVAILABL and also set handler eventobj->on_f4 for grid .
    Please reward if useful.

  • How to create child part from Parent Item - BLOW UP Master - Automatically

    Hi to All,
    Have any one defined this process?
    To create child part from Parent Item - BLOW UP Master - Automatically ie. we receive FG from customer which we need to blow up to its child part. In that case, FG should be consumed & child parts should be generated in stock.
    We tried with recursive, but the stock of FG was again generating with recursive.
    Ex. FG after receiving from customer in stock 1
    Child parts (with offtake 1) X1, X2, X3 in stock zero.
    After processing, FG stock should be zero & X1, X2, X3 = 1.
    Regards
    Nitin

    Create a BOM for one of the "child" parts that has the "FG from customer" as a component and all the other child parts are negative quantity components (by products).
    To make it simple have all the components backflushed and auto goods receipt the child in the BOM header.  Create a production order, then process the confirmation (this will auto goods receipt the 1st child, consume by backflush the "FG from customer" and put the other child parts into stock as by products.
    You will need to get your material prices correct first so that there is minimal variance in the production order.

Maybe you are looking for

  • Calendar sync time off by one hour

    When I sync my BB Curve 8530, version 5.0, by Verizon with Outlook 2007 calendar, the appointment time is off by one hour.  The BB Curve always shows the appt time one hour later than Outlook.  When I schedule an all day event, it begins at 1 am and

  • Can no longer play podcasts downloaded on itunes on 2nd generation shuffle, is there a fix?

    Ever since the latest version of itunes was unleased (Apple is so going downhill if this is any indication) my ipod Shuffle 2nd generation (I have 2) will not play podcasts downloaded on itunes. I get orange, green, orange, green lights and then noth

  • Can I use plug-ins in iPhoto?

    Can I use plug-ins in iPhoto? THe plug-ins are Neat Image and Noise Ninja.

  • Bad video quality from iPhone videos on PC?

    Hello all, I have been experiencing a fairly annoying problem.  I have a small library of videos taken on my iPhone 4S (iOS 5) which have been transferred to my PC (Windows 7).  I realize that these are .MOV files and Windows Media Player will not pl

  • All music sitting in iPad. Too much space. Help.

    Somehow I downloaded all of my music to my iPad. It is taking up way too much space. How do I change settings with apple so that the music is one the cloud and not my iPad?