Remove Column in Standard Search Help(SAKO)

Hi Experts,
I have a requirement in that i have to hide some column in SAKO search help i tried all the posibilities in search help exits
but couldn't find any way to remove its just going from header selection in search help pop up (input field n its lable)
but column not get removed.
kindly suggest me the way.
ENHANCEMENT 1  ZFI_NOR_ENH_SAKO.    "active version
* Execution Criteria : On F4 Help                                      *
* MODIFICATION HISTORY:                                                *
* Correction No.  Name          Date       Description                 *
* Begin of Insertion WIW ID -KPANDE |<Project ID> 10000265851 |<Date>21-02-2011|<Transport request>
tables : ZNOR_USERS.
  data : wa_shlp_tab like line of shlp_tab.
  data : wa_interface like line of shlp_tab-interface.
  data : wa_fielddescr like line of shlp_tab-fielddescr.
  data : wa_fieldprop like line of shlp_tab-fieldprop.
* Check whehter the Logon User is a NOR Users
select single * from ZNOR_USERS where NOR_WIW_ID = sy-uname.
  if sy-subrc is initial.
    if callcontrol-step = 'SELONE'.
      if sy-subrc is initial.
     READ TABLE SHLP_TAB INTO WA_SHLP_TAB WITH KEY SHLPNAME = 'GL_ACCT_CA_TEXT'.
     IF SY-SUBRC IS INITIAL.
         LOOP AT WA_SHLP_TAB-INTERFACE INTO WA_INTERFACE.
          IF WA_INTERFACE-SHLPFIELD = 'MCOD1'.
          DELETE WA_SHLP_TAB-INTERFACE INDEX SY-TABIX.
          ENDIF.
        ENDLOOP.
         LOOP AT WA_SHLP_TAB-FIELDDESCR INTO WA_FIELDDESCR.
          IF WA_FIELDDESCR-FIELDNAME = 'MCOD1'.
            DELETE WA_SHLP_TAB-FIELDDESCR INDEX SY-TABIX.
          ENDIF.
        ENDLOOP.
            LOOP AT WA_SHLP_TAB-FIELDPROP INTO WA_FIELDPROP.
          IF wA_FIELDPROP-FIELDNAME = 'MCOD1'.
            DELETE WA_SHLP_TAB-FIELDPROP INDEX SY-TABIX.
          ENDIF.
        ENDLOOP.
          MODIFY SHLP_TAB FROM WA_SHLP_TAB INDEX SY-TABIX.
     ENDIF.
    READ TABLE SHLP_TAB INTO WA_SHLP_TAB WITH KEY SHLPNAME = 'GL_ACCT_CC_TEXT'.
     IF SY-SUBRC IS INITIAL.
         LOOP AT WA_SHLP_TAB-INTERFACE INTO WA_INTERFACE.
          IF WA_INTERFACE-SHLPFIELD = 'MCODF'.
          DELETE WA_SHLP_TAB-INTERFACE INDEX SY-TABIX.
          ENDIF.
        ENDLOOP.
         LOOP AT WA_SHLP_TAB-FIELDDESCR INTO WA_FIELDDESCR.
          IF WA_FIELDDESCR-FIELDNAME = 'MCODF'.
            DELETE WA_SHLP_TAB-FIELDDESCR INDEX SY-TABIX.
          ENDIF.
        ENDLOOP.
            LOOP AT WA_SHLP_TAB-FIELDPROP INTO WA_FIELDPROP.
          IF WA_FIELDPROP-FIELDNAME = 'MCODF'.
            DELETE WA_SHLP_TAB-FIELDPROP INDEX SY-TABIX.
          ENDIF.
        ENDLOOP.
         MODIFY SHLP_TAB FROM WA_SHLP_TAB INDEX SY-TABIX.
     ENDIF.
ENDENHANCEMENT.
*$*$-End:   (1)---------------------------------------------------------------------------------$*$*
thnx..
ketan...

The seach help exit is to adjust input and output parameters and there selction
@Dhiraj: Not true (again).
To the OP, I'm not sure why you would want to remove such a useful function from the screen.  However, you can overtake the selection and display process entirely with a search help exit if that's your desire.  For more information, read the documentation on search help exits.

