Hide multiple selection in REUSE_ALV_GRID_DISPLAY

HI,
I want to hide/dis able Multi selection option in ALV grid...................We are using FM REUSE_ALV_GRID_DISPLAY..........................
Any Idea or suggestion how to do this
FYI :
1. I looked at the forum but could not find anything close to what I needed...................
2. I know it is possible with object based development of ALV grid but in this case we want to use only 'REUSE_ALV_GRID_DISPLAY'
Best Regards
Kiran

HI
  You can turn off multiple selection in one-click to be used as single-select component.
for any detailed information u can even see details demo link below
http://www.visualbis.com/products/multi-select-dynamic-grid/
thank u

Similar Messages

  • 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

  • Show/Hide Multiple Selected Columns

    I am using SpryDOMUtils.js to show/hide a column. However, I
    would like to have multiple buttons to select to show/hide
    individual columns.
    I tried adding two function calls:
    <script language="javascript" type="text/javascript">
    function hideIt(){
    Spry.$$("#first th:nth-child(3),#first
    td:nth-child(3)").toggleClassName("hideIt");
    function hideIt(){
    Spry.$$("#first th:nth-child(7),#first
    td:nth-child(7)").toggleClassName("hideIt");
    </script>
    But clicking either button just toggles the 7th column. I
    think I some how need to ID the functions to the buttons and
    columns.
    Any help would be appreciated.

    you can hide multiple column by simply use :
    function hideIt(){
    Spry.$$("#first th:nth-child(7),#first
    td:nth-child(7)").toggleClassName("hideIt");
    Spry.$$("#first th:nth-child(3),#first
    td:nth-child(3)").toggleClassName("hideIt");
    //more columns here...
    if you use 2 function with same name the first will be
    ignored and the last will executed (thats why it called
    object-oriented :D, new object replace old object)

  • Hide the Range Option in Multiple Selection screen

    Hai,
    I Give the values In single Values In Selection Option Screen.
    I want to need Hide the Range Option Include or Exclude In Multiple selection screen.
    Regards,
    Geetha

    just check this it may help you
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/840ad679-0601-0010-cd8e-9989fd650822">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/840ad679-0601-0010-cd8e-9989fd650822</a>
    here restricting the selection screen
    regards
    shiba dutta

  • Hide RANGE option in Multiple Selection Popup window

    This is regarding Parameter option.
    In parameter variable,i declared NO INTERVALS option
    to get only multiple values.
    In multiple selection popup window.i want to select only multiple values not RANGE values. so i want to either disable or hide the f7 option.how to do this.
    (we have ranges option at Popup window
    when u click f7 or complex selection icon at bottom popup window.)
    do we have any option to hide this.
    Ambichan

    hi,
    look fm SELECT_OPTIONS_RESTRICT
    (here's a docu)
    regards Andreas

  • Show/hide based on Multiple selections in a select box

    In my http header I have the following code...
    it works great as long as only one value is selected:
    if you highlight the ARRAMO value the DUNS field appears...
    if you highlight anything else the DUNS field disappears...
    but if I highlight both ARRAMO and another field, I want the DUNS to SHOW and it DOESNT..
    how do I fix this?
    <script type="text/javascript" src="#WORKSPACE_IMAGES#jquery-1.3.2.min.js"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script type="text/javascript">
    $(document).ready(function(){
    $('#P1_DUNS_NUMBER').attr("disabled", true);
    $('label[for=P1_DUNS_NUMBER],#P1_DUNS_NUMBER').hide();
    $('#P1_APP_REQUESTED').change(function(){
    if($(this).val() == 'ARRAMO'){
    $('#P1_DUNS_NUMBER').attr("disabled", false);
    $('label[for=P1_DUNS_NUMBER],#P1_DUNS_NUMBER').show();
    }else{
    $('#P1_DUNS_NUMBER').attr("disabled", true);
    $('label[for=P1_DUNS_NUMBER],#P1_DUNS_NUMBER').hide();
    </script>

    Using LOV, you can have multiple selection.
    For this you can write code in the KEY-LISTVAL trigger.
    Create an LOV for store code.
    In the text-item of store_code (where you want mul. selection), you assign the LOV to that item.
    In key-listval trigger,
    You can have something like
    Declare
    m_val varchar2(1000);
    a boolean;
    Begin
    m_val := :store_code;
    a := show_lov('STORE_LOV');
    if a then
      If m_val is null then
         m_val := :store_code;
      else
          If instr(','||m_val||',' ,||','||:store_code||',') = 0   /*check whether store code already selected, to get excat string comma is concatenated*/
             m_val := m_val||','||:store_code;
          end if;
      end if;
    end if;
    :store_code := m_val;
    End;Note :To check for validation, additional coding is required...

  • How can I have multiple-selection list box "select at least one checkbox" option active only when the section it's in is visible?

    Hi, I'm using SP13 and InfoPath2013.
    I created a custom form and published it to SP13 document library.  This form has many MSLB.  Depending on the checkboxes selected in the 1st MSLB, the other MSLB will either hide or show.  Each MSLB is in its own section.  The requirement
    is to have each MSLB to have at least one checkbox selected.  Well, the problem is that when that MSLB isnot checked in the 1st MSLB it is not visible and shouldn't require any checkbox to be selected.  However, the form can't get submitted instead
    an error dialog would pop up and ask user to make a selection for MSLB that is not even displayed.  Is there any way to fix this besides unchecking all MSLB to be not required at least one selection?  Thank you.

    Eric, 
    I follow your reply post here and still doesn't work.  I also noticed your screen shot of selecting a field is not the same as what I see in InfoPath 2013.  
    Here is what I did, 
    1.Check At least one selection required for
    these Multiple-selection List Boxes
    as you want .
    2.Create a Formatting  rule for the 2nd
    Multiple-selection List Box.
    3.Add a  Condition as below:
    4.  I get a validation error if I don't
    select at least one checkbox in the hidden MSLB control when submitting.
    I think I'm following all the steps correctly
    but please let me know if I'm not.

  • Problem with Multiple selection option

    Hi all,
    I am working on a report, when I execute the report and the selection screen comes up, there I need to enter 5 different employee name so I am trying to use "multiple selection" option but as soon as I hit that "Yellow arrow" in front of employee name field .. I saw the output first and when I go one screen back I get that screen where I can enter the names. So can you please help me with this.
    Thanks,
    Rajeev

    Hi,
    I have written the following code, I guess the problem is in
    GD_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM     = GD_REPID
    DATA: FIELDCATALOG TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          GD_TAB_GROUP TYPE SLIS_T_SP_GROUP_ALV,
          GD_LAYOUT    TYPE SLIS_LAYOUT_ALV,
          GD_REPID     LIKE SY-REPID.
    FORM DISPLAY_ALV_REPORT .
      GD_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM     = GD_REPID
          I_CALLBACK_TOP_OF_PAGE = 'TOP-OF-PAGE'
          IS_LAYOUT              = GD_LAYOUT
          IT_FIELDCAT            = FIELDCATALOG[]
          I_SAVE                 = 'A'
        TABLES
          T_OUTTAB               = IT_tab
        EXCEPTIONS
          PROGRAM_ERROR          = 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.
    ENDFORM.                    " DISPLAY_ALV_REPORTcode}
    Thanks,
    Rajeev

  • Multiple selection of rows in alv output list

    experts,
    using 'REUSE_ALV_GRID_DISPLAY'
    the following is the sample code ,without using ctrl or shift key i am unable to select multiple rows .
    any resolvable answers.
    REPORT zpushbutton1.
    type-pools : slis.
    *structure declarations
    types : begin of ty_mara,
    matnr type matnr,
    ernam type ernam,
    mbrsh type mbrsh,
    CHKBOX TYPE CHAR1,
    end oF ty_mara.
    types : begin of ty_marc,
    matnr type matnr,
    werks type werks_d,
    pstat type pstat_d,
    end of ty_marc.
    *internal table declarations
    DATA : gi_mara TYPE STANDARD TABLE OF TY_MARA INITIAL SIZE 0.
    data : gi_fieldcat type slis_t_fieldcat_alv.
    *workarea declarations
    DATA : gs_mara TYPE TY_MARA,
    gs_fieldcat type slis_fieldcat_alv.
    SELECT matnr
    ernam
    mbrsh
    FROM mara
    INTO TABLE gi_mara
    UP TO 10 ROWS.
    perform build_fieldcat using :
    '1' 'CHKBOX' 'GI_MARA' 'SELECT' 'X' ,
    '2' 'MATNR' 'GI_MARA' 'MATEIRALNO' ' ',
    '3' 'ERNAM' 'GI_MARA' 'PERSON CREAT' ' ',
    '4' 'MBRSH' 'GI_MARA' 'INDUSTRY' ' '.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = SY-REPID
    IT_FIELDCAT = GI_FIELDCAT
    TABLES
    t_outtab = GI_MARA
    *& Form BUILD_FIELDCAT
    form BUILD_FIELDCAT using
    PCOL TYPE CHAR2
    PFLDNAME TYPE CHAR10
    PTABNAME TYPE CHAR10
    PSELTEXT TYPE CHAR15
    PINPUT TYPE CHAR1.
    GS_FIELDCAT-COL_POS = PCOL.
    GS_FIELDCAT-FIELDNAME = PFLDNAME.
    GS_FIELDCAT-TABNAME = PTABNAME.
    GS_FIELDCAT-SELTEXT_M = PSELTEXT.
    GS_FIELDCAT-EDIT = PINPUT.
    APPEND GS_FIELDCAT TO GI_FIELDCAT.
    CLEAR GS_FIELDCAT.
    endform. " BUILD_FIELDCAT
    thanks and regards

    experts,
    can we set cursor properties during the output display
    ex : i have used function module reuse_alv_grid_display to display a list of records with passing parameter
    is_layout-box_fieldname and is_layout-box_tabname to list the first column as pushbutton.
    when i select a row ,gets selected now when i move the
    cursor (mouse) to the other row and select the row, the row previously selected will be deselected.
      solution to the above problem is to hold the ctrl or shift key for
    multiple selections.
    is there any other alternative procedure so that without holding
    ctrl or shift key multiple rows get selected.
    thks and rgrds

  • How to hide multiple columns in multicolumn listbox like as an excel sheet?

    Hello All,
    I have large amount of data that is to be displayed on multicolumn listbox. After displaying that, I want to hide or delete some columns from listbox in runtime.
    I know how to hide one column using active cell property node. But I want to hide multiple columns. I am using LabVIEW 2011. 
    Thanks in advance.
    Thanks & Regards,
    Manisha

    Thank you so much. 
    But I have total 12 columns and I don't want to delete columns serially. I want to delete inbetween columns, like in attached VI I want to delete column A & D only. 
    And in this user have to select it from frontpanel. I want this is to be done as in excel, like we select the entire column and either we hide it or delete it. One more thing I want to clear the data in multicolumn when I next time open my VI. How to do that?
    I hope am clear in explaining my problem.
    Thanks & Regards,
    Manisha
    Attachments:
    Delete Column.vi ‏10 KB

  • Advanced Table Multiple Selection View Attribute Type

    Hi,
    I have an advanced table with multiple selection. The multiple selection is associated with a view object attribute that is of type "String". In the create mode, the view attribute stores "Y" for the selected rows. But in the update mode, when I try to initialize the VO from the DB table, the multiple selection checkboxes are not selected for the rows where the DB value of the associated attribute is "Y". Somebody told me that if I specify the type of the DB attribute associated, to Boolean (and also the view attribute as Boolean), then this problem wouldn't occur. Is that correct or I must be doing something else wrong?
    Thanks,
    Amit

    Hi Pratap,
    It's quite simple actually. I mean the problem defintion :-) (not the solution)
    I have a table with multipleselection. Initially the user does a "Select All" and the data is committed to the DB.
    Once committed I don't want the user to change the selection, hence I need to hide the checkbox ( there is no way to make it read only).
    To do this, I make the multipleselectionbean as rendered=false. But when the page is committed again, the row selection is getting changed back to "N" for all rows.
    Now if I don't hide the multipleselection bean, the checkboxes appear as selected and the commit doesn't change the value to "N".
    Hope the problem is clear now.

  • Set focus on item that selected in multiple-selection list box field in infopath

    Hi
    I have  multiple-selection list box field in infopath that have for example 40 items. (I customize sharepoint list with infopath),then
     publish infopath form in to sharepoint list. users want to add new item,when they selected or checked each item in multiple selection list box, after that automatically control focus on first item, but I want to focus remain on that item
    I was selected. Why this happen?! I also set postback settings to “never” in multiple-selection list box properties. But didn’t work.
    Thanks.

    Hi,
    According to your post, my understanding is that you wanted  to find several columns based on user selection of checkboxes in one of the Multiple-selection List Box.
    I recommend to customize the form to concatenate values from choice field (with multiple values) into single line text box, and then hide the fields based on the text box value.
    We can follow the steps as following:
    Add a text box control(filed 3) on the form to hold the value selection in the multiple selection list box.
    Set the default value for the text box control as
    substring-after(eval(eval(Value, 'concat(., ";")'), ".."), ";")
    (you need to change the ‘Value’ in the formula to your multiple selection list box name: filed1).
    Add the conditional formatting on the flied: flied 3 does not contain value (you need to change the ‘Value’ in the formula to your multiple selection list box value.).
    In addition, you can add Formatting action to hide the text box control.
    Here are the result screenshots for you to take a look at:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to hide some select-option of Logical Database in report?

    How to hide select-option of  Logical Database in report?eg . In Logical Database 'PNP' , my code is 'GET  PERNR' , excute the report , select-screen is displayed . I want to hide some select-options , such as PNPPERNR-LOW .
    Edited by: rongrong wang  on Mar 26, 2008 9:31 AM

    U need to write code in initialization as
    initialization.
    loop at screen.
    if screen-name = 'PNPPERNR-LOW'.
    screen-active = '0'.
    modify screen.
    endif.
    if screen-name = 'PNPPERNR-HIGH'.
    screen-active = '0'.
    modify screen.
    endif.
    endloop.

  • Multiple Select in same Query

    I'm building a report based on a single table in APEX. The report requires the following.
    select user, project, count(start date ), project, count(end date) where date between 01-jan-07 01-feb-07
    (simplified to show the idea)
    basicaly a count of projects that started between two dates and the ones that ended between the same two dates relating to the user.
    I have writen the selects to do both parts and they work BUT is it posible to glue them together in a single statement?
    I tried to searching the forum on "multiple selects" but never realy got anything close.
    Is it possible to do this type of select? If so does it have a special name (so I can try a search on that name)
    Thanks
    Bjorn

    First of all, '11-MAY-06' and '19-MAY-06' are not dates, they are strings. This has some important disadvantages:
    1) Oracle has to implicitly convert them to a date, when they are being compared to a date column
    2) Your application will be NLS (National Language Support) dependent, so they might break when you change a setting
    3) When compared to a varchar2 or other string column, the comparison will give incorrect results. For example: 12-MAY-06 will be between 06-JAN-06 and 18-JAN-06
    Bottom line: convert those dates to real dates using the to_date function, or the date 'yyyy-mm-dd' variant.
    Back to your question, apparently you don't want to count the number of occurences of CON_ACTUAL_START and CON_SIGN_OFF, but you only want to count them when this date is between the two boundary values. So use the following:
    select mli_clo
         , count(case when con_actual_start between date '2006-05-11' and date '2006-05-19' then 1 end)
         , count(case when con_sign_off between date '2006-05-11' and date '2006-05-19' then 1 end)
    ...Regards,
    Rob.

  • How to get multiple selections from jsp page in my servlet

    Hello Everyone,
    I've a list that allows users to make multiple selections.
    <select name=location multiple="multiple">
        <option>
             All
        </option>
        <option>
             Hyd
        </option>
        <option>
             Dub
        </option>
        <option>
             Mtv
        </option>
      </select>I want to get the selections made by user in jsp page from my servlet, selections can be multiple too.
    ArrayList locList = new ArrayList();
    locList = request.getParameter("location");when I do so, I get compilation error as the request returns string type. How do I then get multiple selections made by the user.
    Please let me know.

    For those kind of basic questions it would help a lot if you just gently consult the javadocs and tutorials.
    HttpServletRequest API: [http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpServletRequest.html]
    Java EE tutorial part II: [http://java.sun.com/javaee/5/docs/tutorial/doc/]
    Coreservlet tutorials: [http://courses.coreservlets.com/Course-Materials/]

Maybe you are looking for

  • REP-1401: 'cf_changetotalformula': Fatal PL/SQL error occurred.

    The program is finding no data in some place and is erroring out. when i run the report i get the following error REP-3000: Internal error starting Oracle Toolkit. MSG-00010: EC installation status I MSG-00003: Calling the archiving routine with para

  • Logical Components for a project

    Hi, We have ECC6.0 on which we have applied the Enhancement Package 2.0. While trying to create a project in solution manager for the Business Sceario we selected it is requiring Logical component for SAP ERP Enhance Package. While trying to create t

  • Oracle 7.3 import to Oracle 8i Enterprise Edition

    Due to data file block corruption we had to install Oracle 8i in NT. After successful installation we tried importing 7.3.4 data to 8i, after importing table data it seeems the import process got hung, the CPU usage shows 100% and the application see

  • Connect MBP to TV using RCA Cables

    Hi. Is there a way I can connect my MacBook Pro to my older TV just using RCA? Basically I have Red, Yellow and White open ports on my TV and wondered if there was a cable or a converter of some kind that I could connect my computer to and then conne

  • Table containing due date and billing amount of a vendor

    Dear Friends,                        I need to get the due date and billing amount of the vendors.So please let me know which  DDIC table will give me this information. thanks, jeevan.