F2 on search help popup

Hi,
I'm looking at product group Id field in the TPMOE/PRODUCTGROUPEOL. How can I get the technical details (component name view name etc..) on the search help popup that comes up when you do input help on this field. (Can't do F2 ??)
I need this information to trigger a popup(same product group popup) on the click of a custom button that I have in some other custom view (assignment block).
Thanks
Sreesanth

Hi Sreesanth,
This is not a normal F4 search help in which we re-use some other component. If you see the code in method GET_V_PGRP_ID, we are dynamically creating the F4 help by calling the constructor of class cl_crm_mktpl_vh_bol_proxy and passing the attribute-iv_fieldname      = 'PGRP_ID'
Based on this attribute, the dynamic F4 help is generated. If you see in the code, also no outbound plug is called.This means we are not using any component usage over here.
Hope this clears some of your doubts.
Thanks and Regards,
Rohit

Similar Messages

  • Search help for SKAT-SAKNR OR SKAT-SAKNR is not working

    Hi All,
    I have created a Search Help for F4 in a dialog program for SKAT-SAKNR OR SKAT-SAKNR. While i click F4 on that field, it displays blank values.
    Here is the module:
    module HELP_FOR_SAPGL_ACC input.
      CLEAR t_SAPGL.
      SELECT  SAKNR TXT20
        FROM  SKAT
        INTO  CORRESPONDING FIELDS OF TABLE t_SAPGL UP TO 1000 ROWS
        WHERE SPRAS = SY-LANGU.
       WHERE L_GL_ACC = v_FIELD_VALUE-FIELDVALUE.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
        DDIC_STRUCTURE         = ' '
          RETFIELD               = 'SAKNR'
        PVALKEY                = ' '
         DYNPPROG               = PROGNAME
         DYNPNR                 = DYNNUM
         DYNPROFIELD            = 'SKA1-SKANR'
        STEPL                  = 0
        WINDOW_TITLE           =
        VALUE                  = ' '
         VALUE_ORG              = 'S'
        MULTIPLE_CHOICE        = ' '
        DISPLAY                = ' '
        CALLBACK_PROGRAM       = ' '
        CALLBACK_FORM          = ' '
        MARK_TAB               =
      IMPORTING
        USER_RESET             =
        TABLES
          VALUE_TAB              = t_SAPGL
        FIELD_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.
    endmodule.   
    In the above code I am selecting 1000 rows from SKAT table and in the Search Help Popup it is also displaying 1000 rows but all are blank.
    Please help me.
    Regards,
    Avaneet

    Hi check my weblog on search help exit codeing..
    https://wiki.sdn.sap.com/wiki/x/du0
    \* Prepare for output
    CALL FUNCTION 'F4UT_RESULTS_MAP'
    TABLES
    shlp_tab = shlp_tab
    record_tab = record_tab
    source_tab = lt_result
    CHANGING
    shlp = shlp
    callcontrol = callcontrol
    EXCEPTIONS
    illegal_structure = 1
    OTHERS = 2.
    IF rc = 0.
    callcontrol-step = 'DISP'.
    ELSE.

  • How to pass the default value to search help selection screen

    Hi
    I need to push a certain value as a default value based on a condition to the slection screen of search help in web UI.
    Could you please let me know how can we do this?
    When we try to open the 'F4' help in web ui then it should populate a certain value as a default value to the selection screen of this 'F4' help. We will get this  default value based on condition.
    Regards
    Anil

    Hi Arun
    I'm using SE11 search help.I'm giving you my code for your reference here.
    DATA:
        ls_map    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
        lt_inmap  TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
        lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
        lr_qs           TYPE REF TO cl_crm_bol_dquery_service,
        lr_current     TYPE REF TO if_bol_bo_property_access,
        lv_category    TYPE STRING.
      ls_map-context_attr = 'struct.zzattr_i_1'.
      ls_map-f4_attr      = 'ATTRIBUTE'.
      APPEND ls_map TO: lt_inmap,lt_outmap.
      CLEAR ls_map.
      ls_map-context_attr = 'struct.zzattr_i_1'.
      ls_map-f4_attr      = 'SERVICE_LINE'.
      APPEND ls_map TO: lt_inmap.
      CREATE OBJECT rv_valuehelp_descriptor
        TYPE
          cl_bsp_wd_valuehelp_f4descr
        EXPORTING
          iv_help_id                  = 'ZATTR1'
          iv_help_id_kind             = if_bsp_wd_valuehelp_f4descr=>help_id_kind_name
          iv_trigger_submit           = abap_true
          iv_input_mapping            = lt_inmap
          iv_output_mapping           = lt_outmap.
    Here 'ZATTR1' is my search help name in SE11 and the field which is having 'F4' help is 'ATTRIBUTE'.
    Now when I press 'F4' on 'ATTRIBUTE' then it will give a popup and this popup is having 3 fields..
    1.'ATTRIBUTE'
    2.'SERVICE_LINE'
    3.Description of 'SERVICE_LINE'  and hence by pressing 'F4' i should get a value in the field 'SERVICE_LINE' based on
       a condition.
    However, if there is a value for ATTRIBUTE on the screen and when we press 'F4' on this then in the popup the value of
    ATTRIBUTE which is there on the screen is appearing in the 'ATTRIBUTE' field  and the same value is being copied to
    'SERVICE_LINE' field in the popup.
    Please guide me how do we populate the value to 'SERVICE_LINE' field inside the search help popup of 'ATTRIBUTE'.
    Best Regards
    Anil

  • Issue in search help

    Hi,
        A search help which has search help exit is attached to a attribute in webdynpro.
    In search help exit default values are populated.
    When i click on F4, search help appears with default values coded in Fm exit. Selected one and added to personal list.
    Now returned to main screen. Clicked on F4. Personalised popup displayed. Clicked on all entries(General value list). Now the defaulted values(coded in FM) are not appearing.
    Could some one let me know whether any SAP note is available to fix this? I tried few. Not able to find it.
    Steps to replicate.
    1. Create a search help exit FM (by copying F4IF_SHLP_EXIT_EXAMPLE )
    2. Write coding to default values of the screen in PRESEL method
    3. Create a elementary search help and assign the created FM to it.Make this search help as Values with restriction.
    4. Create webdynpro with an attribute and attach the above search help
    5. Execute the webynpro. Click on F4 button. This will now show the defaulted value. Click on search and select one as personal list.
    6. Close the window
    7. Click on F4. Personalised search help popup will be displayed. Click on view all (General value list).
    The default values wont be populated.
    Regards,
    GN

    Did you check the screen field names & search help name? is it identical & unique?
    Raja T

  • Search help for screen fields in module pool

    Hi All,
    I have a screen in Module pool which has 3 input fields, each input field is attached to the same search help.
    These fields are from ztable . I have created a search help USING these 3 fields. All the 3 fields are marked for IMPORT and EXPORT.
    So whenever i click F4 on any of the above 3 fields, It will display search help popup and returns some rows...But the values are transfered back only for 1 fields ..i.e for the first field only .
    I want that ...as soon as i select any of the row from Search hit list..all the 3 columns should get populated with corresponding fields from that row.
    I require it this way as user wants to select based on * selection.Ex: as then every this related to that should be popped up.
    Pls help ASAP
    Thanks,

    This is how i got.
    data:l_shlp type SHLP_DESCR,
    l_rc type sy-subrc,
    w_DDSHRETVAL type DDSHRETVAL ,
    ls_shintf LIKE LINE OF l_shlp-interface,
    t_DDSHRETVAL type TABLE OF DDSHRETVAL.
    DATA: dyname LIKE d020s-prog,
    dynumb LIKE d020s-dnum.
    DATA: BEGIN OF dynpfields OCCURS 3.
    INCLUDE STRUCTURE dynpread.
    DATA: END OF dynpfields.
    CALL FUNCTION 'F4IF_GET_SHLP_DESCR'
    EXPORTING
    SHLPNAME = 'YTESTDMSSB'
    SHLPTYPE = 'SH'
    IMPORTING
    SHLP = l_shlp .
    ls_shintf-valfield = 'X'.
    MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
    WHERE shlpfield = 'SNNTX'.
    MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
    WHERE shlpfield = 'SBRTX'.
    MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
    WHERE shlpfield = 'SBSTX'.
    MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
    WHERE shlpfield = 'ENPTX'.
    MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
    WHERE shlpfield = 'PLANT_CODE'.
    CALL FUNCTION 'F4IF_START_VALUE_REQUEST'
    EXPORTING
    SHLP = l_shlp
    DISPONLY = ' '
    MAXRECORDS = 500
    MULTISEL = 'X'
    CUCOL = SY-CUCOL
    CUROW = SY-CUROW
    IMPORTING
    RC = l_rc
    TABLES
    RETURN_VALUES = t_DDSHRETVAL
    IF l_rc = 0.
    LOOP AT t_DDSHRETVAL INTO w_DDSHRETVAL.
    CASE w_DDSHRETVAL-fieldname.
    WHEN 'SNNTX'. "W_SNNTX = w_DDSHRETVAL-fieldval.
    dyname = sy-repid.
    dynumb = sy-dynnr.
    dynpfields-fieldname = 'W_SNNTX'.
    dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
    APPEND dynpfields.
    WHEN 'SBRTX'. "W_SBRTX = w_DDSHRETVAL-fieldval.
    dyname = sy-repid.
    dynumb = sy-dynnr.
    dynpfields-fieldname = 'W_SBRTX'.
    dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
    APPEND dynpfields.
    WHEN 'SBSTX'. "W_SBSTX = w_DDSHRETVAL-fieldval.
    dyname = sy-repid.
    dynumb = sy-dynnr.
    dynpfields-fieldname = 'W_SBSTX'.
    dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
    APPEND dynpfields.
    WHEN 'ENPTX'. "W_ENPTX = w_DDSHRETVAL-fieldval.
    dyname = sy-repid.
    dynumb = sy-dynnr.
    dynpfields-fieldname = 'W_ENPTX'.
    dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
    APPEND dynpfields.
    WHEN 'PLANT_CODE'. "W_ENPTX = w_DDSHRETVAL-fieldval.
    dyname = sy-repid.
    dynumb = sy-dynnr.
    dynpfields-fieldname = 'W_WERKS'.
    dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
    APPEND dynpfields.
    ENDCASE.
    ENDLOOP.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
    EXPORTING
    dyname = dyname
    dynumb = dynumb
    TABLES
    dynpfields = dynpfields.
    ENDIF.

  • Max, count of hits in search help

    Hi all,
    per default the maximum count of hits in a search help is 500. I know one can change that directly in the WD4A application, on the search help popup at settings. But is it possible to set this count to another value directly in SAP, system wide, for every user?
    Kind regards, Matthias

    You are correct that it appears that you can't change all of the system-wide defaults.  You can change the  Maximum Width and the Display type but not the max. number of hits to be displayed. 
    I did some digging and this value appears to be controlled by a constant c_maxrecords in the class CL_F4CUSTOM.  I tried changing this value after it is set in the CLASS_CONSTRUCTOR using the debugger.  It actually is possible, but only up to a value of 999.  If you go larger, you get a field overflow on the screen display field - so I assume the designer of this functionality never really intended for customers to change the value of this constant.

  • Use Of Dictionary Based search help in adobe interactive form

    Hi friends,
       I wanted to export the search help value into corresponding field of Adobe interactive form.
      I am using dictionary type search help in WD context attribute property.  I am able to get the search help popup with right data on form. But if select some value it is not exporting data into the field and getting "entry too longer"  error.
    Can any one help out for this issue.
    Note : Wanted to use only dictionary based search help.
    Thanks in advance
    Naganath Mudale

    thanks

  • Search help in Modulepool

    Hi All,
    I have a screen in Module pool which has 3 input fields, each input field is attached to the same search help.
    These fields are from ztable . I have created a search help USING these 3 fields. All the 3 fields are marked for IMPORT and EXPORT.
    So whenever i click F4 on any of the above 3 fields, It will display search help popup and returns some rows...But the values are transfered back only for 1 fields ..i.e for the first field only .
    I want that ...as soon as i select any of the row from Search hit list..all the 3 columns should get populated with corresponding fields from that row.
    I require it this way as user wants to select based on * selection.Ex: * as * then all fields related to that should be popped up.
    <removed_by_moderator>
    Thanks.
    Edited by: Julius Bussche on Sep 18, 2008 12:30 PM

    Hi Piyush,
    Thanks for those function modules those were very useful for me.
    This is how i got.
    data:l_shlp type SHLP_DESCR,
         l_rc type sy-subrc,
         w_DDSHRETVAL type DDSHRETVAL ,
         ls_shintf   LIKE LINE OF l_shlp-interface,
         t_DDSHRETVAL type TABLE OF DDSHRETVAL.
    DATA: dyname LIKE d020s-prog,
            dynumb LIKE d020s-dnum.
      DATA: BEGIN OF dynpfields OCCURS 3.
              INCLUDE STRUCTURE dynpread.
      DATA: END OF dynpfields.
    CALL FUNCTION 'F4IF_GET_SHLP_DESCR'
      EXPORTING
        SHLPNAME       = 'YTESTDMSSB'
       SHLPTYPE       = 'SH'
    IMPORTING
       SHLP           = l_shlp .
    ls_shintf-valfield = 'X'.
      MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
                                WHERE shlpfield = 'SNNTX'.
      MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
                                WHERE shlpfield = 'SBRTX'.
      MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
                                WHERE shlpfield = 'SBSTX'.
      MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
                                WHERE shlpfield = 'ENPTX'.
      MODIFY l_shlp-interface FROM ls_shintf TRANSPORTING valfield
                                WHERE shlpfield = 'PLANT_CODE'.
    CALL FUNCTION 'F4IF_START_VALUE_REQUEST'
      EXPORTING
        SHLP                = l_shlp
      DISPONLY            = ' '
      MAXRECORDS          = 500
      MULTISEL            = 'X'
       CUCOL               = SY-CUCOL
       CUROW               = SY-CUROW
    IMPORTING
       RC                  =  l_rc
      TABLES
        RETURN_VALUES       = t_DDSHRETVAL
    IF l_rc = 0.
      LOOP AT t_DDSHRETVAL INTO w_DDSHRETVAL.
        CASE w_DDSHRETVAL-fieldname.
          WHEN 'SNNTX'.     "W_SNNTX = w_DDSHRETVAL-fieldval.
             dyname = sy-repid.
             dynumb = sy-dynnr.
             dynpfields-fieldname = 'W_SNNTX'.
             dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
            APPEND dynpfields.
          WHEN 'SBRTX'.     "W_SBRTX = w_DDSHRETVAL-fieldval.
            dyname = sy-repid.
             dynumb = sy-dynnr.
             dynpfields-fieldname = 'W_SBRTX'.
             dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
            APPEND dynpfields.
          WHEN 'SBSTX'.     "W_SBSTX = w_DDSHRETVAL-fieldval.
            dyname = sy-repid.
             dynumb = sy-dynnr.
             dynpfields-fieldname = 'W_SBSTX'.
             dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
            APPEND dynpfields.
          WHEN 'ENPTX'.     "W_ENPTX = w_DDSHRETVAL-fieldval.
            dyname = sy-repid.
             dynumb = sy-dynnr.
             dynpfields-fieldname = 'W_ENPTX'.
             dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
            APPEND dynpfields.
         WHEN 'PLANT_CODE'.     "W_ENPTX = w_DDSHRETVAL-fieldval.
            dyname = sy-repid.
             dynumb = sy-dynnr.
             dynpfields-fieldname = 'W_WERKS'.
             dynpfields-fieldvalue = w_DDSHRETVAL-fieldval.
            APPEND dynpfields.
        ENDCASE.
      ENDLOOP.
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
             EXPORTING
                  dyname     = dyname
                  dynumb     = dynumb
             TABLES
                  dynpfields = dynpfields.
    ENDIF.

  • Search Help and Multiple Value Selection?

    Hello
    Is it possible to select more than one entry in a search help popup? If so, what do I have to do in the context attribute to be able to handle multiple return values from the search help popup?
    Regards,
      Mathias

    hi matthias.....
           you cannot select multiple lines in a search help. because... you are going to return to only one field... else what you can do is. have a small button which acts as a search help and pop up a window which has  a table in it. so you can select multiple values.
    ---regards,
       alex b justin

  • Search help overwrite a read-only field

    Hi, I have some problems with search help and hope someone can help me.
    My search helps (either standards or customs) work perfectly,  but a strange behaviour
    occur on Read-Only fields. If I open the Search Help popup and select a value, it overwrite the
    READ-ONLY value !!!!!
    Hope you can help.

    Depending on the support pack level you are on - search helps - freely programmed or otherwise don't seem to trigger off read only fields (I noticed this when we moved to NW7.01)
    I've got around this by making the field a link to action - providing the read only link I want as the text, and then calling the following code:
    call method cl_wdr_value_help_handler=>handle_application_def_vh
        exporting
          context_element      = context_element
          component_usage_name = 'JOB_SELECTION'
          context_attribute    = 'JOB'.
    Where component 'JOB_SELECTION' is my freely programmed value help - implementing WD interface IWD_VALUE_HELP.
    This was helpful as I wanted the search help to trigger and the user to be able to update the field but only by using the search help - I didn't want the user to be able to write anything in the field.
    it was a particular use case I had - it may or may not fit your needs.
    Cheers, Chris

  • Hiding Hit list popup and getting multiple values in Search help

    Hi,
    I have a special requirement where I am using a search help for filtering data. My requiremetn is the data which I am getting in Hit list popup, I want all that data in a internal table for further processing also I dont want that hit list popup. Is there any method or something which can be used in search help exit to hide the hit list popup dialog and returning all the records which is fetchec in the record_tab.
    Thanks
    Tanmaya
    Edited by: Tanmaya31 on Dec 16, 2011 6:52 AM

    Hi,
    I dont think you can make thru search help. Instead, I can advise you:
    Instead of using a search help for multiple selection, have a button placed at the table control, so that once you press that, you get the desired values(just as in SH) in an ALV display. Then you can make multiple selection and call the table control again and pass the values to the internal table used for the table control, so that the table is filled with the desired values.
    Hope this helps you.
    vamsi

  • Shoe View As A Popup When We Click On A Search Help

    Hi Experts,
    I am working on throwing a view as a popup when we press on the search help button for a column in my table.Could someone please tell me if this is possible and if we have an event that is triggered when we click the F4 symbol right next to the field .
    With Regards,
    Chaitanya.

    Hello Chaitanya ,
                                You can use the freely programmed input help or OVS help .
    For freely programmed input help , you have to create a webdynpro component  ( Say ZWD_FREE_HELP )which will have the pop up view as a defaut view in the window WD_VALUE_HELP . In this wendynpro component you have to implement the interface IWD_VALUE_HELP .
    You have also set the value help listner (  attribute VALUE_HELP_LISTENER  in component controller of type IF_WD_VALUE_HELP_LISTENER ) inside the method SET_VALUE_HELP_LISTENER  in this component  ZWD_FREE_HELP .
    Now you have to use this component in your Main component and provide the component name in for the attribute property freely programmed input help .
    After closing the pop up window you have pass the data to main window . For this you have to implement the on_data_select event ( this event is the interface event at component controller )  of ZWD_FREE_HELP.
    I hope this help you ....
    regards
    Vivek

  • Popup as a Search help

    Hi ,
       I need to develop one popup. and this popup should be attached a search help to one of the inputfield.   
       Actually i  can go for freely programmed sh for this but i should use only popup to get the standard look and feel of window.
      I have created a popup but dont know how to attach this popup as a search help for inputfield.
       Could anybody suggest me on this...?
    Thanks & Regards
    Sireesha.

    When you create your component that you want to serve as a Search Help, be sure to add the Web Dynpro Interface IWD_VALUE_HELP.  You must also implement the Method of the Component Controller - SET_VALUE_HELP_LISTENER (added by the above mentioned interface). 
    In the component where you want to use this search help - add a component usage (just like you would for an ALV) except for the above custom component you created to serve as a Search Help.  Then for the properites of the context attribute that you want to attach the search help, Change the Input Help Mode to Freely Programmed.  You will then get a new property called Input Help Component Usage.  Simply choose the name of the component usage you just created.

  • Search help is not working at Transaction Launcher

    Hi gurus,
    I create a transaction launch that calls a ZXXX t.code from same CRM system.
    T.code ZXXX is used to execute a custom report in order to create document from excel file.
    Everything is ok, but search help button is not working on web ui.
    Search help will open "my computer" pop up. I guess this cause problem. Is there anyone who met this problem before?
    Regards
    Sadi

    Hi,
    Is the search help button part of custom report and is it working fine in GUI ?
    What popup will come when we open that search help in GUI
    Regards,
    Shobhit

  • Values from Search help not returned to UI

    Hi,
    For a field on Web UI, i have to open a popup which would be configured from a search help created in transaction SE11. The search help uses a Searchhelp Exit. On the UI, I am getting the popup but the value i select is not reflecting on the UI. The moment i select the value, the popup closes. The 'Get_XXX' method of the attribute also does not triggered. Following is the code which i am using to call the search help in the GET_V_XXX method of the attribute.
      DATA:
      ls_map    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
      lt_inmap  TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
      lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
      ls_map-context_attr = 'STRUCT.ZZSTORAGE_LOC'.
      ls_map-f4_attr      = 'STORAGE_LOC'.
    APPEND ls_map TO: lt_inmap, lt_outmap.
      CREATE OBJECT rv_valuehelp_descriptor
        TYPE
          cl_bsp_wd_valuehelp_f4descr
        EXPORTING
          iv_help_id                  = 'ZOFI_SHLP_STORAGE_LOC2'
          iv_help_id_kind             = if_bsp_wd_valuehelp_f4descr=>help_id_kind_comp
          iv_input_mapping            = lt_inmap
          iv_output_mapping           = lt_outmap.
    I have tried various approaches suggested in the forum, but none could solve the issue. Please guide.
    Thanks and Regards,
    Radhika

    Hi,
    The client wants to use the search help method only. i am using the following code to call the serach help.
    DATA:
      ls_map    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
      lt_inmap  TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
      lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
      CLEAR ls_map.
      ls_map-context_attr = 'EXT.ZZSTORAGE_LOC'.
      CONDENSE ls_map-context_attr no-GAPS.
      ls_map-f4_attr      = 'STORAGE_LOC'.
      APPEND ls_map TO: lt_inmap, lt_outmap.
      CLEAR ls_map.
      ls_map-context_attr = 'EXT.ZZPLANT'.
      CONDENSE ls_map-context_attr no-GAPS.
      ls_map-f4_attr      = 'PLANT'.
      APPEND ls_map TO: lt_inmap, lt_outmap.
      CREATE OBJECT rv_valuehelp_descriptor
        TYPE
          cl_bsp_wd_valuehelp_f4descr
        EXPORTING
          iv_help_id                  = 'ZOFI_SHLP_STORAGE_LOC2'
          iv_help_id_kind             = if_bsp_wd_valuehelp_f4descr=>help_id_kind_comp
          iv_input_mapping            = lt_inmap
          iv_output_mapping           = lt_outmap.
    this code is written in the GET_V of the field ZZSTORAGE_LOC.The ZZ Storage_Loc field is getting saved but the field ZZPLANT does not. Please provide your inputs.
    Thanks,
    Radhika

