Multiple selection button is suppressed

Hi SAP Gurus, Multiple selection button is suppressed for many t codes..what could be the reason for this issue? for ex:- article selection in mm43, me5a, etc. Attached the screenshot

Hi everyone,
The issue is resolved....
Help-->Settings-->F4 help-->Display-->choose option "Dialog"

Similar Messages

  • How to remove multiple selections button in LDB selection screens

    Hi Friends,
    I am facing a problem while doing an HR object. I took an LDB with Selection screen '100'. i got the company code select-option in it. But i need to avoid multiple selection button so that i have to take only a single company code to print the ALV heading as the company Text. Please tell me quickly, how can i do it.
    Regards,
    Santosh.

    You may have to do something like below where S_BUKRS is your company code select option of the LDB.
    REPORT  zakstest1 NO STANDARD PAGE HEADING.
    TABLES t001.
    TYPE-POOLS: sscr.
    SELECT-OPTIONS s_bukrs FOR t001-bukrs.
    INITIALIZATION.
    *-- Remove the the ranges option
      PERFORM remove_ranges_for_sel_options.
    *&      Form  remove_ranges_for_sel_options
    *       text
    FORM remove_ranges_for_sel_options.
      DATA: optlist  TYPE sscr_opt_list,
            restrict TYPE sscr_restrict,
            ***      TYPE sscr_***.
    *-- Allow EQ only
      CLEAR optlist.
      optlist-name       = 'EQ_ONLY'.
      optlist-options-eq = 'X'.
      APPEND optlist TO restrict-opt_list_tab.
      CLEAR ***.
      ***-kind    = 'S'.
      ***-sg_main = 'I'.
      ***-sg_addy = 'N'.
    *-- Make S_BUKRS range to have only EQ
      ***-name    = 'S_BUKRS'.
      ***-op_main = 'EQ_ONLY'.
      APPEND *** TO restrict-***_tab.
      CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'
        EXPORTING
          restriction            = restrict
        EXCEPTIONS
          too_late               = 1
          repeated               = 2
          selopt_without_options = 3
          selopt_without_signs   = 4
          invalid_sign           = 5
          empty_option_list      = 6
          invalid_kind           = 7
          repeated_kind_a        = 8
          OTHERS                 = 9.
    ENDFORM.                    " rem_ranges

  • Multiple Selection button on selection screen called in Screen Painter

    Hello ABAPers
    I have included selection screen(1100) in a subscreen area of a screen in module  program.
    The user's requirement is that there should be some gap between input field of a select options and multiple selection button.
    Though the screen 1100 can be edited by going to the layout editor and the gap can be introduced but everytime the object is released to quality server, the change is undone.
    Is there any way to introduce gap permanently?
    Thanks & Regards,
    Garima.

    Hi Garima,
    This mey be due to that the size of subscreen area is smaller then that of selecction screen(1100).
    Do one thing....include your selection buttons in the main screen in which subscreen is created. if that dosn't work include selection buttons in your selection screen(1100) and then call it in subscreen.
    Thanks
    Rajesh Kumar

  • Multiple selection button in select-options

    Hello exports,
    I need to provide an interface to user where he can Put a multiple selection button (ICON_ENTER_MORE) multiple selected purchase order at a time. (Like multiple purchase orders in select option). It should be done in dialog programming.
    plz giv me the code its urgent.
    regards

    I was looking for an answer to the same question.  After exhausting all searching efforts on this forum I did a Google search using the following search string:
    "multiple selection button"
      It wasn't until the third page of returned hits that I found just what I was looking for.  I hope the following link is as helpful to you as it was for me:
    [http://searchsap.techtarget.com/tip/1,289483,sid21_gci888211,00.html?FromTaxonomy=%2Fpr%2F283958]
    This link assumes that you know dialog programming.  You will have to adapt the example and code to your specific needs.

  • [Help] Multiple Selection at Select Options.

    People, I've coded following Select Options:
    DATA: g_created TYPE zapomatxref-erdat,
                g_modif   TYPE zapomatxref-aedat,
                g_matnr   TYPE zapomatxref-pr1_material.
    SELECT-OPTIONS: s_creat FOR g_created,
                                   s_modif FOR g_modif,
                                   s_matnr FOR g_matnr OBLIGATORY.
    Thing is, when I execute the program and hit the Multiple Selection, an error pops up saying "Fill in all required fields".
    I know it goes through PBO validating that OBLIGATORY so I can't enter the multiple selection screen.. But is there a way to enter the multiple selection screen without changing the OBLIGATORY adition ?
    Thanks in advance.
    PS: This is an executable program, not module pool. Also I want to enter Mutliple Selection screen without filling s_matnr.

    Guys, solved the problem. You have to remove the OBLIGATORY addition and set the following code.
    ("Percentage symbol" below is the traditional percentage centessimal symbol we know, the mozilla wont let me insert it...)
    TOP Include:
    CONSTANTS: c_per002     TYPE c    VALUE '(percentage symbol)002'.
    MAIN PROGRAM:
    AT SELECTION-SCREEN ON s_matnr.
      IF sy-ucomm NE c_per002.
        IF s_matnr[] IS INITIAL.
          MESSAGE e025(ycapo).
        ENDIF.
      ENDIF.
    START-OF-SELECTION.
    PS: c_per002 comes to be the sy-ucomm value when hitting Multiple Selection Button at Selection Screen.. As any action validates the whole screen, you just set a clause when you don't want to validate if sy-ucomm not equals (different from) c_per002.

  • SELECT-OPTIONS Multiple selection

    Hello
    I have the following line of code:
       SELECT-OPTIONS: p_matnr FOR mara-matnr.
    The users would like to use the multiple selection button to paste/upload from the clip board but unable until at least one entry is entered before the multiple selection will work.  Is there a way for the multiple selection to work without entering a material?
    THANKS

    Hi Gary, Clicking the button shown below bring up the multiple selection screen without requiring a value. Do not add the obligatory keyword on the select-options statement as pointed out by Ramon.
    see below:

  • Restrict no. of entries in the multiple selection of DOCNUM of EDID4 tab

    Hi,
    Is it possible to restrict number of entries in the multiple selection of DOCNUM of EDID4 table.
    i.e., Select the content button on se11 for EDID4 table. We can see the selection screen of the table. Press the multiple selection button of 'DOCNUM', we get a popup. Is it possible to restrict the no. of docnum entry to 500. If i enter more that 500 entries, it should popup a message.
      Please share your ideas. I am working on 4.6c.
      Points will be rewarded.
    Thank you.
    Regards,
    Ramesh

    Hi Atish,
       Thanks for your reply.  I checked for BAdis. But I couldnt find. Is there any other ways of doing this?
    User is trying to import the docnum values from presentation server file using the 'Import from text file' icon on multiple selection popup. As the no. of docnum were 4500, during the execution of this process, other process trying to connect to oracle is going for short dump with message 'Run-time error (Oracle error code: ORA-4031)'.  So user wanted to restrict it to 500.
    Hope my explanation is clear.
    Regards,
    Ramesh

  • How to disable multiple select option in OO ALV.?

    I want to display an ALV with the multiple select button disabled.I want the "select" button at the start of each row but  the "select all/deselect all" button at the right hand top corner of the display be
    disabled.
    Please help me out.

    Hi
    You can add a new column to your internal table for the selection field.
    After registering the required events, for eg:
    METHOD alv_set_events.
      DATA: lr_events TYPE REF TO cl_salv_events_table.
      lr_events = mcn_alv->get_event( ).
    *- Register the event Double click
      SET HANDLER me->mt_on_double_click FOR lr_events.
    *- Register the event User command
      SET HANDLER me->mt_on_user_command FOR lr_events.
    ENDMETHOD.
    you can process the selected records and mark them as "Processed" by setting a color to the record.
    DATA: BEGIN OF lw_farb ,                  " Farbstruktur für ALV
            farb1(1) VALUE 'C',
            farb2(1),
            farb3(1) VALUE '0'.
      DATA: END OF lw_farb.
    DATA: lf_col_bearbeiten      TYPE i VALUE 5.
      lw_farb-farb2 = lf_col.
      ef_col = lw_farb.
    Regards
    Raj

  • Multiple selection screen is blank in screen personas SP2..

    Hi,
    When i click on multiple selection button, in the next pop-up screen getting blank data.
    Unable to enter the values to execute the transaction.
    Please suggest..
    Regards,
    Govind

    Hi Tamas,
    We tried to apply the related notes which you have mentioned in the previous post.
    But, still not solved. Those notes are not able to apply in my system.
    Can you please suggest any other solution..???
    Regards,
    Govind.

  • Hide multiple selection of parameter related to Standard Report Category.

    Hi,
    I have created the report program with the logical database PNPCE , report category HRF_PNOC having PNPPERNR in the selection screen With Multiple selection. I want to hide the multiple selection button  for this PNPPERNR in the selection screen.
    For example: we hide the multiple selection button in report program with the no-extension. The syntax for no-extension is shown below 
    select-options : p_kunnr for kna1-kunnr no-extension.
    Can any one help me out of this?
    Thank You,
    Swetha.C
    Edited by: Swetha Chevuru on Oct 28, 2011 12:22 PM

    Hi,
    Please see the below blog for detailed description of the problem that i am facing now
    http://swethacblog.blogspot.com/2011/10/how-to-hide-multiple-selection-button.html#!/2011/10/how-to-hide-multiple-selection-button.html
    Thank You,
    Swetha.C

  • Change Selection fields into Multiple Selection

    Hello,
    I would like to know if it is possible to change a standard Selection fields box into a Multiple Selection box.
    Example:
    In VA05, I have this (Further Sel.criteria > PO number)
    I want it to be like that (like in VA05N)
    Therefore, when I click on the Multiple Selection button, I have all the standard options as shown below:
    Any hint how it can be done would be appreciated.
    Thanks
    Regards

    click on 'Select Ranges' and you can able to eneter multiple ranges as you are looking.

  • Select-Option F4 Help Multiple Selection

    Hi
    I have wriiten the code to provide custom F4 help for a field using F4IF_INT_TABLE_VALUE_REQUEST' and then updating the values back to screen using Function Module DYNP_VALUES_UPDATE.
    It is working fine when the F4 is used on the main screen, But when i click on the multiple selection button and press F4, i do get the F4 values list, but selected value is not getting passed back to the field.
    I guess the issue is the field name changes in the multiple section option, Please suggest how can i fix it.
    *&      Form  update_date_bATCH
          Updating the sel_screen with the retrieved values
    FORM update_date_batch USING pt_filename pt_fieldvalue.
    Rundate
      st_dyn_fields-fieldname  = pt_filename.
      st_dyn_fields-fieldvalue = pt_fieldvalue.
      APPEND st_dyn_fields TO it_dyn_fields.
    Function Module to update the screen with the values retrieved
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
        EXPORTING
          dyname               = sy-repid
          dynumb               = sy-dynnr
        TABLES
          dynpfields           = it_dyn_fields
        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 <> 0.
        MESSAGE i006(zffi).
      ENDIF.
    ENDFORM.                    " update_new_date_time

    You have added the F4 to a select-option for areport and would like to get the F4 values back into the select-option, when the user selects multiple values?
    If this is the case you have to fill the internal table behind the select-option and this will have to based on waht the user selected.
    The first value will go on to the screen the way you have done it.
    If this is what you want to do?
    Rene

  • Search Help F4 Multiple selection

    Hi,
    In any field, after pressing search button (F4), the multiple selection buttons are not appearing in the sub screen "Restricted value range".
    And the local data status is ON in "customize local layout" - "options", but still the past entered data is not showing in fields of "Restricted value range" screen.
    Please suggest.
    Regards
    Bhanu prakash.

    Hi Bhanu prakash,
    What is your B1 version and PL?
    Thanks,
    Gordon

  • Multiple Selection on Selection Screen

    Hello Friends,
    Iam having a selection screen where I can enter a single value or range of values directly into the select-option fields or I can click on Multiple Selection button and enter the single value or Range of values. And whatever I enter in the Multiple selection that is stored in table s_lifnr (because I enter vendor details).
    Now, my question is.....Is there any Function Module or any BAPI to get or read all the values of this table into another internal table because I want to use them in another BAPI where I need to pass the range of vendor codes to get list of line items.
    So if I could make up an internal table which contains all the vendor codes selected from multiple selection with options like (=,>,<,<=,>=)in single value and (BT, I, E)in Range I can use this table in that BAPI.
    Any kind of help is appreciated..
    Thanks in Advance..
    Regards,
    Raju....

    Usually, you will want to select the vendors from the database.
    data: ilfa1 type table of lfa1 with header line.
    select-options: s_lifnr for lfa1-lifnr.
    select * into table ilfa1 from lfa1
              where lifnr in s_lifnr.
    loop at ilfa1.
    * do something with all selected vendors.
    endloop.
    Regards,
    Rich Heilman

  • Multiple Value Button to be closer on the Selection Screen

    I have code for selection screen like this:
    tables: mara, konv.
    select-options s_matnr for mara-matnr.
    select-options s_kschl for konv-kschl no intervals.
    it gives the selection screen with multiple value button of s_kschl with more space.
    Can anyone suggest me how to bring the multiple value button of s_kschl very close to its s_kschl-Low input field.
    It's very urgent: please tell me and get rewards.

    Hi,
      Try to use the below code.
    Selection-screen begin of line.
    select-options s_matnr for mara-matnr.
    select-options s_kschl for konv-kschl no intervals.
    selection-screen end of line.
    or else..
      try to use the POSITION Commnad on the screen.
    Click the link below to know more about it.
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba7e235c111d1829f0000e829fbfe/content.htm
    Regards,
    Vara

Maybe you are looking for

  • DAG and availability issues

    Hi All, I'm new to all this Exchange stuff - I am currently experiencing an issue with DAG availability and receiving external emails - I think these two issues may be related somehow. First off, let me give some background. The site has a DC, Exchan

  • How do I change the subject line on incoming email

    On my old PC I could easily start typing in the subject line of a received email.  This would allow me to search for a name later on when looking for an invoice.  I dont know how to change the subject line of an incoming email to my imac?

  • Dynamic attribute file name

    Hi All,           I am trying to use dynamic attribute file name using UDF in message mapping: <i>String filename = null; filename = "Yahoo"; DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransfo

  • Condition type FRA1, condition category B and returns item

    When a delivery is not accepted and returned, a new purchase order is created where the field returns item flagged. Conditions like ZPB0 becomes a negative value, but the FRA1 not. In our business it is common not to pay the transport costs if the de

  • List ALV - ML85

    Hi everyone, Is possible to assign ALV for tcode ML85? I've tried along the way (IMG > Materials Management > Purchasing > Reporting > Maintain Purchasing Lists > Scope of List), but can not. Thank you, Madi