Function for search help

Normally you relate a search help to a input box and let SAP to handle the F4. So after selecting a value, this value will be returned to the input box.
But i want to react on the value and don't put it automatically in the box, but process it first.
So my question is : is there a function module or class-method that simulates the search help for a given input and returns the chosen value ?
regards
Hans
[email protected]

Hi
As Sergei told, it needs some further coding. I do not know a way to interfere standart search help functions even there is something like "Search help exit", I think it is just an exit for the search help designer about adjusting column widths etc... interfering standart action.
So it seems you should code your own POV in this case. There has been two long threads in this forum. You can search it. It is about coding POV and deals with "F4IF_FIELD_VALUE_REQUEST"/"F4IF_INTTAB_VALUE_REQUEST". Here are the URLs:
1. Re: POV : TableControl Multi-line User selection
2. Re: POV : SAP User Input F4 Value Help
Hope this helps...
*--Serdar

Similar Messages

  • F4 functionality for search help

    Hi all,
    Am  having two select options for cost center groups and for cost centers (s_ksgru and s_kostl ). If i give value in cost center group and after that if i press F4 for cost center it has to display  the cost centers that comes under the given cost center group.
    i wrote code as :
    AT SELECTION-SCREEN  ON S_KSGRU.
    Bapi to get list of cost centers for given group
    CALL FUNCTION 'BAPI_COSTCENTER_GETLIST'
          EXPORTING
            CONTROLLINGAREA = 'AFIL'
            COSTCENTERGROUP = S_KSGRU-LOW
          TABLES
            COSTCENTER_LIST = I_COSTCENTER_LIST.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_KOSTL-LOW.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD               = 'COSTCENTER'
         VALUE_ORG              = 'S'
        MULTIPLE_CHOICE        = 'X'
        TABLES
          VALUE_TAB              = I_COSTCENTER_LIST1
         RETURN_TAB             = RET_TAB.
      MOVE RET_TAB-FIELDVAL TO S_KOSTL-LOW.
    CLEAR RET_TAB-FIELDVAL.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_KOSTL-HIGH.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD               = 'COSTCENTER'
         VALUE_ORG              = 'S'
        MULTIPLE_CHOICE        = 'X'
        TABLES
          VALUE_TAB              = I_COSTCENTER_LIST1
         RETURN_TAB             = RET_TAB.
      MOVE RET_TAB-FIELDVAL TO S_KOSTL-HIGH.
      CLEAR : RET_TAB-FIELDVAL.
      S_KOSTL-SIGN = 'IN'.
      S_KOSTL-OPTION = 'EQ'.
    APPEND S_KOSTL.
    This code is working fine.
    But after giving cost center group in select-options
    again i have to press enter..and then if i press F4 its displaying all the values..
    If i wont press enter its throwing error No inputu values...
    But i want to get F4 values without presing enter.
    Will u plz tell me where to correct the code.
    Its very urgent.
    Thanks and Regards,
    Ramya

    Hi abaper,
    1. The entered value on screen
    IS NOT AVAILABLE
    if we try to detect in
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR MYFIELD.
    2. In such case, we have use the FM
    DYNP_VALUES_READ
    3. To get a taste of this,
    enter value in P_MONAT,
    and it won't be available in F4. (in debuggin)
    But it will be available, after the Fm is called.
    4. Just copy paste
    5.
    report abc.
    PARAMETERS: p_monat LIKE bkpf-monat DEFAULT sy-datum+4(2).
    data : flds like DYNPREAD occurs 0 with header line.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_MONAT.
    REFRESH FLDS.
    FLDS-FIELDNAME = 'P_MONAT'.
    APPEND FLDS.
    CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
    DYNAME = SY-REPID
    DYNUMB = SY-DYNNR
    TRANSLATE_TO_UPPER = ' '
    REQUEST = ' '
    PERFORM_CONVERSION_EXITS = ' '
    PERFORM_INPUT_CONVERSION = ' '
    DETERMINE_LOOP_INDEX = ' '
    TABLES
    DYNPFIELDS = flds
    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
    BREAK-POINT.
    field value is available in FLDS-FIELDVALUE
    regards,
    amit m.

  • Crash on search function for HTML Help file (.chm) when connected to a Visual C++ application

    Crash on search function for HTML Help file (.chm) when
    connected to a Visual C++ application
    I use the RH_ShowHelp API command to connect a HTML Help file
    (.chm file generated by RoboHelp Word X 5) to my Visual C++
    application. My application is able to call up this HTML help file
    in context-sensitive mode and everything is working great in the
    Contents and Index panels EXCEPT when I click on List Topics (after
    I enter a KEYWORD for search) in the Search panel.
    I got an error that said “Unhandled exception in
    xxxx.exe.(HHCTRL.OCX):0xC00000FD: Stack overflow”
    I am able to execute this .chm file by itself and the search
    function works well in this case. I am using HHActiveX.dll that is
    created on 2/23/04. Is this the correct version?? Any advice what
    to do here??

    Hi agschin and welcome to the RH forums. The hhactivex.dll
    file is not used by the search function so you can rule that our.
    Have you tried recompiling and seeing if the problem still happens?
    You can also start the Bug Hunter feature in RH - View > Output
    View and then select the Bug Hunter button - and see if that throws
    up any clues.

  • Function Module for search help Exit

    How to create a function Module for search help exits?
    please explain in details with step by step process.

    Hi,
    How to create a function Module for search help exits?
    function module for search help F4IF_SHLP_EXIT_EXAMPLE
    dynamic search help use 'F4IF_INT_TABLE_VALUE_REQUEST'
    please check out the link below it will help you
    A repository object maintained in the ABAP Dictionary. It supplies input fields on Dynpros with single- or multi-column input helps. Search helps can be linked in the Dictionary with components from structures, data elements, and check tables. A search help enables you to search for entry values with assigned data, without you having to know the exact spelling of the value.
    http://help.sap.com/saphelp_46c/helpdata/EN/cf/21ee52446011d189700000e8322d00/content.htm
    please explain in details with step by step process.
    create a search help exit:
    1. create an fm with this interface:
    *" TABLES
    *" SHLP_TAB TYPE SHLP_DESCR_TAB_T
    *" RECORD_TAB STRUCTURE SEAHLPRES
    *" CHANGING
    *" VALUE(SHLP) TYPE SHLP_DESCR_T
    *" VALUE(CALLCONTROL) LIKE DDSHF4CTRL STRUCTURE DDSHF4CTRL
    put this logic in it:
    Delete duplicate filter logic.
    This logic only needs to apply at the 'DISP' event - which is just
    before the hit list is displayed
    if callcontrol-step = 'DISP'.
    delete adjacent duplicates from record_tab.
    endif.
    2. edit your search help in se11 and enter the name of the above search help exit fm
    check this sample code..for dynamic search help
    REPORT  ZTEST_F4HELP                              .
    *---Report with selection screen and to display the list of
    possible entries for field 'B' as per the value in field 'A'.
    parameters: p_vbeln type vbak-vbeln,
                p_posnr type vbap-posnr.
    at selection-screen on value-request for p_posnr.
      data: begin of help_item occurs 0,
              posnr type vbap-posnr,
              matnr type vbap-matnr,
              arktx type vbap-arktx,
            end of help_item.
      data: dynfields type table of dynpread with header line.
      dynfields-fieldname = 'P_VBELN'.
      append dynfields.
      call function 'DYNP_VALUES_READ'
           exporting
                dyname               = sy-cprog
                dynumb               = sy-dynnr
                translate_to_upper   = 'X'
           tables
                dynpfields           = dynfields
           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.
      read table dynfields with key fieldname = 'P_VBELN'.
      p_vbeln = dynfields-fieldvalue.
      call function 'CONVERSION_EXIT_ALPHA_INPUT'
           exporting
                input  = p_vbeln
           importing
                output = p_vbeln.
      select posnr matnr arktx into table help_item
                     from vbap
                          where vbeln = p_vbeln.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
           exporting
                retfield    = 'POSNR'
                dynprofield = 'P_POSNR'
                dynpprog    = sy-cprog
                dynpnr      = sy-dynnr
                value_org   = 'S'
           tables
                value_tab   = help_item.
    also check this link it will help you
    /message/3854825#3854825 [original link is broken]
    *********please reward points if the information is helpful to you*************

  • Field values are repeating for search help.

    Hello Friends.
    I have a problem. When I create a search help for a field the identical field values are repeating. What should I do to trigger only the first time.
    for example:
    <u>Field-name</u>-                        <u>field-value</u>
    Supplier Nr ---                                 Commodity
    5001 -
                                               casting
    5002 -
                                               casting
    5003 -
                                               casting
    So when I create the search help for commodity it is showing 'casting' 3 times in a pop-up window. It should not repeat. Can you please give me the solution what should I do?

    Hi
    Search helps
    Standard search help
    Types of search helps
    Concept of search help
    Search Help Interface
    Dialog behavior of search helps
    Selection method for search helps
    Performance of search helps
    Attaching search helps
    Hierarchy of search helps
    Standard Search Help
    The input help (F4 help) is a standard function of the R/3 System. It permits the user to display a list of possible values for a screen field. A value can be directly copied to an input field by list selection.
    The fields having an input help are shown in the R/3 System by the input help key to the right of the field. This key appears as soon as the cursor is positioned on the corresponding screen field. The help can be started either by clicking on this screen element or with function key F4.
    If the number of possible entries for a field is very large, you can limit the set of displayed values by entering further restrictions.
    Further meaningful information about the displayed values is included in the display of possible entries, especially if the field requires that a formal key be entered.
    TYPES OF SEARCH HELPS
    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).
    Collective search help
    Combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    Search Help Interface
    Search help interface determines how the exchange of values between the screen template and the selection method is implemented.
    The search help interface defines the context data that can be used in the input help and the data that can be returned to the input mask. Analogously to the interface of a function module, the search help interface comprises interface parameters.
    When you define an interface parameter of a search help, you must also define whether it should be used to copy data to the input help (IMPORT parameter) or whether it should be used to return data from the input help (EXPORT parameter). A parameter of a search help can also have both attributes at the same time.
    The location from which the IMPORT parameters of a search help get their values and the screen fields in which the contents of the EXPORT parameters of the search help are returned are defined in the search help attachment. The search help itself should always be attached to an EXPORT parameter of the search help. If this parameter is also the IMPORT parameter, its contents are only used in the input help if it is a search string (that is, if it contains a ´*´ or a ´+´).
    You must define the parameter types of a search help. You can do this by assigning them data elements.
    Value Transport for Input Helps
    NOTE:In the above example, screen fields A, B and C are linked with parameters of the search help. As a result, values can only be transported between the screen and the search help for these three fields. Existing contents of screen fields A and B can be used for selecting the hit list since they are linked with an import parameter of the search help. The values of parameters A and C can be returned to the screen from the hit list since these parameters are declared as export parameters of the search help.
    Description of dialog behavior
    A hit list might contain plentiful number of entries. A
    dialog provides the user with an option to restrict the
    entries displayed on the hit list.
    In an input help process, the set of possible entries is presented in the dialog box as a list for displaying the hit list. The user selects the required value from this list by double clicking. Since the possible entries are often formal keys, you must be able to display further explanatory information about the possible entries in the list.
    If the set of possible entries is very large, the user should be able to define additional conditions for the attributes of the selected entry. Restricting the set of data in this way both increases the clarity of the list and reduces the system load. Additional conditions can be entered in a further dialog window, the dialog box for restricting values.
    Specifying the dialog type of a search help defines whether the dialog box for restricting values should be offered and if so under what conditions.
    The attributes in the dialog box for displaying the hit list or in the dialog box for restricting values must be defined as internal parameters of the search help. An internal parameter can also be used in only one of the two dialog boxes. It can also belong to the search help interface.
    The internal parameter types are also defined with data elements. These data elements define how the parameters are displayed in the two dialog boxes.
    Reward if usefull

  • How to do program for search help

    Hi,
    Please tell me how to do the program for search help in Dialog programming.
    Thanks,
    Sriram.

    Step 1:
    Create a function module (ZZ_TEST_FUNCTION).
    Step 2:
    --> Create a search help(ZSEARCH)
    --> Enter the above function Module(ZZ_TEST_FUNCTION) in search help exit field.
    STEP 3:
    Attach the search help with any field of table.
    Function module Sample Code:
    FUNCTION ZZ_TEST_FUNCTION.               
    ""Local interface:                    
    *"       IMPORTING                 
    *"             VALUE(MCONAME) DEFAULT SPACE *"             VALUE(SELSTR) DEFAULT SPACE
    *"       TABLES                      
    *"              SHLP_TAB TYPE  SHLP_DESCR_TAB_T
    *"              RECORD_TAB STRUCTURE  SEAHLPRES
    *"       CHANGING                   
    *"             VALUE(SHLP) TYPE  SHLP_DESCR_T *"             VALUE(CALLCONTROL) LIKE  DDSHF4CTRL 
    *"                             STRUCTURE  DDSHF4CTRL
    CALL SCREEN 100.
    Return from application back to SAP                   
      CASE save_ok_0100.                                    
        WHEN 'RSTR'.                                        
          callcontrol-step = 'SELONE2'.                     
        WHEN 'CANCEL' OR 'BACK' OR 'EXIT'.                  
          callcontrol-step = 'EXIT'.                        
        WHEN 'SEL'.                                         
            READ TABLE itab.                 
            record_tab = itab-filed1.           
            APPEND record_tab.                              
            callcontrol-step     = 'RETURN'.                
           EXIT.                                           
          ENDIF.                                            
      ENDCASE.                                              
    ENDFUNCTION.

  • Function to create Input Dialog for Search Help

    Hi Folks,
    Is there any function to create the dialog to limit the search help result as the one that appears when you create the Search Help through the SE11.
    This is because when I use F4IF_FIELD_VALUE_REQUEST I'm just being able to set one value to restrict and hopefully the functionality of intervales, exclusions, etc that the search help dialog when created through the se11 does have and haven't found it on F4IF_INT_TABLE_VALUE_REQUEST.
    If you can share a little example I really appreciate it.
    Thanks in advance.
    Regards,
    Gilberto Li

    Hi
    You can accomplish by using search help exits..... search the forum by "Search help exit" and check my wiki on search help exit code.

  • Transactional Iview passing parameters for search help window

    Hi Experts,
    I have to create a transaction ivew through which i need to pass parameters to search help window (having two entries ). In has to select the particular entry and then go to next step.
    Can somebody give me guide me how to do it as i couldn't fine correct answer in the existing forum answers.
    Regards,
    Suresh

    Hi Suresh,
    Have you read the [documentation|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/88/266a3e54a2e946e10000000a114084/frameset.htm]?
    >ApplicationParameter
    >
    >You can enter parameter values for certain screen fields for displaying a SAP transaction here.
    >This field is optional.
    >
    >The parameter values are specified with the following syntax:
    >
    ><Screen_field1>=<Parameter1>
    >&<Screen_field2>=<Parameter2>
    >&<...>=<...>,...
    >
    >Process First Screen
    >
    >The possible values are trueand false. By default this field is defined as false. It is a required field.
    >
    >If the value is set to true, this corresponds to the input key function in the transaction. It takes effect if there are no required >fields in the transaction or if all the required values are maintained in the ApplicationParameter property.
    Regards,
    Pierre

  • Does the search template provide a date picker function for searching?

    I cannot find a date picker function for this type of search, can anyone help me with this? Thanks.

    Try a copy/paste some of the Greek text out into Word. Does it display as expected in Word?

  • Some 'Help' for Search help

    Hi all! this time i need a simple thing. I have two parameters p_vblnr and p_chect.The firstone has a Search help that i did with se11 and the second one has a standard search help for chects. I want to create a search help for p_chect that only visualice the values related to p_vblnr parameter and <b>replace the standard search help for that field</b>.
    Ej: if p_vblnr is '10021562' i want the search help to visualice the chects related to that vblnr.
    is this possible??????
    i promise rewards points for help!!!!
    thank in advance!

    Andrew,
    Try following sample code.
      CLEAR: t_dynp_flds,
             t_dynp_flds[].
      t_dynp_flds-fieldname = 'LFA1-STCD1'. " ur first parameter
      APPEND t_dynp_flds.
      CLEAR  t_dynp_flds.
    *---  Read screen field values before PAI field transport
      CALL FUNCTION 'DYNP_VALUES_READ'
           EXPORTING
                dyname               = 'ZFFI'
                dynumb               = '1000'
           TABLES
                dynpfields           = t_dynp_flds
           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 t_dynp_flds WITH KEY fieldname = 'LFA1-STCD1'.
        IF sy-subrc EQ 0.
          MOVE t_dynp_flds-fieldvalue TO lfa1-stcd1.
        ENDIF.
      ENDIF.
      IF NOT lfa1-stcd1 IS INITIAL.
        g_stcd = lfa1-stcd1.
    Clear fields
        CLEAR : t_taxid1,
                t_taxid1[].
        t_taxid1-gap2 = space.
    Select vendor and taxids from Vendor Master table
        SELECT lifnr
               name1
          FROM lfa1
          INTO (t_taxid1-lifnr, t_taxid1-name1)
          WHERE stcd1 <> g_stcd AND
                stcd2 <> g_stcd AND
                stcd3 <> g_stcd.
          APPEND t_taxid1.
          CLEAR  t_taxid1.
        ENDSELECT.
        IF sy-subrc NE 0.
      No table entries found
          MESSAGE s001(zffi).
          EXIT.
        ENDIF.
        SORT t_taxid1 BY lifnr.
        DELETE ADJACENT DUPLICATES FROM t_taxid1 COMPARING lifnr.
        CLEAR : g_pop_idx.
    Function module to get Tax code values
        CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
             EXPORTING
                  endpos_col   = 85
                  endpos_row   = 20
                  startpos_col = 20
                  startpos_row = 10
                  titletext    = 'List of Assign Vendors'(t11)
             IMPORTING
                  choise       = g_pop_idx
             TABLES
                  valuetab     = t_taxid1
             EXCEPTIONS
                  break_off    = 1
                  OTHERS       = 2.
        IF sy-subrc EQ 0.
          READ TABLE t_taxid1 INDEX g_pop_idx.
          IF sy-subrc EQ 0.
            CLEAR : t_dynp_flds,
                    t_dynp_flds[].
        Append screen values
            t_dynp_flds-fieldname = 'G_LIFNR'.
            t_dynp_flds-fieldvalue = t_taxid1-lifnr.
            APPEND t_dynp_flds.
            CLEAR  t_dynp_flds.
        Change screen field contents w/o PBO
            CALL FUNCTION 'DYNP_VALUES_UPDATE'
                 EXPORTING
                      dyname               = 'ZFFI'
                      dynumb               = '1000'
                 TABLES
                      dynpfields           = t_dynp_flds
                 EXCEPTIONS
                      invalid_abapworkarea = 1
                      invalid_dynprofield  = 2
                      invalid_dynproname   = 3
                      invalid_dynpronummer = 4
                      invalid_request      = 5
                      no_fielddescription  = 6
                      undefind_error       = 7
                      OTHERS               = 8.
            IF sy-subrc NE 0.
              CLEAR : t_dynp_flds,
                      t_dynp_flds[],
                      lfa1-lifnr,
                      lfa1-stcd1,
                      lfa1-name1.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    -Anu

  • Syntax for search help

    What is the syntax to link a search help to a parameter?

    Hi, Venus.
    try with the following Code it will solve your problem i think,
    PARAMETERS: ppernr(8) TYPE c.
    DATA: i_return TYPE ddshretval OCCURS 0 WITH HEADER LINE,
          c TYPE c VALUE 'S'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR ppernr.
      TYPES: BEGIN OF t_sh_rsmid,
        pernr LIKE pa0001-pernr,
        ename LIKE pa0001-ename,
      END OF t_sh_rsmid.
      DATA: it_sh_rsmid TYPE STANDARD TABLE OF t_sh_rsmid WITH HEADER LINE.
      SELECT DISTINCT pa0001~pernr pa0001~ename
        INTO CORRESPONDING FIELDS OF TABLE it_sh_rsmid
        FROM pa0001
        where pa0001~endda = '99991231' .
      SORT it_sh_rsmid BY pernr.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'PERNR'
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = 'pernr'
          value_org   = c
        TABLES
          value_tab   = it_sh_rsmid
          return_tab  = i_return.
    replay if any problem related to this,
    kind Regards,
    Faisal

  • Custom Screen for Search Help

    HI,
    I have designed the Search Help in SE11.
    Its working fine.
    When executed, it pops up the screen for input search criteria.
    My question is : is it possible to have this popup screen as our own customised screen.
    Can we add some Heading and Subheadings to it?
    If yes, please let me know how can we do this.
    Thanks in advance.

    HI,
    I have designed the Search Help in SE11.
    Its working fine.
    When executed, it pops up the screen for input search criteria.
    My question is : is it possible to have this popup screen as our own customised screen.
    Can we add some Heading and Subheadings to it?
    If yes, please let me know how can we do this.
    Thanks in advance.

  • BAPI for Search Help

    Hi Experts!!
    How to create Search help using BAPI ?
    My scenario is: In webdynpro same bapi can be called to find possible f4 value.
    How to do that ? Any Idea pls share ...
    Thanks In Advance.

    This is how u can create "Search Help" for the fields of the ztables that u have created.
    SE11- Create Search Help for 1 field, "Selection Method" box put the Table name to which the field belongs to. "Dialog Type" box write: "Display Value Immediately".
    Search Help Parameter is the Field name for which u want the Help. Tick Imp & Exp options and assign LPOS = 1 and Enter. , save and Activate.
    SE11- Go to the table , Click on the Field that needs to be assigned a search Help....Click at the left side of the Field so that all the corresponding data Elements, Key field etc also gets selected.
    Click on the "Search Help tab" just above the "Data Type " column.
    Put the "Search Help" name that u just created. Mention the Field and Enter. it takes up the required values. Now Copy.
    U can repeat the process for whatever fields u want to assign a Search Help.
    se51- Go to Screen Painter, Select Fields from Dictionary table to which u want search help to be assigned.
    Double click on the Text box of the corresponding field,......> Screen Painter Attributes.......> Search help Text box.........> Enter the name of the Search help that u created for a field.
    Ok....>Save.........> Activate
    http://fuller.mit.edu/tech/search_helps.ppt#260,5,Simple
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee52446011d189700000e8322d00/frameset.htm
    Regards.

  • ESS PORTAL Timesheet; Increase visible rows for Search help from 5 to 8

    Hi,
    My requirement is to increase the number of rows of Search help. Currently It is displaying 5 row. I need to increase it to 8.
    Thanks.

    check note  957741 for code changes for timesheet grid, similarly you need to do for Searchj help there is no customisation
    Use  build_f4_help Method in the class CL_XSS_CAT_RFC_COMMAND_TOOLS
    check here
    attributes to the "private" part of the CL_XSS_CAT_VALUE_HELP**
      class-data META_INFORMATION_T type DDFIELDS.
      class-data HEADER_T type HRXSS_CAT_VALUE_HELP_HEADER_T.
      class-data SELECTION_T type HRXSS_CAT_RFC_FIELDLIST.
      data FIELDNAME type FIELDNAME.

  • Generic problem for search help without values

    Hi,
    Always I open a search help without values I get the warning popup "No values found" but after this no link let me come back to the previous screen.
    Does anybody know how I can solve this (in a standard way)
    thanks
    regards

    Hi
    It seems to be a bug in the system.
    <b>Please have a look at the following SAP OSS Notes -></b>
    <u>Note 574604 - Various correction reports for EBP business partner
    Note 1028643 - Input help for contact persons in purchase order
    Note 843008 - EBP4.0 and higher: Terms of Payment, Texts and codes
    526416 Structural enhancements LFA1
    698246 EBP 4.0 address maintenance: Default address for address use
    701321 EBP 3.5 address maintenance: Default address for address use
    701323 EBP 3.0 address maintenance: Default address for address use
    701384 BBP 2.0C address maintenance:Default address for address use
    690619 Plants are not transferred during location replication
    641960 New processing of terms of payment in EBP 3.5
    628386 Incorrect link for EBP for 'External business partners'
    Note 544392 Error in search helps EBP 2.0
    Note 544816 Error in search helps EBP 3.5
    Note 544713 Error in search helps EBP 3.0</u>
    Please raise a customer OSS message with SAP as well.
    Regards
    - Atul

Maybe you are looking for

  • Photoshop CC

    When I try to open Photoshop CC, and after it goes through the initializing process it flashes up  'Photoshop has stopped working' and shuts itself down, this is also happening to my CS3 which I have had for years, both worked OK up till last monday.

  • How do I import my passwords and bookmarks from a backup on the desktop after a fresh install of the new Firefox 9

    I had problems with an older version of Firefox so I backed up my passwords and backed up my bookmarks and put the backup files on my desktop and then reinstalled a the new Firefox 9.. I cannot find out how to reinstall the passwords or bookmarks int

  • How do i resolve an issue where i have run out of application memory?

    My imac says i have run out of application memory and that i should quit applications. How do i resolve this issue?

  • Hebrew in reports 11g

    i can not see hebrew in pdf reports i set nls_lang in registry HEBREW_ISRAEL.IW8ISO8859P8 and open [PDF SUBSET] in \uifont.ali in ORACLE_INSTANCE\config\FRComponent\frcommon\guicommon\tk\admin

  • Alarm clock feature

    I use Pandora for my morning alarm clock and honestly, I listen to Spotify more. I kinda keep Pandora around for the Alarm clock. I think it would be a great idea to bring to Spotify (at least the app) an Alarm clock feature to extend my music variet