Maybe you are looking for

  • IPod Touch NOT recognized in iTunes : HELP NEEDED

    My Ipod Touch is NOT being recognized by itunes. -Ipod Touch 3g with 4.3 software -iTunes 10.2 -PC: HP Pavilion Dv6. -OS: Windows 7 64-bit [Eng] Ok so... I previously kept my ipod touch version as 3.1.3, and only used itunes 9.2 because I tried using

  • Accessing a web service defined in XI with login and password

    Hello, I've configured a web service on XI and made it available. I want to use it from a NWDS portal object. Accessing the page needs authentication. If I use XMLSpy to make a request I get an enter user login/password screen. But I don't know where

  • Problems with server certificate

    Hi, i am using Adobe Drive 5.0.2.16 in order to connect to AEM 6 through an SSL connection. According to the Adobe Drive Admin Manual (http://help.adobe.com/en_US/AdobeDrive/5.0/Adobe_Drive_Admin_Guide.pdf), I added the non-trusted certificate hierar

  • How do I uninstall "Apture?"

    I am a new Firefox user (version 3.6.14). I have a pop-up called "Apture." How did I get it? What is it? '''How do I uninstall it?''' I have five extension installed: BetterPrivacy 1.48.3 Garmin Communicator 2.9.3 McAfee SiteAdvisor 3.3 Microsoft .NE

  • Corrupted iPhoto database (thanks a lot mobileme!)

    Following a stalled mobileme upload where iphoto locked up and couldn't even be force quited, I have a corrupted iPhoto )* database and can't see the last two years of photo's. There files are thankfully still all there in the appropriate "originals"