SEARC HELP

Hello Friends,
Need help on search help,I am doing a report in which the selection screen has 2 select options 1)Sales Order No ,2) Material Number
Now what I want is that if the user enters the sales order no and then presses F4 for material number then only those materials should be displayed which are the present in the entered Sales order range,I am able to do this with help of the function module F4IF_INT_TABLE****( I dont remember the complete name ) and im doing this wen sales order select option is not initial,but if it is initial wat i want is that wen i press F4 on material number then normal search help should pop up and not value with help of above function module since the number of records will be to large............
is there anyway i can use both the function module n matchcode objects or anythin else but 2 different search help according the status of the sales order select options................ pls help
NOW i have used a function module Help_start,but wat i want is the wen the sales order is initial then only those matnr from MARA should be displayed which have a field XCHPF in mara marked as 'X'......

Hi,
1) Use FM DYNP_VALUES_UPDATE in at selection screen on value request for P_matnr.
2) if P_vbeln is blank u can avoid using FM, otherise by getting values corresponding to sales order first & pass it to FM F4IF_INT_TABLE_VALUE_REQUEST.
Thanks
Sandeep
Reward if helpful

Similar Messages

  • Searc help in entry help/Check tab vs Search help in Further Char-Data elem

    Folks,
    I have a screen field which is linked to a structure.When I look at that structure's entry help/check tab in se11 this field is having a collective search help.Now I want this to be replaced by a Z search help.
    If my understanding is right I need access key for this structure so that I can link the z search help in entry help/check tab against this field.
    My query is whic is the right way
    1.Linking the z search help in the entry help/check tab against that field in the structure at SE11 level
        or
        Linking the Z search help in Further Characterisitics tab of the data element used by this field.
    Either way the search help will be reflected at all the places wherever this field is available in the screen.Am I right ?
    or
    2. Linking the search help to a data element is different from linking the seach help to the field in that structure in entry help/check tab ? If they differ how do they differ.Kindly let me know
    Thanks,
    K.Kiran.

    Not true.
    Search help assigned at data element level is independent of that assigned at structure level, and the latter has higher priority. Please read "Input Help Hierarchy in the ABAP Dictionary":
    http://help.sap.com/saphelp_470/helpdata/en/9f/dbaa5435c111d1829f0000e829fbfe/content.htm
    The structure level assignment can (and generally is) linked to more than one field, not only the one that triggers the search help. That depends on the search help importing and exporting parameters. The data element assignment can only affect the field in which it is used.
    Nevertheless, even the search help defined at structure level could be overriden in the program (e.g. PARAMETERS...MATCHCODE OBJECT, AT SELECTION-SCREEN ON VALUE-REQUEST, PROCESS ON VALUE-REQUEST, etc). If that is not your case, it's the structure assignment that you want to change (have into account that it will affect any other dynpros which use that structure).

  • ***urgent***PCUI value searc help error

    Hi All,
    We have CRM5.0 BP deployed in Portal nw04's. When we try to access any <b>F4 Value help</b> from Portal, we are getting "<b>java script error"</b> with access denied.
    we have maintianed CRM and Portal sites in same jone. But still we are facing the same problem.
    Appreciate your help.
    With Regards,
    Ravi.D

    Thank you Manueal for the reply.
    But Note : 814409  -  is applicable for BBPCRM 3.1 and we are on BBPCRM 5.0 ..
    Still can we go ahead with this?
    With Regards,
    Ravi.D

  • How to display check box in the search help restriction pop-up window

    Hi Experts,
    I have created one searc help with dialog value restrictions. Search help contains 4 fields.
    Out of which one field has length one character.
    As oon as user press on F4 on particular field, it will display pop-up window with restrictions and displayed 4 fields.
    I would like to show that field ( one character length field) as check box in search help restrictions pop-up window.
    Pls help me ,... How can we acheive this..
    Thanks
    Raghu

    Ur Exact Requirement,
    Types : begin of itab,
         fields type c,
         Check type c,(For Check Box)
         end of itab.
    data it_tab type standard table of itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_input-low.(If it is in select-options)
      CLEAR  v_input.
      GET CURSOR FIELD s_input VALUE  v_input.
      CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE'
        EXPORTING
          i_input  = v_input
          i_langu  = sy-langu
        IMPORTING
          e_output = v_input.
      CLEAR s_input-low.
      IF v_input NE '' .
        IF v_input NE '?'..
          v_input1-sign = 'I'.
          v_input1-option = 'CP'.
          v_input1-low = v_input.
          APPEND v_input1.
        ENDIF.
      ENDIF.
    SELECT DISTINCT   Field
                      FROM Table
                      INTO TABLE it_tab
                      WHERE field IN v_input.
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
              EXPORTING
                i_title                 = 'Select Colors'
               i_selection             = 'X'
                i_zebra                 = 'X'
                i_screen_start_column   = 5
                i_screen_start_line     = 5
                i_screen_end_column     = 30
                i_screen_end_line       = 12
                i_checkbox_fieldname    = 'CHECK'
                i_tabname               = 'IT_TAB'
                i_scroll_to_sel_line    = 'X'
                it_fieldcat             = it_fieldcat1
                i_callback_program      = sy-repid
                i_callback_user_command = 'USER_COMMAND1'
              IMPORTING
                es_selfield             = selfield
              TABLES
                t_outtab                = it_tab
              EXCEPTIONS
                program_error           = 1.
    Cheers,
    Naveen

  • How to add a search help to a field  Bank Type in Transaction FK02

    Dear All,
         How to add a search help to a field  Bank Type in Transaction FK02.
         Is there any possibilty of using  exit or searc help or domain to solve this problem.
            Thanks in Advance..
    Thanks,
    Lakhsmi.

    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

  • Eventing on dictionary search help on date field

    Hi Experts,
    In my WDABAP application I have a Date input field. I have used dictionary search help into this field to display calender searc help.
    Now on select of the date from the calender I want to trigger one event which will enable some other fields in the application.
    Can you please tell me how to implement this on select event of the date.
    Thanks
    Sonia.

    Hi,
      Since you are using an Input Field , only event possible is "On Enter" event.This event is triggered when  "enter" key is pressed by the user after selecting a value in the input field.So may be you can use this and proceed further.
    Although it may not serve you the actual requirement that you have to achieve , because input field does not have any event for "On select".
    [On Enter|http://help.sap.com/erp2005_ehp_04/helpdata/EN/14/0ce74114a1da6fe10000000a1550b0/frameset.htm] this link might help
    Cheers,
    Aditya.

  • How to add check tables or search helps to search help parameters?

    Hello Forum!
    I have made a Z-Search help, and I have a problem with some of my parameters.
    The field (MARC)-EKGRP (Purchasing Group) has a check Table (T024) and the matching search help (H_T024).
    I seem to find no possibility to add this check Table search help to my EKGRP parameter in my Z-Searc Help.
    (Therefore, the End-User has to type it in Manually, there is no F4 funktionality...)
    Is there a way to do this?
    Thanx for replying!
    Kind Regards,
    Pieter
    PS: I´m experiencing the same problems with other fields as well: to parameter (MARA-)MFRNR I would like to add the seach Help 'KRED', for it appears on my Z-Search Help. And so on....

    Thanks, Archna Raja!
    This is certainly the right direction to look for a solution.
    However, i can not get it to work.
    In debugger Mode I have populated the SHLP-FIELDDESCR field 4AVAILABL  with X.
    Result: The button for the search help appears. But when I click on it, nothing happens.
    I than also tried this in combination with populating the fields:
    REFTABLE
    CHECKTABLE
    No search Help window opened..
    I did not find a fileld  where I can indicate the Search help in the SHLP Structure.
    Am I missing out on something?
    Kind Regards,
    Pieter
    PS: I´m trying to get a search help for The filed EKGRP.
          Check Table:  T024          Serach Help: H_T024
    Edited by: Pieter De Fré on Nov 30, 2010 11:38 AM

  • Search help and Match code oject

    How to create the search help in version 5.0 and 6.0 ? what is elementary search help,collective search help? what is the use of these search helps? where we use elementary and collective searsc helps? what is the difference between searc help and match code object? how to use in reports?where we use search help and F4IF_INT_TABLE_VALUE_REQUEST function module? what is the diffference between them?

    Hi Rk,
    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
    Thanks,
    Reward If Helpful.

  • Search Help or Help View????? URGENT

    hi,
    I have created a Z Search help (<b>Z_SCKOSTL</b>) for the table <b>ZTPCM004</b> . This table has fields such has <b>EKGRP</b> (Purchasing group) , <b>SCKOSTL</b> (Cost center)....& many other...
    My search help now has only EKGRP (only Key field of ZTPCM004 table) & SCKOSTL. fields...
    I need to fetch the text (<b>CSKT-LTEXT</b>) for the field SCKOSTL from the table CSKT using the field comparing <b>CSKT-KOSTL = ZTPCM004-SCKOSTL</b>...
    <u><b>Note :</b></u>
    Feld SCKOSTL from table ZTPCM004 & Field KOSTL from table CSKT are of same data length & data type....
    <b>how do i get this done ?
    when F4 Help is pressed for the parameter P_SCKOSTL how do i get the values of SCKOSTL & its respective LTEXT ????</b>
    PARAMETERS : P_SCKOSTL   TYPE   ZTPCM004-SCKOSTL MATCHCODE OBJECT Z_SCKOSTL.
    Note : Z_SCKOSTL is the search help,
             is searc help possible for two tables, if not then should I use a help view ???
    please suggest a solution,
    Points will be rewarded immddiately,
    Thanks,
    Ginni

    Hi
    Attaching a search help to a field
    A search help can influence the behavior of a field when the input help is called. The search help must be assigned to the field in order to do this. You have the following options for this assignment:
    Attach search help to a data element / table or structure field / screen field / check table.
    Conventionally search helps are attached to table fields or data elements. We shall see the same.
    Attaching a search help to a screen element
    A search help can be directly assigned to a screen field in two ways.
    The name of the search help must be entered in the Screen Painter in the Attributes for the field in the field Search help.
    The name of the search help can be defined for selection screens in ABAP reports in the PARAMETERS or SELECT-OPTIONS statement directly following the supplement MATCHCODE OBJECT.
    However, input help is only available for this particular screen.
    In this case, the search help is only available for this screen.
    OR by useing FM
    refer this code
    TYPES : BEGIN OF ST_OBJID_SH,
    OTYPE TYPE HRP1000-OTYPE,
    OBJID TYPE HRP1000-OBJID,
    END OF ST_OBJID_SH.
    DATA : IT_OBJID_SH TYPE STANDARD TABLE OF ST_OBJID_SH.
    DATA : WA_OBJID_SH TYPE ST_OBJID_SH.
    ***********SELECTION SCREEN DESIGN***********************
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    *SELECT-OPTIONS : S_OTYPE FOR HRP1001-OTYPE NO INTERVALS .
    SELECT-OPTIONS : S_OBJID FOR HRP1001-OBJID NO INTERVALS .
    SELECT-OPTIONS : DATE FOR SY-DATUM NO-EXTENSION OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    **********END OF SELECTION SCREEN DESIGN*****************
    *********VALIDATION FOR SCREEN FIELDS********************
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_OBJID-LOW.
    IF S_OBJID IS NOT INITIAL.
    SELECT OTYPE OBJID FROM HRP1000
    INTO TABLE IT_OBJID_SH
    WHERE OTYPE = 'D'.
    IF SY-SUBRC EQ 0.
    SEARCH HELP FOR QUALIFICATION.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    DDIC_STRUCTURE = ' '
    RETFIELD = 'OBJID'
    PVALKEY = ' '
    DYNPPROG = SY-REPID
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'S_OBJID'
    STEPL = 0
    WINDOW_TITLE =
    VALUE = ' '
    VALUE_ORG = 'S'
    MULTIPLE_CHOICE = ' '
    DISPLAY = ' '
    CALLBACK_PROGRAM = ' '
    CALLBACK_FORM = ' '
    MARK_TAB =
    IMPORTING
    USER_RESET =
    TABLES
    VALUE_TAB = IT_OBJID_SH
    FIELD_TAB =
    RETURN_TAB = RETURN_TAB
    DYNPFLD_MAPPING =
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF.
    Reward if uswefull

  • Match code in query

    hi Gurus,
    I would like to know if is posible that i can assign a different match-code in a field of a query.
    I have a problem in my new query, the problem is that i have a field of personal number that it have a match-code with only a number, but not have a name of this person.
    Many thanks.
    Best Regards.

    Hi,
    Instead of going with match code you can make new searc help from SE11 with two fields (Number and Name) and then call that search help into your program using.
    Alternative way is create one internal table into your program, fill it with those 2 columns. Then you can apply this internal table on search help of any field using FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
    Kindly reward with points if it is helpful to you.
    Thanks and Regards
    Virendra Kedia

  • Error 8 (file permission​s) when using Help:Searc​h

    Hi there,
    When I use the help system and do a search, I get the following error:
    Error 8 occurred at Open File
    Possible reason(s):
    LabVIEW:  File permission error. You do not have the correct permissions for the file.
    =========================
    NI-488:  DMA hardware error detected.
    This is Labview 8.2 running on Linux (Enterprise RHEL4), and I had the same problem with Labview 7.1.  The problem seems to be caused by the permissions on some or all of the following files, which are written to the /tmp directory when the search is performed:
    controls2.htm 
    index2.htm 
    js_buttons.htm 
    search_results.html
    If I do a search, these files are written but not erased (with permissions -rw-r--r--).  If someone else then does a search, they get the Error 8 problem listed above.  If the owner of these files (or root) deletes them, the problem is solved -- until a different user than the owner of those temporary files wants to search the help system.
    My guess is that if I could get Labview to either open up the write permissions on these files or delete them after the help session is complete, the problem would be solved.
    Any advice?  Has anyone else had this problem (you would need a multiple-user linux system to see it)?
    Thanks,
    Tobin

    Hi Tobin-
    The following KnowledgeBase articles provide some valuable insight.  Check them out and reply if they don't help resolve the problem.
    KB 3GFF9FBP: Why do I get "Error 8 Occurred at Open File" When Writing to or Reading From a File?
    KB ...
    And there are lots of discussions about this already.  For other possible causes/solutions, try searching the forums for "file permission error 8".
    Drew Pierce | District Manager, Central Texas | National Instruments

  • HT201263 iPod touch gone into recovery mode midway through updating to iOS 6.1 - Help!!!

    I tried to update my iPod touch (latest generation) to the new iOS system. Midway through the 30 minute download of the new software, an alert popped up telling me that the ipod connected was in recovery mode and needed to be restored in order to contiue. So I clicked restore, and the download started again. Once again, the same thing happened midway through. The download continues, and at the end of it it just disappears and my iPod stays on the connect to itunes screen (the one with the usb lead and itunes symbol). I've tried everything on the apple support pages but have had no luck at all. I've only had the iPod for a month now and have had no problems with it up til now. I know there's often problems caused by updating, but after spending hours searcing online for a solution I've yet to find anyone with the same problem, and therefore no solution. Any help would be greatly appreciated!!

    Maybe if you try restoring to a previous version first, and then restore from backup.
    This may help you find out how to roll back to the previous version:
    https://discussions.apple.com/message/19639988#19639988
    ~Lt. Leviathan

  • Upgraded to v6 iphone software, all my contacts have gone, and I can't connect to my email.  Other web pages seem ok.  Help!

    Hi
    Can anyone help me?  Since upgrading to v6 of the iphone software the other day, all my contacts have gone, and I can't connect to orange contacts restore to get them back, or access my email. Other web pages seem ok.
    When I try to connect to the orange backup app, the connection just times out and says connection error.  When I try to access my email it says verify i have put the correct a/c info into mail settings.
    Both things were fine before I updated.
    Help!
    iPhone 4S, iOS 6

    Caroline
    I am having the same problem. Have tried everything I can think of and have bee searcing the community for a solution without any luck. I think I am going to uninstall ios6 if I can figure that out and reinstall.
    Good luck!

  • Yahoo has taken over the search function of my mini mac...help

    hi...when I type searces into my Safari bar at the top of my scree...the results come back as yahoo seearch

    Very likely malware ..
    Help here >   The Safe Mac » Adware Removal Guide

  • I-tunes unknown error - NEED HELP :-)

    My daughter's G3 just started to have problems with her itunes account. When she attempts to log on to her account or buy a song she gets "Itunes could not connect to the music store. An unkown error occurred (0x80011ob) make sure your network connection is active and try again.
    She is able to open the store and select the music she wants to buy - she she has network connection, but when she attempts to purchase she gets this error
    Any suggestions?

    Welcome to discussions!
    hmm... searcing error 0x80011ob doesn't bring up any results on the apple support search (or even anything on google). Did you type it correct? Do you live near one of the Apple Stores in AZ? Maybe a someone at the genius bar could help you.
    L
    15" PowerBook G4 1Ghz 768mb RAM ‡ 17" iMac G5 1.8Ghz 1.5gb RAM   Mac OS X (10.4.5)   300gb Maxtor External HDD ‡ 5th Gen. 60gb iPod  Dell XPS 600 2.8 Ghz 2gb RAM

Maybe you are looking for

  • Is there a simple way to retrieve the data from a resultset using JavaBean?

    I have a result set from a select * from users where userid = xxx statement. However, at the moment I have had to hard code the remainder of the code to get the data from each column as I need the column name as well as its data. I had read somewhere

  • How much RAM & CPU should I allocate for Windows 7 Ultimate?

    I am in the process of setting up my new 27" iMac i7. I'm brand new to Apple computers so this is a learning curve for me! I have installed Parallels Desktop 5 so I can run Windows 7 side by side with Snow Leopard. Now I am trying to install Windows

  • IE8 protected mode and web to pdf conversion

    I am trying to convert/print web page to PDF files. If I use the Convert menu within IE8 absolutly nothing happens. It doesn't matter what option I choose inluding preferance. If I use print to Acrobat printer, I get an authorization error. If how ev

  • Continuos crash of Adobe FP plug in???

    Why does my pc crash so much on FB? I have adobe FP 12 and FP plug in why do I need the plug in?? what happens when I remove the plug in

  • Apache server in oracle

    Hi I have installed oracle version 9.2 under linux 7.3. Also we are trying to install another apache. Now my problem is that even though i have stopped the oracle apache and try running the apache under root i get an error 'You need to supply a usern