Similar Messages

  • Why is there no standard search help for table-field T056U-VZSKZ?

    Hi Experts,
    A blessed day.
    Table-Field T056U-VZSKZ (Control table for calculation of interest on arrears-Interest calculation indicator or account number) is being used to provide the entries for a screen-field of a standard transaction for Account Determination: Posting Specifications.  However, this table-field T056U-VZSKZ does not have a standard search-help.  I've looked for an OSS for this, but wasn't able to find one.  Is there a reason why this T056U-VZSKZ does not have the standard search help when VZSKZ is it's key field?
    Thanks. 
    Regards,
    ianne

    Hi Marco,
                     When you attach the search help make sure you also attach the export parameter of the search help to the name column. That is in the tab 'Further characteristics' we have to pass two value. The search help name should be typed in place of 'Parameters' and the export parameter of the search help should be typed in the place of 'Name'.
    Please try this and post back the updations.
    Thanking you,
    Jerry

  • Some questions about standard search help in WD4A

    Hello all,
    I use the SAP standard search help for a business partner number input field. It works fine, but I need to customize the result popup a bit. I have the following issues:
    1. After the search I get a table with a list of all found business partners. The columns are not sortable. Can I change them to sortable (as in SAP GUI)?
    2. How can I add another field/column to the result list (birth date)?
    3. Per default 10 hits are shown on one page in this result table. Is it possible to show more hits at once?
    Best regards and thanks for all help,
    Matthias

    Hi Matthias,
      first of all let's say that the Search Help has been changed a lot in the different SP level.
      Looking in a NW7.0 SP12 I can see that:
      1. It's not possible
      2. You have to change the Search Help definition in DDIC (/nSE11)
      3. Via the Settings link in the TOP LEFT you can change the value (but in my system it is set to 500)
      Keep in mind that WDA support a freely programmed Search Help where you can do everything you want...but it requires coding...
    Sergio

  • Getting the value of a dynpro field in an exit for a standard search help.

    Hallo Experts!
    I need to modify the selected data displayed in standard sap search help: H_T357
    What I've done is create an exit for the search help.
    Then, when CALLCONTROL-STEP = 'DISP' I use the function module F4UT_PARAMETER_VALUE_GET and I get the value of the parameter 'WERKS' correctly. I think that this function module can only obtain values from the parameters of the search help. Well, here is the problem, I would like to get the values of dynpro fields
    'ILOA-STORT' and 'VIQMEL-QMART' (warning type) in transaction IW21.
    I prefer not to add these fields as parameters to the standard search help: H_T357.
    Any ideas for getting the value of these fields? I've seen functions modules: F4UT_GET_ENVIRONMENT and F4UT_SH_SIC_GET_FIELDS. But I don't know if I can use them  for my porpuses.
    Thanks a lot in advance.

    Hello again,
    I have already solved the problem using function module 'DYNP_VALUES_READ'.
    Thanks, David.

  • Standard Search Help in Custom Search Help

    I've created a Custom Search Help for Product Hierarchy. But when search help window appears, I want to put a standard search help of Product Hierarchy on Product Hierarchy field which is located on Resctricted section. Is that possible? Let me know if there's a way...
    Thank you

    hello ibnu,
    it is not possible i attach a standard search help mara
    no such feature available .

  • Clear error message on F4 standard search help in webdynpro abap

    Hi Gurus,
    We have a check on the data entered by the user in our webdynpro producing a error message if the data are not correct. My problem is that this message is also diplayed in the search help afterwards when the user clicks on the search help. I know how to clear an error message but I can't find the event triggered by the F4 search help to put my code. The search help is a standard search help and thus I can't modify it.
    All I want is to find the event triggered when the user clicks on the search help. The field is in an alv but the alv click or alv action are not triggered when the user clicks on the search help.
    Thanks for your help in advance guys.

    Yes.  It is called a Freely Defined Value Help if you want to have complete control of the UI that is displayed in the dialog:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/9ef8cc9b5e3c5ce10000000a421937/frameset.htm

  • How to add one column in existing search help.

    Hi Folks,
    My quesion is
    How to add one column in existing search help and also Now search help on that field is not an explicit search help. It should be implement using check table.
    Shivam

    Hi,
    If you want to add a field in Elementary search help, get the search help name for the and go to change mode and add the field in it.
    If you want to add a field in collective search help, go to included search helps tab and a new search help name and add the fields to it.
    I think this should help you to certain extent.
    Regards,
    Kranthi
    Edited by: Kranthi on Jan 14, 2010 11:15 AM

  • Calling a standard search help from MS Office

    One of the companies I work for has integration with Microsoft Office so users can create SAP DMS (document management system for those who aren't familiar with it) entries directly from e.g. Microsoft Word. The integration solution is a custom .Net application.
    In addition to the obvious integration to create the DMS info record and assign the document as an original the integration solution lets the user provide classification data. Some changes are now being planned, and one of them is challenging as a new characteristic (for the classification) will be used to store an organization unit. This is straightforward when the user is in the SAP GUI, as the standard search help can easily be displayed from custom code.
    Being a technology optimist I was hoping that with the new fancy technologies SAP would have provided a way to use .NET integration to display a standard search help from the MS Office integration dialogue - but so far I have not been able to find any information supporting this hope. Luckily I am not the developer working with the integration dialogue, but unless the mentioned possibility exists it looks like we have to resort to passing all organization units to the interface so a hierarchy can be constructed and displayed to the user for selection.
    Another alternative (I think) is to recreate the dialogue as a web dynpro screen, which will give us all the advantages of operating "inside" SAP. However, I am not sure if this is possible either. Can a web dynpro screen be called from an MS Office application (.Net), and can that web dynpro screen return values to the (external) calling application? In my simple view of the world this should be doable, if not otherwise it should at least be possibly by wrapping the screen in a function module that is exposed so the .Net application can call it - either by RFC or as a web service.
    Microsoft Office version is 2003.
    SAP release is ECC 6.0 (Netweaver 7.0).
    I think this is the right forum for my question. My apologies if it isn't (and any guidance towards a more appropriate forum would then be appreciated).

    Not solvable I suppose. There should be a way to close messages without marking them as answered.

  • How to copy a standard search help to another field

    Hi All,
    I have a BSP screen in that for one input field i need to copy the standard search help for the Business Partner. Could any one guide me how to copy the standard search help for the business partner into the input field in the BSP screen.
    Thanks In advance for the help...
    Thanks,
    SAP SAP

    Hi,
    the BP search is its own web client UI component. For the integration you could check any standard transaction UI component like the BT115H_SLSO, as those contain several partner fields.
    Best Regards,
    Michael

  • Qtn: I have 10 standard elementary search helps in collective standard search help, how to deactivate the 10th elementary search help?

    Qtn: I have 10 standard elementary search helps in collective standard search help, how to deactivate the 10th elementary search help?

    Hello,
    this topic is still a problem for me, does anybody have an idea.
    Just to show what's my problem:
    Collective Search help KRED does include a SAP append-search help ASH_KRED which holds the elementary search helps KREDC, KREDE, KREDM, KREDW.
    The search helps KREDE, KREDM, KREDW should not be displayed, so I added another Serach-Help-Append ZKRED_CUST at the end of CSH KRED which holds these 3 SH's with the hidden flag.
    That works, the SH's are not shown anymore.
    I also added some other of the Original SAP SH's (e.g. KREDA) with the hidden flag and added changed copies of these (e.g ZKREDA) there to be shown instead.
    All this can be done modification free by appends.
    The folders of the elementary search helps are shown in the order as they are found included in the KRED SH and the append to this SH.
    This means that the not hidden Sh KREDC from ASH_KRED is shown before all the "custimized" ZKREDx -SH's. But we need this SH not very often, so that I want it to displayed al the right-most position of the folders of SH's or at the most down postition of the drop-down-selection of SH's.
    But I have not found any way to do this modification free.
    The only way to archive this is to modify ASH_KRED by setting the Hidden-Flag for KREDC and add this SH at the end of append-SH ZKRED_CUST again.
    But I want avoid this modification.
    So, is there any way to do this without modifing any of the original SAP SH's ?
    Helmut Fischer

  • Search Help - Restricting entries in standard search helps

    Hi, is there any way to restrict entries in an SAP supplied search help?  The search help in question is 'SSH_T007A', this search help also has a user exit 'F4_TAXCODE_USER_EXIT'.  I'm not sure if the user exit is of any use or how to use it.  Ideally what I need to do is to restrict the list of applicable tax codes to only those that we want our users to select.  Does anyone have an idea of how to do this with a minimum of customization?
    Thanks in advance,
    Kevin May

    Hi Seshatal,
         Thanks for the input, but this field does NOT  have any ON VALUE REQUEST event associated with it ....
       as soon as F4 is hit, it goes to Function help_start ,so I don't think we can make any changes here as it is standard .
       I think including a standard search help will help....how to achieve this ?
    Thanks,

  • Standard search help need for application directories

    Hi All,
    I have a created ztable.I want to assign a search help to this Z table field.
    I need a search help which contains the apllication directories.
    Is there any standarda serch help avliable to assign the application directories to the Z field of ztable.
    Thanks,

    I don't think there is a standard search help available, but there is a function which provides a F4 dialog box to search app server directories... You can try creating your own search help with it.
    PARAMETERS p_file TYPE dxfile-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
    EXPORTING
          dynpfield_filename = 'P_FILE'
          dyname                    = sy-repid
          dynumb                    = sy-dynnr
          filetype                     = 'P'
          location                    = 'A'
          server                       = '  '.
    filetype: 'P' represents Physical file name; 'L' represents Logical file name.
    location: 'A' represents Application Server; 'P' represents Presentation server.
    P_FILE is parameter name (in your case it can be scree field name)
    dyname = report name
    dynumb = scree number

  • Removing standard search helps

    I have created a field in my custom table, with data element VKORG (its domain is also VKORG).
    Now, the search help C_VKORG is automatically getting attached to this field.
    How can I remove this seach help from my field?

    Hi Prabhat,
    I believe the issue is coming because you have the standard Data Element to refer to the field, I would recommend you to create a new data element and also the domain of 4 characters and also then after you can link a custom search help then after in SE11 transaction.
    BR/Thanks
    Pranav Agrawal

  • Modifying standard search help

    Hi All
    We need to modify the standard collective search help for  material and vendor master.
    In  this we need to filter all the material master records for which there is a deletion flag (LVORM = X).
    How can we do this?
    Pls help
    Edited by: Rahul Khandelwal on Sep 18, 2010 2:36 PM

    Search help for Field MATNR is MAT1.
    - Go to SE11 set radio button to  Search help  Enter MAT1 next to it.
    - Go to tab "Included Search helps" and click MAT1_A.
    - in that go to Tab "Included search helps" and click "MAT0M". There are many helps, this is basically the tabs shown when you press F4 in the MATNR field.
    - In the definition Tab - Selection method - M_MAT1M is shown, This is the search help database view.
    So first check in which Tab you do want to show the material that is marked for deletion.
    Here i have taken - M_MAT1M, Material Number/Material Description.
    - Click the M_MAT1M and it goes to Database View.
    - Click Change.
    - In the "View flds" Tab, include LVORM in the "View Field" column
    - In the "Selection Conditions" Tab, Enter the following in the columns:
    - Table - MARA
    - Fieldname - LVORM
    - Operator - EQ
    - Comparative Value - ' '
    - and save it.

  • How to add a field in elementary standard search help ? (H_T012)

    Hi everyone,
    I need to add a description field in the standard H_T012 search help, I know that collective search helps can be modified by appends, but, how can it be done in an elementary search help ?
    Thanks on advance,
    VSwaret

    hi swaret,
    i tried ur problem.....
    nothing special as to be done to add a new field in elementary search........
    just press F4 at parameters.
    there are already 4 fields...
    BUKRS
    HBKID
    BANKS
    BANKL
    you just add ur field.....
    TEXT1
    and specify Lpos and Spos as 5.
    and activate...... thats all......
    i tried and it worked for me........
    i hope it was helpful for u.

Maybe you are looking for

  • Change schedule lines using bapi salesorder_change

    Hello, I am using 'SD_SALESDOCUMENT_CHANGE' to change sales order. schedule lines are not changed. I get an express inbox message saying : =================================================================== Update was terminated Error Info...   00 67

  • Default slide size?

    I noticed that the default slide size in Keynote '08 is now 1024 x 768. Does anyone know how or if you can change the "default" slide size to some other value? Kind of a pain to have to do it every time I create a document.

  • Which method is invoked everytime a row in invoked

    Hi all, I have a Table that is having the Code of the LOV field that is stored in the database. I have just drag and drop the Fields from the View Objects to my jspx page. So that it is displaying only the code of the LOV field. But i need to display

  • Can't connect to a Bluetooth earpiece

    I've hired a developer to create an air app for me on Android. The app needs to record audio from, and send audio to, the user, ideally via a Bluetooth earpiece.  The developer tells me air doesn't support Bluetooth earpieces, which surprises me (he'

  • Norton Antivirus Vulnerability Protection

    I installed Norton Antivirus 11 with Vulnerability Protection and my Mac Mail program could not send/receive mail thereafter. I am also using PGP Desktop ver 9.7. Mail works if the Vulnerability Protection is disabled. Has anyone else run into this i