HELP SEARCH

Hi!
The problem is:
I've created a HELP SEARCH for a field in a dynpro based on the T5ITQN, but when a user click on the matchcode, he must see only certain records of the table T5ITQN (this depends only by the "type" of user) and not all the records in the T5ITQN. How i can do this?
Thanks for the answers.

Instead you can try this solution -
TYPES: BEGIN OF ztable,
         numde(20),
         kunnr(10).
TYPES: END OF ztable.
DATA: i_ztable TYPE ztable OCCURS 0 WITH HEADER LINE.
DATA: v_choice TYPE i.
PARAMETERS: p_kunnr LIKE kna1-kunnr DEFAULT '4290'.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_kunnr.
  i_ztable-numde = 'JOHN05001'.
  i_ztable-kunnr = '1'.
  APPEND i_ztable.
  CLEAR i_ztable.
  i_ztable-numde = 'PETE05001'.
  i_ztable-kunnr = '2'.
  APPEND i_ztable.
  CLEAR i_ztable.
  i_ztable-numde = 'JOHN05002'.
  i_ztable-kunnr = '1'.
  APPEND i_ztable.
  CLEAR i_ztable.
  i_ztable-numde = 'PETE05002'.
  i_ztable-kunnr = '2'.
  APPEND i_ztable.
  CLEAR i_ztable.
  CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
       EXPORTING
            endpos_col   = 50
            endpos_row   = 20
            startpos_col = 1
            startpos_row = 1
            titletext    = 'Test'
       IMPORTING
            choise       = v_choice
       TABLES
            valuetab     = i_ztable
       EXCEPTIONS
            break_off    = 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.
  ELSE.
    CLEAR i_ztable.
    READ TABLE i_ztable INDEX v_choice.
    MOVE i_ztable-kunnr TO p_kunnr.
  ENDIF.

