Import parameter to search help

Hi all,
I've created a search help for use in a customer screen on the Purchase Order (ME2xN). What I need to do is to use the <b>Purchasing Document Date</b> (field EKKO-BEDAT, screen field MEPO_TOPLINE-BEDAT) as an <b>import parameter to this search help</b> (the search help exit).
How do I go about to solve this?
ALL HELPFUL ANSWERS WILL BE REWARDED!
- Mari Virik

I already found out now, that I should at my search help to the field in the table instead of to the dynpro field. I mapped my import parameters of the search help with the corresponding fields of the same table as the field itself in SE11. The import parameters of my search exit have the same name and type as the import parameter of the search help. But when I debug the call of the search exit, the import parameters are still empty although the corresponding fields contain data.
Does anybody see, were my mistake is? I configured everything according to the online help.
Thanks in advance,
Martin

Similar Messages

  • Add parameter in search help PREMJ

    Hello,
    Currently, search help PREMJ only has parameter Last name, First name, Title, Birth date, Personnel Number, Start date and End date. There's a request to add below new parameter to search help PREMJ:-
    1. Position Title
    2. Personnal Area
    3. Personnal SubArea
    4. Payroll Area
    5. Org Unit
    4. Company Code
    This search help is standard SAP and I don't think we can change it. Functional team did analysis and no related config to add new parameter. Therefore, do we have any other way to add new parameter in search help?Is there any big impact to make these changes?
    Please advice.
    Thanks and Regards,
    Fauziah

    Hi
    It depends on if you need to change it or a collective search help where PREMJ is used,
    PREMJ is an elemantary search help so you can only add a new field by changing it, SAP allows to do it, but you make sure the paramater you need is in the view M_PREMJ, else you need to change it too (in this case you need the access key).
    If you needs to change a collective search help, you can enhance it by an APPEND SEARCH HELP
    Max

  • How to pass parameter to search help

    Hi,
    I have created a search help( zv_region) for a screen field(region) and assigned that search help( zv_region) to  screen attributes of screen field (region). But i have two fields in my screen. These two fields i am not taking from table or structure. I declared in my module pool program as global fields.
    1. Country
    2. Region.
    I want to filter "region" based on "country". For example if they enter "US" in country field, then they click on search help for region field it needs to populate only all us states.  
    Please advice me how to do that.
    Thanks in advance.

    Hi Sankar,
    I have implemented a functionality similar to yours. Here I have made use of fm F4IF_INT_TABLE_VALUE_REQUEST to populate the values. You first copy this program and run it. You will get the idea.
    *& Report  ZKun_F4HELP1                                               *
    REPORT  ZKUN_F4HELP1                           .
    DATA: BEGIN OF VALUES,
          MATNR TYPE MARA-MATNR,
          MTART TYPE MARA-MTART,
          END OF VALUES.
    DATA: PROGNAME LIKE SY-REPID,
          DYNNUM   LIKE SY-DYNNR,
          DYNPRO_VALUES TYPE TABLE OF DYNPREAD,
          FIELD_VALUE LIKE LINE OF DYNPRO_VALUES,
          VALUES_TAB LIKE TABLE OF VALUES WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-008.
    PARAMETERS : MATNR_N LIKE MARA-MATNR OBLIGATORY,
                 MTART_N LIKE MARA-MTART.
    SELECTION-SCREEN END OF BLOCK B1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR MATNR_N.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
      EXPORTING
        tabname                   = 'MARA'
        fieldname                 = 'MATNR'
      SEARCHHELP                = ' '
      SHLPPARAM                 = ' '
       DYNPPROG                  = PROGNAME
       DYNPNR                    = DYNNUM
       DYNPROFIELD               = 'MATNR_N'
      STEPL                     = 0
      VALUE                     = ' '
      MULTIPLE_CHOICE           = ' '
      DISPLAY                   = ' '
      SUPPRESS_RECORDLIST       = ' '
      CALLBACK_PROGRAM          = ' '
      CALLBACK_FORM             = ' '
      SELECTION_SCREEN          = ' '
    IMPORTING
      USER_RESET                =
    TABLES
      RETURN_TAB                = VALUES_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.
    AT SELECTION-SCREEN OUTPUT.
      PROGNAME = SY-REPID.
      DYNNUM   = SY-DYNNR.
      CLEAR: FIELD_VALUE, DYNPRO_VALUES.
      FIELD_VALUE-FIELDNAME = 'MATNR_N'.
      APPEND FIELD_VALUE TO DYNPRO_VALUES.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR MTART_N.
    CALL FUNCTION 'DYNP_VALUES_READ'
      EXPORTING
        dyname                         = PROGNAME
        dynumb                         = DYNNUM
       TRANSLATE_TO_UPPER             = 'X'
      REQUEST                        = ' '
      PERFORM_CONVERSION_EXITS       = ' '
      PERFORM_INPUT_CONVERSION       = ' '
      DETERMINE_LOOP_INDEX           = ' '
      tables
        dynpfields                     = dynpro_values
    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 <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE DYNPRO_VALUES INDEX 1 INTO FIELD_VALUE.
    select matnr mtart from mara into table values_tab where matnr =
    FIELD_VALUE-FIELDVALUE.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
      DDIC_STRUCTURE         = ' '
        retfield               = 'MTART'
      PVALKEY                = ' '
       DYNPPROG               = PROGNAME
       DYNPNR                 = DYNNUM
       DYNPROFIELD            = 'MTART_N'
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
       VALUE_ORG              = 'S'
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
      tables
        value_tab              = VALUES_TAB
      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.
    Regards,
    Kunal.
    <b>Note : you just have to modify this program for country and region fields instead of matnr and mtart.</b>
    Message was edited by: Kunal Kumar

  • Passing two export parameter from search help exit

    hi gurus,
    i need your help
    i need  to import two field from search help exit into two screen field.
    eg.
    parameters : p1 type p1 matchcode id s1,
                        p2 type p2,
    on f4 for p1 i am displaying two field in search help output, p1 and p2.
    i am using search help exit FM to pass value from s1, not using any view or table infact extracting data using other function module. i am filling.
    what i want , when i make a selection on f4 for p1, p2 should also be filled from the same search help s1.
    i allready tried memory id-export option in my search help exit at RETURN event but that does not fits well.
    ASAP reply higly appreciated
    will reward point for sure

    thanks a lot it worked out by defining search help for structure which contain these two fields.
    what i was missing was interface link.
    mandy

  • Language parameter in search help

    Friends,
    have created one search help with condition type and condition type text, and associated to the field condition type. NOw on the help popup the data is diplayed for two languages eg, EN an TH though the logon language is EN. can we restrict it?
    Many Thanks,
    Albert.

    if you have problems referring to SYST fields you can get round it by hard-coding the language in a selection condition of your database view,eg
    TRDIRT     SPRSL     EQ     'E'
    or you can create a search help exit function module and link it to your search help, something like:
    FUNCTION z_wxyz_shlp_exit.
    ""Local 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
      DATA:
          L_spras                  TYPE spras.
      FIELD-SYMBOLS:
       <field>                  TYPE dfies.
    Language filter logic.
    This logic only needs to apply at the 'DISP' event - which is just
    before the hit list is displayed
      CHECK callcontrol-step = 'DISP'.
    find the language entry in the field description table
      READ TABLE shlp-fielddescr ASSIGNING <field>
       WITH KEY fieldname = 'SPRAS'.
    *.. exit if one is not present
      CHECK <field> IS ASSIGNED.
    pass through the proposed hit list...
      LOOP AT record_tab.
    populate the language of the current record
        l_spras = record_tab+<field>-offset(<field>-intlen).
    check if it is different from the system language…
        IF l_spras <> sy-langu.
    *... and if so remove current record from the hit list
          DELETE record_tab.
        ENDIF.
      ENDLOOP.
    ENDFUNCTION.

  • Import screen field value into search help assigned to a different field

    Hi,
    I have created an elementary search help based on a custom DDIC table ZSH_SHHLDR. Dialog Type: Dialog depends on set of values, search help parameters:
    Parameter                       Import     Export   LPos SPos  SDis
    FOLIO                                X                       1       1         X
    CERTN                                             X         2       2
    where FOLIO and CERTN are fields in my table.
    There are two fields in my program defined as like FOLIO and CERTN respectively. These fields are screen fields in a custom dynpro created using Screen Painter. The search help is assigned to the CERTN field. In the screen, I want that the contents of the FOLIO field should be imported into the search help, i.e. on the screen:
    FOLIO: 21353
    CERTN: <F4>
    When I click on F4 help for CERTN, I want that the FOLIO parameter in the search help should contain the value for FOLIO that I entered in the text box on the screen. Is there a way to do this, through an exit for instance? Help is appreciated, thanks.
    Regards

    Hi,
    You need to use the below statement.
    process on value-request.
    field zcom_doa_users-zzjob_role module sub_tes_module.
    Here I declared three fields in the screen fields from structure zcom_doa_users. Try to name the fields with table name-field name. So inside the module in structure zcom_doa_users you will get given value for the other fields also.
    Now you can do your own processing for f4 help.
    Thanks
    Subhankar

  • Search Help Parameters Import and Export??

    Hello,
    In my WDA View i have some <b>InputFields</b>, which are mapped to Context which is copied from a Dictionary Structure. For all Input Fields i have a corresponding Search Help assigned in the Dictionary Structure. Search Help for some of the InputFields require value of other InputFields.
    Now, in the WDA when i click on Search Help of any InputField the values for some of the parameters from Input Field which are already set are not being shown in the Search Help Restrictions window. I have already checked and made sure that the field name and data element types are maintained the same in Dictionary Structure and associated Search Help. I even checked for the import checkbox in search help and everything looks fine to me from Dictionary Search and Search Help.
    Can anybody please tell me what should i do to get the values in the Search Help Restriction window which have been already selected in the View InputFields?
    I hope i managed to explain my problem correctly, if not then please tell me so i could describe in more detail.

    I figured it out. I forgot to assign the Field Name in the Dictionary Structure. Thanks.

  • Search Help with value on SE11

    Hi Gurus,
    I have two parameters on my screen, PARTNER and PSOBKEY. I have created a Search Help on SE11 for the second parameter, and this search help has that 2 parameters too.
    First I enter PARTNER, then I open the search help for PSOBKEY, and I want the value on PARTNER to be on the search help.
    How I can do this from the SE11?
    Thanks for your help.
    J. Garibaldi

    Hi Garibaldi,
    In your search help the PARTNER should be one of the search help parameters. It should be marked as IMP (Import) parameter. The name of this parameter in the search help should be same as that on your screen. The parameter PSOBKEY would be the EXP (Export) parameter of your search help.
    If you maintain above things, when you enter the PARTNER field on the screen and open the search help of PSOBKEY, the value of the PARTNER screen field would be automatically copied and imported into your search help.
    Please refer to the SAP help http://help.sap.com/saphelp_47x200/helpdata/EN/4f/991f82446d11d189700000e8322d00/frameset.htm for more detailed understanding.
    Regards,
    Suresh

  • Assign Search help in report program

    Dear All,
    I facing problem to assign search help in report program.
    I crated one elementary search help in which three fields i include
    -carrid
    -carrier name
    -booking  
    all three fields having import and export parameter in search help.
    while executing this search help in se11 it gives proper output.
    but while assigning this search help in report program it only fetch one carried.
    my report is also having three parameter
    -carrid
    -carrier name
    -booking
    i assign search help like
    PARAMETER :  p_carrid TYPE scarr-carrid
                               MATCHCODE OBJECT z01_carrid,
    with all three field but it fetch only carrid ...

    Hi Chintan,
    For such types of requirements you can use this Function Module:
    F4IF_INT_TABLE_VALUE_REQUEST.
    Use this functiom modue under AT SELECTION-SCREEN ON HELP-REQUEST FOR P_CARRID.
    With this function module, you can fill your remainng parameters : P_carriername and booking also.
    Sample Code:
         DATA : TMP_RETURN_TAB  LIKE TABLE OF DDSHRETVAL,                                TMP_RETURN      LIKE DDSHRETVAL,                    
                    TMP_FIELD       TYPE  DFIES-FIELDNAME.               
    CASE AKIND.                                        
       WHEN '1'.                                        
         TMP_FIELD = 'AENNR'.                                        
       WHEN '2'.                                        
         TMP_FIELD = 'VBELN'.                                        
       WHEN '3'.                                        
         TMP_FIELD = 'ZZTEHAI'.                                        
      ENDCASE.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'                                                                 
       EXPORTING                                                                                     
         RETFIELD               = TMP_FIELD                                                                      
         WINDOW_TITLE           = ATITEL                                                                      
         VALUE_ORG              = 'S'                                                                                
       TABLES                                                                                          
         VALUE_TAB              = ATABLES                                                                           
         RETURN_TAB             = TMP_RETURN_TAB                                                                      
       EXCEPTIONS                                                                                
         PARAMETER_ERROR        = 1                                                                           
         NO_VALUES_FOUND        = 2                                                                           
         OTHERS                 = 3.                                                                                
      IF SY-SUBRC =  0.                                                                                
        READ TABLE TMP_RETURN_TAB INDEX 1 INTO TMP_RETUN.                                                            
        AVALUE = TMP_RETURN-FIELDVAL.                                                                      
      ENDIF.                                                  
    Jus analyze this code, you can get ur requirement done.
    Regards
    Sandeep Reddy

  • Search Help for employee and contact person

    Dear expert,
    I'm a BSP fresher. We are using CRM 7.0 now. I'm facing a BP search help pop-up window issue, please help on it.
    We need a search help pop-up window to search employee and contact person at the same time.
    Our user want to search both employee and cantact person (don't include custoemr ->sold-to-party) for activity responsible person. I know the sap standard search help components are different employee, contact person, account.
    For example: employee -> BP_EMPL_SEARCH (component); contact person -> BP_CONT_SEARCH; account -> BP_ACC_SEARCH_E. And the component BP_HEAD_SEARCH is for all BP.
    It seem that there is no search help component for employee and customer contact person combination. I think maybe we can do a filter by BP role. But I don't how to implement it on WebUI.
    Thanks and Best Regards
    Michelle

    Hi Michelle,
    You can create a search help using trx. SE11 and use it in the METHOD GET_V* of your componen/attribute.
    in the get_v* method, * means attribute name put this custom code.
    DATA:
      w_map    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
      t_inmap  TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
      t_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
      w_map-context_attr = 'STRUCT.ZRESP_FASE'. " Attr name
      w_map-f4_attr      = 'PARTNER'.                     "import/export parameter to search help - search help attr name
      APPEND w_map TO: t_inmap, t_outmap.
      CREATE OBJECT rv_valuehelp_descriptor
        TYPE
          cl_bsp_wd_valuehelp_f4descr
        EXPORTING
          iv_help_id                  = 'PRP_BUPA_EMPLOYEE'   "search help name in your case Zname
          iv_help_id_kind             = if_bsp_wd_valuehelp_f4descr=>help_id_kind_name
          iv_input_mapping            = t_inmap
          iv_output_mapping           = t_outmap
          iv_trigger_submit           = abap_true.
    Hope this helps!
    Best regards,
    Caíque Escaler

  • Search Help on Table Control - Fill more than one field in the table?

    Hey everyone,
    I have built a screen with a Table Control on it... the fields of the table control are linked to an internal table...  The internal table has the line type of a structure I've defined in the data dictionary.  Within that structure in the data dictionary, I've linked some fields to search helps (For example, a MATNR and CUSTOMER search help)...  I've defined in the structure definition which fields from the search help are to be returned to which fields in the structure.
    The problem is, even though I have the search help set to export both the customer number and location when using the search help on the customer field, it still does not fill the location field within the table.  Is this a limitation of using search helps within table controls?
    I'm also finding that by defining the search help through the structure, instead of directly within the screen, the search help round button does not show up on the field, yet I can still press F4 to bring up the search help.  Is there a reason why it's not showing the search help clickable button even though it works fine using F4?
    For doing search helps in Table Controls, is it better to just build the search help, attach it directly to the field in the table, and then after the user picks the single field, use the PAI to run a select and fill the rest of the fields required?
    Thanks,
    Dallas

    Hi Dallas,
    (1)
    What  i understood is that you added a search help by defining it in the internal table type for a field customer number..in the search help you have 2 fields customer number and location...user press the search help ..then you need to fill 2 different fields or 1 field?
    if you need to fill the customer location or location (only one) then you need to set the "import" in the search help for whichever is required.....
    if you need to fill 2 or more different fields..then you can use the technique you have mentioned last , to do a select in PAI and fill the fields....but this you can use if the combination for the fields is unique...eg: u have customer number and location..if customer X can be mapped to location X and location Y..when a select statement is done there are 2 options..so in such cases it is better to leave the option to the user otherwise if there is a clear mapping like customer X can be mapped only to location X then you can use the select..
    (2)
    usually when you define it as a type in the internal table the icon doesn't show up..but you can do alternative like mentioned..go to the table,find the search help for the required field if present or create a new one if required and place the search help mentioned in the screen itself..so as to see the icon...sometimes users are adamant that they need the search help icon to be seen..so it depends on if your user
    (3)
    as in the example of customer number and location mentioned we can provide them different search helps and do the needful processing in PAI to fill the fields
    Table controls may be used for different purposes and requirements....even a checkbox,push button can be placed as a field in table control and used,but yes most of the time requirements are like what is mentioned in your case...
    Regards
    Byju

  • Remote-enabled FM - empty value for import parameter

    Hi,
    I've created a remoted-enabled FM in ECC, to be called by an ABAP program in CRM.
    The FM has a import parameter of table (of char type). When it's called by the client with a value, but the debugging shown that the value is empty.
    Is there any special attention needed when defining table type for the import parameter?
    Any help would be much appreciated.
    p/s: Apology for te newbie question.
    Thanks.
    -julius

    Hello,
    When you declare parameters under the TABLES tab, you are actually declaring a global table with header-line in the FM. Be sure you re sending/checking the values in the table, not the header line.

  • Finding SEARCH Help.

    Hi Experts,
    How to find search help attached with any field on the screen. Or how many ways we can attache search help?

    Search help can be
    - explicitly attached to a field in dynpro
    - from database - foreign or domain values
    Alternative
    - Search help can be linked programmatically in PAI
    <i>Calendar and clock help
    If no other input help has been defined for a field with type DATS or TIMS, the calendar or clock help is displayed.
    Domain fixed values
    If a field has no check table or search help, any fixed values of the underlying domain are used.
    Search help of the data element
    Search helps from the ABAP Dictionary can be  attached to a data element. If a field has no check table or search help of its own, the system uses the search help assigned to the underlying data element.
    Check table
    If the check table has no text table and no search help of its own, and a field has no search help of its own, the contents of the key fields of the check table are used as input help.
    Check table with text table
    You can define a  text table for a table. If the check table for a field has a text table defined for it, the input help displays both the key fields from the check table and the corresponding text from the text table in the user’s logon language.
    Check table with search help
    Search helps can be  attached to the check table of a field. The search help is displayed with the values from the check table. However, it allows you to transfer the values of more than one parameter.
    Search help for a field
    Search helps can also be directly  attached to a field of a structure or a database table. This has the highest priority, and is always displayed for input help. When you attach the search help, you should therefore ensure that it only offers values that are also in the check table, otherwise errors may occur in the automatic input checks.</i>
    Regards

  • Search Help Import Parameter as Listbox

    How to make a search help parameter as Listbox( with Key ). Currently all search help parameters in F4 Dialog will be input fields with value help been fected from data element/domain.
    I need the parameter as list box because only then I could populate the text along with the value.
    Like there is a domain whose fixed values are 1- Active, 2 - Locked etc,
    When I use a search help parameter with a data element of the above domain, then during F4, THE SEARCH HELP DIALOG has this parameter as 1. The text "Active also should appear ideally"
    FYI: the parameter is an import parameter.
    Best Regards,
    Ragha.

    Please check the below program...
    REPORT  ztest_sri.
    TYPE-POOLS: vrm.
    DATA: it_list TYPE vrm_values,
          wa_list LIKE LINE OF it_list,
          id      TYPE vrm_id.
    DATA: gv_menge TYPE menge_d.
    PARAMETERS: p_box LIKE mara-matnr AS LISTBOX VISIBLE LENGTH 10.
    INITIALIZATION.
      REFRESH: it_list.
      CLEAR: wa_list, p_box.
      wa_list-key = 'Srinu'.
      wa_list-text = 'Srinivasu'.
      APPEND wa_list TO it_list.
      wa_list-key = 'Radha'.
      wa_list-text = 'Radha Krishna'.
      APPEND wa_list TO it_list.
      id = 'P_BOX'.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = id
          values          = it_list
        EXCEPTIONS
          id_illegal_name = 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.
      ENDIF.
    START-OF-SELECTION.
      WRITE: p_box.
    thanks,
    Srinivas

  • Search help import parameter

    Hi,
    I have 2 columns in my ALV table. COL_A and COL_B.
    My requirement is to populate the search help entries of COL_B based on COL_A. but if COL_A is left blank then search help of COL_B should display all values based on user access.
    Can I access value of import parameter (COL_A) of dictionary search help in search help exit so that i would know whether COL_A is empty or not.
    Please let me know how can I access value of import parameter of dictionary search help in search help exit .
    Thanks,
    Feroz

    Hi Feroz,
    It is easy..
    Just mention both column A and column B as importing paramenter.
    and use this code skeleton..
    use it in the "select" call control step
    CALL FUNCTION 'F4UT_RESULTS_MAP'
        EXPORTING
          source_structure   =  'XXXXXXXXX'
          apply_restrictions = ' '
        TABLES
          shlp_tab           = shlp_tab
          record_tab         = record_tab
          source_tab         = 'XXXXXXXX'
        CHANGING
          shlp               = shlp
          callcontrol        = callcontrol
        EXCEPTIONS
          OTHERS             = 0.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
        EXPORTING
          PARAMETER   = 'XXXXXXX'    "this can be your column A   
          fieldname   = 'XXXXXXXXX'
        TABLES
          shlp_tab    = shlp_tab
          record_tab  = record_tab[]
          source_tab  = lt_time_range
        CHANGING
          shlp        = shlp
          callcontrol = callcontrol.
    callcontrol-step = 'DISP'.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
        EXPORTING
          PARAMETER   = 'XXXXXXX'    "this can be your column B 
          fieldname   = 'XXXXXXXXX'
        TABLES
          shlp_tab    = shlp_tab
          record_tab  = record_tab[]
          source_tab  = lt_time_range
        CHANGING
          shlp        = shlp
          callcontrol = callcontrol.
    callcontrol-step = 'DISP'.
    here, source_structure is the structure of the table where the data is available which is the "source_tab".
    Parameter field is the name of parameter specified in search help. and fieldname is the field corresponding to the paramer in the table "source_tab".

Maybe you are looking for

  • Empty space check for text box

    i need to verify null check for textbox fields and it sould not allow spaces as well.... is there any way like trim functions.. please help me.. Already tried with JavaScript's trim() and not working... I'm using es3

  • Loading web pages from an application

    Hi All I've tried hunting on this web site for info about how to show an html page from an application. Unfortunatley I couldnt find anything. So how do I fire up a web browser, and load in a specified web page? I can get a URL pointing to a file on

  • Getting error while running script for online backup

    Hi, I am running a script for online backup but ended up with an the below error. *ERROR* [Backup Worker Thread] com.day.crx.core.backup.Backup Failed to create temporary directory Please help out in resolving this. Thanks in Advnace. Maheswar

  • When trying to install Photoshop Elements 12  - error message "Key could not be opened"

    Error message is in German as I live in Austria. I have tried a lot of time to install  a recently bought packagee "Photoshop Elements 12 & Premiere Elements 12" - but without success. When istalling PSE 12 I always receive the following error messag

  • SMS in Yosemite messages not working. "Not registered with iMessage"

    Just updated today to Yosemite. Macbook Pro 2013 (current retail model) with upgraded RAM and flash storage. iPhone 6 running 8.0.2 with recent back up to iCloud. When sending iMessages to my normal iMessage contacts, everything is ok. This update sh