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

Similar Messages

  • Help for search help and currency and quantity fields

    hi,
    please help me for creating search help and when the currency and quantity fields are used please expalin this with steps as i am a learner..
    regards
    raj.

    Hi Rachu,
    Welcome To SDN
    Help On Search Help
    Go to se11
    Select radio button Search help
    click on create
    and select elementary seacrh help
    selection method---->tablename or viewname
    press f1 in search help exit we will get a FM named as
    F4IF_SHLP_EXIT_EXAMPLE.copy that FM from se37 in to Zprogram.we have a record_tab for copying the view by using this tab we can restrict the values from the view or table.this values are populate into another table .Then ,
    come to se11
    and in our seacrh help we will pass components of the search help
    Source: https://forums.sdn.sap.com/click.jspa?searchID=14985345&messageID=5618016
    Help On Currency and Quantity Fields:
    Whenever you have to maintain fields for currencies and quantites u need to refer them to currency key and quantity key which also have to be present in the table.
    If suppose you are creating a table for Employee. And suppose that fields would be like :
    EMPID -
    employee id
    EMPNAME
    employee name
    DEPARTMENT --- department
    SALARY -- salary ( Data Type u2013 CURR )
    WEIGHT -
    weight of the employee ( Data Type -- QUAN )
    Now the fields SALARY AND WEIGHT fields should refer to currency and quantity keys. So you need to have two more fields like
    CURRKEY --- Data Type ( Cuky )
    Quantity --- Data Type ( Unit )
    Now we have to attach the field Currkey to the field Salary
    And the field Quantity to the field Weight
    So when u create a table you can see a tab Currency / Quantity fields.
    Here You can give the reference table and the reference field against the salary and weight fields.
    Source: https://forums.sdn.sap.com/click.jspa?searchID=14985456&messageID=5692074

  • 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

  • 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*************

  • 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.

  • Predefine values for search-help of GL-Account

    Hello,
    we're using SRM on an ERP-backend. Within the shopping-site you can define the GL-Account (SAKTO) which also has a search help. In ERP i predefined the values used in the search-help (KTOPL, PLANT etc) by using a search-help exit. Now i need todo the same in SRM but i cant find the right place todo that.
    I dont even find a search-help that might be used for that. Does this work differently in SRM ? Does that all goes over the backend ?
    Could someone lease help me by telling how can i set these values for the search-parameters of the search-help and maybe also whats the name of the search-help of GL-Account in SRM ?
    Thanks alot...any help will get rewarded.
    oliver

    Hi Oliver,
    Check the Search Help BADIs below:
    a. You can use this Business Add-In (BAdI) BBP_F4_READ_ON_ENTRY to influence the display of input and search helps and to control the favorites for display fields. The processing is only available for data elements for which input helps exist on HTML templates. In this way, you can define field values for an input help and define the number of field values too.
    b. You can use the Business Add-In (BAdI) BBP_F4_READ_ON_EXIT to restrict (or augment) the list of values and favorites that are output in the input and search helps. You can only process data elements for which input helps exist on HTML templates. The following three BAdIs are also available:
    Navigate through SRM Server> Technical Basic Settings> Business Add-Ins (BAdIs)> Interface Configuration> Input Helps and Search Helps...
    Cheers.

  • Need help on search help

    Hi Gurus,
    On the selection screen report, if a person press f4 on a field bplan then a list of possible entries are displaying.
    I have to add two more entries in that list. How to do? I didnt find anything that happeneing in the report for displaying this possible entries.
    I checked the table for the field bplan  which is displaying the possible values by pressing f4 on that field in the selection screen of the report.
    I went into the field, i didnt find any check table or value table. Then I checked for search help for the table through se11. then I found the field with the search help exit Z_F4IF_SHLP_EXIT_ZHRBPLAN. when I went inside I dont find any code related to possible entries.
    Can any one suggest how to add to new values in the possible list.?

    Declare Select-options/Parameter S_BPLAN where you want the F4 help.
    Create an internal table with field BPLAN.
    Fill the internal table using Select on table T5UBA.
    Append the 2 extra entries into the table.
    Call the FM
    Pass field name 'S_BPLAN' to exporting parameter retfield.
    Pass internal table to tables parameter value_tab.
    Thats it.
    Hope it helps.
    Lokesh
    Pls. reward if it helps.

  • Managed Bean Help for Definition Help

    I am working on creating Managed Bean Help for Definition Help as described in ‘19.5.3 How to Create Managed Bean Help’ section of the Web User Interface Developer's Guide fpr ADF. Using JDev Version 11.1.2.1.0.
    Thought I had all the artifacts assembled but when I run the log message is: <ELHelpProvider> <_getTranslationMap> ELHelpProvider's helpSourceExpression is null.
    Any suggestions would be greatly appreciated.
    Here is the managed bean:
    public class ELHelpProviderProjRequest extends ELHelpProvider {
        public ELHelpProviderProjRequest() {       
        /* To use the HelpProvider, the EL expression in the helpTopicId attribute must point to a Map, otherwise
           * you will get a coerceToType error. */
        public Map<String, String> getHelpMap()
              Iterator iterator = _HELP_MAP.entrySet().iterator();                
              while(iterator. hasNext()){       
              System.out.println("hash map entry " + iterator.next());
            return _HELP_MAP;
        static private final Map<String, String> _HELP_MAP = new HashMap<String, String>();
            static {
              // each element [put] can be for a separate helpTopicId attribute
              _HELP_MAP.put("MAPHELP_CATEGORY_CAPITAL_DEFINITION", "Map value for credit card definition");
              _HELP_MAP.put("MAPHELP_CATEGORY_OTHER_DEFINITION", "Map value for credit card instructions");         
    }  Here is the adf-setting.xml in Application sources / META-INF:
    <?xml version="1.0" encoding="windows-1252" ?>
    <adf-settings xmlns="http://xmlns.oracle.com/adf/settings" > 
      <adf-faces-config xmlns="http://xmlns.oracle.com/adf/faces/settings">
      <help-provider prefix="MAPHELP_">
        <help-provider-class>   
            com.corpnet.abc.util.ELHelpProviderProjRequest
        </help-provider-class>
        <property>
          <property-name>helpSource</property-name>
          <value>#{helpTranslationMap.helpMap}</value>
        </property>
      </help-provider>
    </adf-faces-config> 
    </adf-settings>Here is the faces-config:
    <managed-bean>
        <managed-bean-name>helpTranslationMap</managed-bean-name>
        <managed-bean-class> com.corpnet.abc.util.ELHelpProviderProjRequest </managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
      </managed-bean>Here is the helpTopicId in the inputText component:
    <af:inputText value="Test" inlineStyle="font-weight: bold;" id="it31" simple="true" helpTopicId="MAPHELP_CATEGORY_CAPITAL" readOnly="true"/>

    Register the managed-bean as a help provider in the adf-settings xml like:
    Example 19-9 Registering a Managed Bean as a Help Provider
    <adf-settings xmlns="http://xmlns.oracle.com/adf/settings">
    <adf-faces-config xmlns="http://xmlns.oracle.com/adf/faces/settings">
    <help-provider prefix="MAPHELP_">
    <help-provider-class>
    oracle.adf.view.rich.help.ELHelpProvider
    </help-provider-class>
    <property>
    <property-name>helpSource</property-name>
    <value>#{helpTranslationMap.helpMap}</value>
    </property>
    </help-provider>
    </adf-faces-config>
    </adf-settings>
    As you've pointed out, Review section 19.5.3 for more details -> http://docs.oracle.com/cd/E24382_01/web.1112/e16181/af_message.htm#CHDHIGIA
    You could also investigate use the OHW product available here: http://www.oracle.com/technetwork/developer-tools/help/index-083946.html

  • SVS, EVS, and OVS, Value Help and Search Help

    what and how to use SVS, EVS, and OVS, Value Help and Search Help  in abap webdynpro...Can anyone please give example link or document...As i am able to get on ovs but unable to get rest of other

    SVS and EVS are Web Dynpro Java specific types of value help.  They do not exist in Web Dynpro ABAP.  In Web Dynpro ABAP we have Data Dictionary based Search Help, OVS, and Freely Programmed Value Help.  In WDA 7.02 we have the slight variant on DDic Search Help called Suggest Values.  It doesn't change the development model, just the runtime user experience. 
    You can read more about each of the types of WDA based value help in the online help:
    http://help.sap.com/saphelp_nw73ehp1/helpdata/en/47/9b298c66eb3376e10000000a421937/frameset.htm

  • Help views ( search helps) in tables

    Hello Experts,
    we are creating customized infotypes.Can anyone tell me how to create help views ( search help ) in tables.
    Regards,
    Shilpa.

    Helli Shipa
    You can create the search helps via se11 transaction and then attach the seach help from the field in table
    Regards
    Sonu Gupta

  • 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.

  • 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

  • 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.

  • 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

  • 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.

Maybe you are looking for

  • Error while starting  Soa Managed server on weblogic11g

    Hi All, I am facing one issue while starting the soa managed server on weblogic11g. it gives error like : "<Error> <Socket> <BEA-000405> <Uncaught Throwable in processSockets java.lang.NoClassDefFoundError: java/lang/IOException. java.lang.NoClassDef

  • Solaris Management Console question

    Just wondering. I have tried to use the Solaris Management console several times. I have a solaris 10 box setup with a fress full install and when I launch the console the window comes up: ====================================== Configuring the manage

  • Precalcuting Data for a Web Template

    Hi,       I have a Web Template that I am precalculating and the template has a parameter setup in Reporting Agent Setting.  The parameter was set up by basically copying the part of the Web Template URL that specifies the default variable values.   

  • Cant get contacts and calendars to sync to ipod nano

    when I sync my nano to my macbook itunes, all music and photos copy, but my contacts and calendars (selected) look like they copy, but when done, the nano does not have any contacts or calendars. this happened occasionally for a while, but now it nev

  • Errors with mail

    I have updated both my macbook Pro and my 27inch iMac to Yosemite. When I get e mails there is no problem with my macbook pro but with my iMac for some reason I don't get some of the emails. I get the title of the email but I do not get the email con