Similar Messages

  • Why does a topic that is not in the TOC show up in a help search?  RoboHelp 9

    I have two book (.xpj) projects in one directory.  They each have their own TOCs, but the directory has all the topics for both projects.
    In project A, the generated help output TOC looks correct, but if I do a search, I get a topic that is not in project A- it is not linked to the book.  It is linked to project B.   Do you know why the search would come up with this topic?
    What determines the topics that appear in a help search?  
    Thank you,
    Erin

    It's about a thousand years since you could have two projects in one folder. (Well at least ten. )
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How do I filter my Help search to eliminate unrelated items?

    I'm working in Illustrator CS 5, but this question really applies to any Adobe product:
    How do I get the Help search to limit results to items related to the actual program I'm using, and to the subject I enter in the search bar?
    For example, if I type "join" in the search bar and select Illustrator from the dropdown menu, and check "Adobe Reference Only" the first 6 items I get are about javascript and SQL programming. This happens for any help search I do. I assume there's a way to get useful results from the Help search and I'm just missing it.
    Suggestions, anybody?

    Barry,
    In addition to what Monika said, if some unwanted added word(s) fill the top of the search, you may add -[unwanted word] for the/each word after the wanted part.

  • Offline Photoshop CHC Help Search Malfunction.

    Photoshop help search isn't returning any results in offline mode. Please read this thread:
    http://forums.adobe.com/message/3213191
    The local help has been downloaded for all the Adobe Creativity Suite applications and is showing as "Current".
    The option under the left hand pane search box dropdown "Local" is selected.
    Filter results is correctly selected "Using Adobe Photoshop CS5".
    Searching for something like "brush" returns NOTHING in offline mode. (online mode works ok).
    The help document "Using Adobe Photoshop CS5" is vissible in offline mode (in the right hand pane) but just not returning any results when searched.
    All other offline help documentation (for the rest of the Creativity Suite) seems to be working OK.

    This issue should now be resolved via the update instructions posted here: http://forums.adobe.com/message/3216601#3216601

  • Help Search on screen field

    Hi. I've made a screen with 3 fields , in the screen painter, just for the user insert dates, but my problem its that if i push f4 i have the dates help search but the icon next to the field, normally for the help search, doesnt shows up... What its missing or what im doing wrong??
    Thk, Regards
    Message was edited by:
            joao martins

    Hi,
    Try this..
    Check the check box 'Possible entries' in the input field attributes..
    THanks,
    Naren

  • Help search in alv grid field

    Hello.
    How to assign a help search to a field of an alv grid control?
    I would like to use another help search different form the field reference.
    Thanks!!!
    Alberto

    Check the sample code:
        handle_on_f4             FOR EVENT onf4 OF cl_gui_alv_grid
                                 IMPORTING sender e_fieldname e_fieldvalue
                                           es_row_no er_event_data
                                           et_bad_cells e_display.
      METHOD handle_on_f4.
        IF e_fieldname = text-027. "Date
          PERFORM f4_date USING sender e_fieldname e_fieldvalue es_row_no
                                       er_event_data et_bad_cells e_display.
        ENDIF.
      ENDMETHOD.                    "handle_On_f4
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    *&      Form  F4_contact_id
          F4 for Contact ID
    FORM f4_date  USING    sender        TYPE REF TO cl_gui_alv_grid
                           e_fieldname   TYPE lvc_fname
                           e_fieldvalue  TYPE lvc_value
                           es_row_no     TYPE lvc_s_roid
                           er_event_data TYPE REF TO cl_alv_event_data
                           et_bad_cells  TYPE lvc_t_modi
                           e_display     TYPE c.
      DATA: lv_anlage TYPE anlage.
      FIELD-SYMBOLS: <itab> TYPE lvc_t_modi.
      DATA: ls_modi TYPE lvc_s_modi.
      DATA : wa_field_tab TYPE  dfies,
             lws_date TYPE scal-date.
      DATA: lws_row_id TYPE lvc_s_roid,
            lws_tabix TYPE sy-tabix.
      DATA: li_ret_tab LIKE  ddshretval OCCURS 0 WITH HEADER LINE.
      CLEAR: ls_modi, lv_anlage, li_ret_tab, wa_final, wa_field_tab,
             lws_date, lws_row_id, lws_tabix.
      REFRESH: li_ret_tab.
      IF NOT er_event_data->m_event_handled = c_x.
        ws_f4_handle = c_x.
        MOVE es_row_no-row_id TO lws_tabix.
        READ TABLE i_final INTO wa_final INDEX lws_tabix.
        CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
          EXPORTING
            tabname           = text-012              "I_FINAL
            fieldname         = text-027              "DATE
            searchhelp        = text-038              "BU_DATE_CHAR
          TABLES
            return_tab        = li_ret_tab
          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.
        ASSIGN er_event_data->m_data->* TO <itab>.
        CONCATENATE li_ret_tab-fieldval+6(4)
                    li_ret_tab-fieldval+3(2)
                    li_ret_tab-fieldval+0(2) INTO lws_date.
        IF lws_date NE ''.
          IF lws_date > sy-datum.
            IF wa_final-zzmod_eff_code EQ c_03 OR
               wa_final-zzmod_eff_code EQ c_04 OR
               wa_final-zzmod_eff_code EQ c_05.
              wa_final-date = lws_date.
              MODIFY i_final FROM wa_final INDEX lws_tabix.
              PERFORM no_edit_for_date TABLES i_final.
              PERFORM alv_refresh.
            ENDIF.
          ELSE.
            wa_final-date = ''.
            MODIFY i_final FROM wa_final INDEX lws_tabix.
            PERFORM no_edit_for_date TABLES i_final.
            PERFORM alv_refresh.
            MESSAGE s001(zesspa) WITH text-037.
            EXIT.
          ENDIF.
        ENDIF.
        er_event_data->m_event_handled = c_x.
      ENDIF.
    ENDFORM.                                                    " f4_date
    Check the standard program <b>BCALV_EDIT_08</b>
    Regards,
    Prakash.

  • How to assign a help search

    Hi masters,
    i need to create a help search F4 for a standard field in tx ME51N. The field is AFNAM, it is located in the table MEREQ3211GRID. I created the search throught tx SE11 (zhelp_soli) and it works well.
    Now, how can i assign that help search to element AFNAM? I can't modify the standard table, because it asks me for a code. Do i need to get the permission from SAP to add that help to that field?
    I thought that i must be done without asking for the code to modify standard tables in SAP.
    Thanks..

    Hello Miguel
    Structure MEREQ3211GRID is used only within a very few program objects. I had a look into function group MEGUI and there is apparently no exit to modify fieldcatalog properties.
    Therefore, the easiest solution should be to modify the structure. For this you need the modification key for object R3TR TABL MEREQ3211GRID.
    Then you can add the search help field to the structure field MEREQ3211GRID-AFNAM.
    Regards
      Uwe

  • Help search Characteristic value

    Hi gurus,
    I need one help search for all existing characteristic values in the system.  I have a chareacteristic name, lets say XPTO and i want to show all existing values in the system that XPTO has in the AUSP.
    Can someone help?
    Thk,
    Regards

    Hi  friend there  is  no serach help  for your  characteristic value and the characteris  name ....
    so  one thing  you have to  create a serach help  it and  attach to there  data element  ....
    if you want  you  see  it by pressing in the F4 help ..  it wont work     because  there is no seaarch help  ......
    Girish

  • What do you recommend to get started with Dynamics Marketing? Book, You Tube, help searches, etc.? Please advise.

    Trying to get started with marketing using dynamics and tutorials, help searches and you tube seem to be fruitless. What do you recommend to get started? Buy a book to walk thru setting up company settings and creating campaigns? Need some easy steps on
    not what the software is capable of but how to do it with easy 1-2-3 steps.  Please share you thoughts!!

    Hi cb,
    I would recommend a few articles here. There are videos, walkthroughs and ebooks that you can take a look at the have
    a better understanding of not only what the product is capable of, but how to actually configure and work with it.
    Help & Training - Videos and ebooks
    TN Articles 

  • Community help search field ignores help files by default.

    I tried to search for "Blending mode", then "Option Bar" in the main support page, with Community help targeted, and I don't get any hot from the help files. http://community.adobe.com/help/search.html?q=option+bar&lbl=photoshop_product_adobelr&hl= en_US&self=0&area=0
    Must we now search from the help pages directly?
    Edit: I see that the results from "Community Help" is checked, but, one MUST select also " Only Adobe Content" AND "Adobe Refernence Only" to have the ACH results on top... creating this search string: http://community.adobe.com/help/search.html?hl=en_US&q=option+bar&l=photoshop_product_adob elr&area=0&self=1&meta=site%3Dphotoshop_cs5_all
    I do not remember having to click on three options to get ACH content...

    Should be fixed now. Let me know if you still see the problem.
    And big thanks for reporting it!

  • Adobe Community Help search box is black.  Can't see what I type for inquiry.

    When I click on help in Photoshop or Bridge
    CS5 the Community Help search box appears, but the entire left column is black.  I can't see what I type or see any results, although they're there (I can click at random in that black column and I get some result on the right).  Anyone know how to fix that?

    I uninstalled Air and Flash, then downloaded and reinstalled each of them.
    Clicking on Help in Bridge now results is black backgrounds on the top row (left and right), and when I type in a search term it appears in white.  However, I get no results from my inquiry (I typed in "photo", among others).  Anything else I could try?  Help was never very helpful, but at least it was someplace to start....

  • The Flash Help Search doesn't work

    Do I need to reinstall my flash ? I installed flash 8
    professional on my machine about a month ago. i have just noticed
    that the search button in the help section doesn't do anything.
    what should i do?
    All the help content is there but the only way i can find
    help on the topic I need is by searching through all the books
    which is obviously not very efficient.

    I was having the same problem on one of my Macs. I resolved it by removing the two help preference files in my ~/Library/Preferences folder.
    Kirk

  • Applescript Help: Search for text in Safari DOM tree

    Im trying to make a script really similar what was asked here: Re: Find text in webpage and email notification applescript/automator Except instead of searching the "source code" of the page, I want the script to search the "DOM tree" for the page.
    To summarize, I am trying to make a script that loads a safari page, searches for a particular text in the DOM Tree, and if found will send me an email.
    Here is the code from the other thread I referenced:
    on idle
              set pagURL to "http://page.url.com?whatever"
              if application "Safari" is not running then
                        quit
                        return
              end if
              tell application "Safari"
                        set URL of document 1 of window 1 to "http://your.web.address/"
                        delay 5
      -- delay to let page load.
                        if source of document 1 of window 1 contains "search text" then
                                  my sendAMail()
                        end if
                        return 900 --fifteen minutes
              end tell
    end idle
    on sendAMail()
              tell application "Mail"
                        set theMess to make new outgoing message at end with properties {sender:"your name", subject:"some subject line", content:"The message you want to send to yourself", visible:true}
                        tell theMess
                                   make new to recipient at end of to recipients with properties {address:"[email protected]"}
                        end tell
      -- send theMess
              end tell
    end sendAMail
    Any help would be appreciated!

    For the URL you quote as an example (http://www.sislands.com/coin70/week2/NestedLoops1.htm), using text instead of source worked for me:
    if text of document 1 of window 1 contains "1  2  3  4" then
    another example:
    if text of document 1 of window 1 contains "10 12 14 16" then
    Note a double space between single digits (1  2  3  4) and a single space between double digits (10 12 14 16) is required for a match as per the table format:
    Any full line:
    if text of document 1 of window 1 contains "for (i = 1; i <= 10; i++) { // when i = 10" then
    or partial line works:
    if text of document 1 of window 1 contains "; i++) { // when i = 10" then

  • When I enter a subject in the help "search box" and enter, it does not go to the subject but goes back to the screen before I clicked on the help option at the top of the screen

    I cannot get thehelp option to work. When I click on the help option at the top of the screen, I get the page with the Search option, but when I enter a subject to search, tescreen returns me to the point where I started before clicking on "help". Is the help file corrupted? How can I fix?

    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • NEED HELP Search with SAF/TREX

    Hello Gurus,
    I have to work on standard screen in that they are fetching database and extracting the data by using CL_CRM_EI_IIA_QUERY_UI class. In this calss they are using SET_QUERY, GET_QUERY, GET_TEXT_QUERY, SET_TEXT_QUERY,CREATE_TEXT_EDITOR methods.
    I have to add three more fields to this existing screen and ned to add these field values in the search process. I am trying to understand the code and they have not used any select statement. can you pelase help me how to use the above class and for my requirement..
    the screen which i am trying to change is CIC0 transaction in CRM win client in FAQ tab knowledge search screen.
    what is the  SAF/TREX
    Please help me on this issue.
    regards

    i purchased from a lady off Etsy..she sent it to me in PDF. EPS.
    and Adobe format.
    i was on my mobile device earlier when i wrote the first post.
    I can open the file up in adobe. BUT it has a grey and white checkered background and is very large text.
    I somehow got it to actually open like a watermark on a photo last nite but the tex was so big it only came across as 2 letters..
    I can post the files anywhere just let me kno ..im not sure if they was done wrong or I just am that computer illiterate..which I can believe..i have been robbed quite a bit on logos and blah blah..
    I mean no aggravation to anyone, i just dont have a clue where to turn to and get "LEGIT" answers and thats what I need so thats why Im here ..

Maybe you are looking for