Multiple Listbox (dropdown) in ALV

All,
I have an ALV using class CL_GUI_ALV_GRID (Editable) and have drop down in 2 different columns , using following but in display both the columns shows same drop down values as OR & AND.
Any Info?
  ls_fcat-fieldname = 'DROPDOWN_F4_1'.
  ls_fcat-datatype  = 'INT4'.
  ls_fcat-checktable = '!'.
  ls_fcat-no_out    = c_x.
  append ls_fcat to pt_fieldcat.
  clear ls_fcat.
  ls_fcat-fieldname = 'DROPDOWN_F4_2'.
  ls_fcat-datatype  = 'INT4'.
  ls_fcat-checktable = '!'.
  ls_fcat-no_out    = c_x.
  append ls_fcat to pt_fieldcat.
  ps_dropdown-handle = '1'.
  ps_dropdown-value = ' '.
  append ps_dropdown to pt_dropdown.
  ps_dropdown-handle = '1'.
  ps_dropdown-value = 'AND'.
  append ps_dropdown to pt_dropdown.
  ps_dropdown-handle = '1'.
  ps_dropdown-value = 'OR'.
  append ps_dropdown to pt_dropdown.
  call method g_grid->set_drop_down_table
    exporting
      it_drop_down = pt_dropdown.
  ps_dropdown-handle = '2'.
  ps_dropdown-value = ' '.
  append ps_dropdown to pt_dropdown.
  loop at i_ynetstat.
    ps_dropdown-handle = '2'.
    ps_dropdown-value = i_ynetstat-status.
    append ps_dropdown to pt_dropdown.
  endloop.
  call method g_grid->set_drop_down_table
    exporting
      it_drop_down = pt_dropdown.

Hi,
I tried your fieldcatalog and it is working correctly...The only thing I changed is the data type from INT4 to CHAR.
Try changing to CHAR data type.
DATA: ok_code     TYPE sy-ucomm,
      g_container TYPE scrfname VALUE 'CONTAINER1',
      g_grid      TYPE REF TO cl_gui_alv_grid,
      g_custom_container TYPE REF TO cl_gui_custom_container,
      gs_layout          TYPE lvc_s_layo.
DATA: pt_dropdown TYPE lvc_t_drop,
      ps_dropdown TYPE lvc_s_drop,
      ls_fcat     TYPE lvc_s_fcat,
      pt_fieldcat TYPE lvc_t_fcat.
TYPES: BEGIN OF type_output,
         dropdown_f4_1 TYPE char10,
         dropdown_f4_2 TYPE char10,
       END OF type_output.
DATA: gt_outtab TYPE TABLE OF type_output.
START-OF-SELECTION.
  APPEND INITIAL LINE TO gt_outtab.
* Call the screen.
  CALL SCREEN 100.
*       MODULE PBO OUTPUT                                             *
MODULE pbo OUTPUT.
  SET PF-STATUS 'TEST'.
  SET TITLEBAR 'MAIN100'.
* Create the grid.
  IF g_custom_container IS INITIAL.
    CREATE OBJECT g_custom_container
      EXPORTING
        container_name = g_container.
    CREATE OBJECT g_grid
      EXPORTING
        i_parent = g_custom_container.
* field catalog.
    ls_fcat-fieldname = 'DROPDOWN_F4_1'.
    ls_fcat-drdn_hndl = '1'.
    ls_fcat-datatype  = 'CHAR'.  " Changed
    ls_fcat-checktable = '!'.
    APPEND ls_fcat TO pt_fieldcat.
    CLEAR ls_fcat.
    ls_fcat-fieldname = 'DROPDOWN_F4_2'.
    ls_fcat-drdn_hndl = '2'.
    ls_fcat-datatype  = 'CHAR'.    " Changed
    ls_fcat-checktable = '!'.
    APPEND ls_fcat TO pt_fieldcat.
* Drop down box values 1
    ps_dropdown-handle = '1'.
    ps_dropdown-value = ' '.
    APPEND ps_dropdown TO pt_dropdown.
    ps_dropdown-handle = '1'.
    ps_dropdown-value = 'AND'.
    APPEND ps_dropdown TO pt_dropdown.
    ps_dropdown-handle = '1'.
    ps_dropdown-value = 'OR'.
    APPEND ps_dropdown TO pt_dropdown.
    CALL METHOD g_grid->set_drop_down_table
      EXPORTING
        it_drop_down = pt_dropdown.
* Drop down box values 2
    ps_dropdown-handle = '2'.
    ps_dropdown-value = ' '.
    APPEND ps_dropdown TO pt_dropdown.
    ps_dropdown-handle = '2'.
    ps_dropdown-value = 'X'.
    APPEND ps_dropdown TO pt_dropdown.
    CALL METHOD g_grid->set_drop_down_table
      EXPORTING
        it_drop_down = pt_dropdown.
* Display the ALV.
    gs_layout-edit = 'X'.
    CALL METHOD g_grid->set_table_for_first_display
      EXPORTING
        is_layout       = gs_layout
      CHANGING
        it_fieldcatalog = pt_fieldcat
        it_outtab       = gt_outtab.
  ENDIF.
ENDMODULE.                    "pbo OUTPUT
Thanks
Naren

Similar Messages

  • How to create Multiple Selection Screen in ALV

    Hi,
    Can anybody tell me how to create the Multiple Selection screen in ALV reports.
    Plse give me code sample if possible.
    Thanks in advance
    KP

    Hi Rich,
    thanks for the reply.
    I am creating a report. in that for one field, i need to create a multiple selection screen. i mean in the output screen , i need to get the multiple selection screen for that field. in that i should be able to select multiple values, or single values or range of values.
    eg: if i take the field kunnr, i should be able to select the multiple kunnar values in the output screen. 
    Hope my problem is understood.
    Thanks
    KP

  • Using multiple LISTBOX in single Policy of Microsoft Group Policy .adm file?

    OK, I am writing a .adm file and here is code for a policy within a category
    CATEGORY !!A_CATEGORY
    POLICY !!A_POLICY
    KEYNAME "Software\Policies\ABC\ListBoxes"
    PART !!PART_1_Text LISTBOX
    ALUEPREFIX "FirstListBox"
    END PART
    PART !!DestPort_Label LISTBOX
    VALUEPREFIX "SecondListBox"
    END PART
    END POLICY
    END CATEGORY
    The .adm file is successfully loaded in group policy editor without any problem and shows two list boxes too. I can give input for both list boxes and apply/ok without any problem. The real problem is that on registry location "Software\Policies\ABC\ListBoxes",
    there comes only registry values as SecondListBox1, SecondListBox2, SecondListBox3 .... and no values for FirstListBox. Ideally, there should also be FirstListBox1, FirstListBox2, FirstListBox3 ...
    I did some experiments and found that only the registry values with last PART (i.e. SecondListBox) are shown in registry and all other PART values before that are ignored. Lastly, the problem is only with multiple LISTBOX in a single policy. I can use multiple
    CHECKBOX, COMBOBOX, DROPDOWNLIST, EDITTEXT, TEXT and NUMERIC within a single policy without any problem both in Windows 2003 Server and Windows 2008R2 Server
    Baig

    > and no values for FirstListBox. Ideally, there should also be
    > FirstListBox1, FirstListBox2, FirstListBox3 ...
    Since you do not use "ADDITIVE" it seems the whole key is cleaned out
    before processing the second list. Give it a try :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Multiple column dropdown

    I need help with creating a multiple column drop down menu. I found jquery mega menu but I was wondering if there's a way to do this in dreamweaver. any help is apprciated.

    Hi Nancy,
    Designers don¹t care about coding issues and browser compatibility. They
    want what they want. I know I could do it with css3 but that doesn¹t help
    with IE. And the rest of the world still depends on IE. I¹ve found a way
    using images and the jquery megamenu. It¹s a lot of code and a little messy.
    Man I hate IE!
    Mark Morse
    Marketing Services
    Sanmina-SCI
    20091 Ellipse
    Foothill Ranch, CA 92610
    949-643-7255 ext 2261
    From: "Nancy O." <[email protected]>
    Reply-To: <[email protected]>
    Date: Wed, 4 Nov 2009 19:32:07 -0700
    To: Mark Morse <[email protected]>
    Subject: multiple column dropdown
    Which browser does the "designer" use?  If he/she uses a REAL browser, you
    might squeek by with CSS3 shadow boxes and rounded corners:
    http://www.leemunroe.com/ie-rounded-corners-css3/
      Just a thought,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://www.alt-web.com/ http://www.twitter.com/altweb

  • Multiple checkbox selection in ALV and updating internal table

    Dear Expert,
    Can anyone tell me how to handle the multiple checkbox selection in ALV Grid report and then updating the internal table.
    I tried the option but it works only when i select only 1 row in ALV.
                    DO L_LINES TIMES.
                      read table icoas index rs_selfield-tabindex.
                      if sy-subrc = 0.
                        ICOAS-NOCHK = 'X'.
                        modify ICOAS INDEX rs_selfield-tabindex TRANSPORTING NOCHK.
                      ENDIF.
                    ENDDO.
    Requires help....
    Regards & Thanx,
    Bhupathi.

    Hi,
    Use this method to capture the check box event. Write this once you create your grid using CREATE OBJECT grid1.
    DATA:      GRID1 TYPE REF TO CL_GUI_ALV_GRID,
    CALL METHOD grid1->register_edit_event
      EXPORTING
        i_event_id = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED
      EXCEPTIONS
        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.
      LOOP AT T_GRIDDETAILS INTO WA_GRIDDETAILS.
        IF WA_GRIDDETAILS-CHECKBOX = 'X'.
                  "Do your operation
        ENDIF.
        CLEAR WA_GRIDDETAILS.
      ENDLOOP.

  • Multiple Row Select in ALV

    Hi All.
    I am trying to set multiple selection on in ALV using the method SET_SELECTION_MODE of IF_WD_SELECT_OPTIONS.  (if_salv_wd_table_settings)
    But it is always resulting in a dump saying that :
    Selection type Multi is not allowed in combination with the selection Single of the data node
    Now how can we change the context of the ALV?
    What am i doing wrong here?
    Thanks.

    Hi this works fine here:
    data: lr_table_settings type ref to if_salv_wd_table_settings.
    lr_table_settings->set_read_only( abap_false ).
    lr_table_settings->set_enabled( abap_true ).
    lr_table_settings->set_selection_mode( CL_WD_TABLE=>e_selection_mode-multi ).
    The node i bound to the ALV has selection 0..n.
    Cheers,
    Sascha

  • Selecting multiple rows of an alv

    Hi All,
    I have a requirement where in i have to select multiple rows of an alv and when i click a button i should get the data of all the selected rows, i am able to select only one row by default , how to select multiple rows or records,i am new to this Web dynpro alv , can aynbody please help me on this.
    Thanks,
    Praveen.

    hi, praveen kumar.
    About how to make "Multiple-select" of ALV available, you can take a reference of the following coding. Just one example:
    ****ALV Config****
      DATA:
          lr_salv_wd_table TYPE REF TO iwci_salv_wd_table,
          l_value TYPE REF TO cl_salv_wd_config_table,
          lr_table_settings TYPE REF TO if_salv_wd_table_settings.
       lr_salv_wd_table = wd_this->wd_cpifc_alv_child( ).  "Your statically declared ALV component usage
       l_value = lr_salv_wd_table->get_model( ).
    * tabel setting
      lr_table_settings ?= l_value .
      lr_table_settings->set_selection_mode( cl_wd_table=>e_selection_mode-MULTI ).
    About how to get your selected records of ALV, you can make use of the context node bound to your ALV component. For example,
    ****get selected elements****
    lt_elems = lo_node->GET_SELECTED_ELEMENTS(
          INCLUDING_LEAD_SELECTION = abap_true ).
    These are just examples. For detail, you can search them.
    Thanks.Best wishes.

  • Automatically Selecting Values in Multiple Values Dropdown Parameters

    Hi,
    Is it possible to have parameter values automatically selected in a dropdown in an SSRS report?  I'm using SQL Server 2008 R2 Enterprise edition.  Basically what I have in mind is this:  The user wants to save his parameter selections in a
    table that will be available as a dropdown parameter of a report, call it
    ParamUserSelection.  ParamUserSelection is the first parameter of the report and other parameters depend on it.
    We have two other parameters called ParamCountry and
    ParamState.  These are dropdown text parameters that allow multiple values to be selected.  Populating the list is not a problem as I use a standard cascading parameter technique.  What I'm trying to do is the following:
    The user selects a value from ParamUserSelection, call it Selection1.  Selection1 is stored in a table and has all the values that should be selected in ParamCountry and ParamState.  In other words, it should tell these two subsequent parameters,
    what values should be selected in their respective dropdowns.  For example if the user selects Selection1 from ParamUserSelection, it reads the values in the database table and if it finds US and Canada for countries and CA, NY, ON for states, ParamCountry
    should be populated with all the countries available in the database but should have ONLY US and Canada as selected values and ParamState should be populated with all the states in the database but should have ONLY CA, NY and ON as selected values.
    If then I click on selection 2 and it has ParamCountry = US, ParamState = TX,OH in its database then again all countries and states should be in the dropdown but only US for ParamCountry and TX,OH for ParamState should be selected.
    Is this possible with SSRS?  I've tried using the Default Values tab with a dataset that returns all the selected values under Report Parameters Properties but this only works for the first time that I select ParamUserSelection.  It appears that
    if I change the value of ParamUserSelection again, the default values are not invoked.
    If this is possible, please tell me how to do this as I have been struggling for a day with it.

    Hi Comedian,
    According to your description, you have a report with three parameters (ParamUserSelection, ParamCountry, ParamState). The available value lists of ParamCountry and ParamState are based on the selection of a value for ParamUserSelection. Now you want to
    show all countries and states in their parameter dropdown list when selecting a user selection instead of only showing the cascading values. Right?
    In Reporting Service, when we want a parameter to show the cascading values, we only need to set the corresponding dataset and field for Default Values in this parameter. In this scenario, if we want to show all countries and states in their dropdown list,
    we just need to set another dataset for Available Values in those parameters so they can display all countries and states. We have tested your case in our local environment. Since you have done with the cascading parameters, we just give some part of steps
    and screenshots for your reference:
    We created two tables (dbo.Selection, dbo.states) based on your information.
    Create one more dataset (named dataset2) in your report, put text below into your query:
    select distinct Country from states
    Create another dataset (named dataset3), put text below into your query:
    select distinct State from states
    Go to your ParamCountry, in Available Values, select dataset2 and Country for dataset and field.
    Go to your ParamState, in Available Values, select dataset3 and State for dataset and field.
    Save and preview. It looks like below:
    Reference:
    Report Parameters (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou
      

  • How to select multiple records in the ALV POP UP by using oops

    Hi All,
    We have a requirement of ALV POP UP by using the OOPS. How to select the multiple records in the POP UP and After selecting that i want do Inteactive ALV means again one more POP UP in ALV.
    Thanks for help....
    Regards,
    Bharani

    Hello Bharani
    Displaying an ALV list in a popup is by no means different from a list displayed on a main screen. The only thing you need to consider is that you set the right screen level when creating the parent container for the ALV.
    For more details refer to thread in CL_GUI_SPLITTER_CONTAINER  ALV list  is not show in called screen
    " step 1:
      CREATE OBJECT gr_spliter
        EXPORTING
          parent = cl_gui_container=>screen0 " For first popup use: =>screen1
          rows = 1
          columns = 2.
    Regards
      Uwe

  • Multiple Hotspots in a ALV Grid single column

    Hi Experts,
    My ALV Grid report output looks like below....
    If you observe below output, column 3 has multiple documents each one separated by ' ; '. Now, I would like to assign hotspot on each documents like DOC1, DOC2, DOC3, etc.
    Heading#:          COL1 | COL2 | COL3 |
    Records1:              1      |  xxxxx  | _DOC1_ ; DOC2 ; *DOC3*
    Records2:              2      |  xxxxx  | _DOC1_ ; DOC5 ;
    I know, we can assign hotspot for entire column. but my requirement is multiple hot spots in a single column.
    Please help me on this?
    Thanks in Advance
    Raghu

    As I mentioned earlier,
    My ALV Grid report output looks like below....
    Heading#: FIELD1 | FIELD2 | FIELD3 |
    Records1: 1 | xxxxx | DOC1 ; DOC2 ; DOC3
    Records2: 2 | xxxxx | DOC1 ; DOC5 ;
    If you observe above output, field 3 has multiple documents each one separated by ' ; '.
    When I click on DOC1, it supposed to display related picture on the POP-Up Screen. Similarly when I click on DOC2, it supposed to display that document picture on POP-up screen.
    Before going to do this, first I need to assign hotspots on each documents like DOC1, DOC2, DOC3, etc.
    Please help me.

  • Dropdown in ALV Grid (OO)

    Hi All,
    I am populating a dropdown in the ALV grid, Now I have a requirement to fill this dropdown when I press enter button after selecting a value in the grid for a previous column ,I have written the code for this but the values are not getting filled into the dropdown , I tried debug the program and found out that the internal table I am using to fill the dropdown is getting filled with correct values but when I am calling the function
    CALL METHOD g_grid->set_drop_down_table
        EXPORTING
          it_drop_down_alias = lt_dropdown.
    the values are not getting passed to that field in the grid.
    Please help.
    I am posting the code also.
    DATA : lt_ct1_mat TYPE STANDARD TABLE OF eina .
      DATA:  ls_dropdown TYPE lvc_s_dral.
      DATA : wa like line of lt_ct1_mat.
      SELECT * FROM eina INTO TABLE lt_ct1_mat
               WHERE matnr = l_partno.
      IF NOT lt_ct1_mat[] IS INITIAL.
      clear lt_dropdown[].
        LOOP AT lt_ct1_mat into wa.
          ls_dropdown-handle = '1'.
          ls_dropdown-value = wa-lifnr.
          APPEND ls_dropdown TO lt_dropdown.
          CLEAR ls_dropdown.
        ENDLOOP.
      ENDIF.
      CALL METHOD g_grid->set_drop_down_table
        EXPORTING
          it_drop_down_alias = lt_dropdown.
    Thanks

    Hi,
    Please check links,
    ALV Grid Control - Dropwdown / Checkbox
    Question about triggering event for ALV dropdown
    Regards,
    Hema.
    Reward points if it is useful.

  • Multiple selection in the ALV is not possible after system upgrade

    Hi Colleague,
    I had been using an ALV, which was performing as desired before, but recently we had a system upgrade to NW7.0 and after that in this ALV multiple selection of records/rows is not allowed.
    The colleagues who upgraded the system suggested that this may be because this ALV is instantiated at many places. I would request you to kindly provide a solution for the same ASAP, as I am not able to proceede ahead.
    Warm regards,
    Roopesh

    Hi all,
    Thanks for your replies, I had figured out the actual problem. The reason was, the referance of the selected rows was lost as I was doing bind elements to the context after moving to wddomodify.
    So I figured out an alternative solution to avoid binding on selection of records.
    Best regards,
    Roopesh
    Edited by: Roopesh Dolle on Apr 14, 2011 7:04 AM
    Edited by: Roopesh Dolle on Apr 14, 2011 7:05 AM

  • Multiple line header for ALV

    I am using  CL_SALV_TABLE (List_Display = X) to create a ALV report. I am willing to change it to function module REUSE_ALV_LIST_DISPLAY if it serves my requirement.
    The header for the report needs to be multiple lines (8 lines). How can I accomplish this?
    I looked into the possibility of using TOP_OF_PAGE event but I will have to hard code the vertical positions of the headers and since it is ALV and you can remove columns at will, I dont think this solution will work. Also if the columns are optimized or output length changed by the user, the positioning of the headers will be ruined.
    Currently the header can only be of one line, how can we make the header to display a table of contents.
    H1-L1          H2-L1          H3-L1
    H1-L2          H2-L2          H3-L2
    H1-L3          H2-L3          H3-L3
    H1-L4          H2-L4          H3-L4
    H1-L5          H2-L5          H3-L5
    H1-L6          H2-L6          H3-L6
    H1-L7          H2-L7          H3-L7
    H1-L8          H2-L8          H3-L8
    Thank you.

    Please guide me hw to put internal table field at report header in ALV.
    this is my field catalog.
    wa_fieldcat-row_pos = 1.
      wa_fieldcat-col_pos = 1.
      wa_fieldcat-tabname = 'ITAB'.
      wa_fieldcat-fieldname = 'VBELN'.
      wa_fieldcat-seltext_m = 'SalesOrderNo'.
      wa_fieldcat-outputlen = '10'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    Also i wnt to total 4 field at header level and other is detail level.
    Please guide me hw to do.
    thnks
    Bhavesh

  • How to provide view selection dropdown like ALV

    Hi all,
    As you know, ALV can save your own view but it's embeded in component SALV_WD_TABLE. And I want to provide such a dropdown on selection screen before searching. Can I reference this dropdown directly?
    I've found out the db tables that store these info wdy_conf_usert and WDY_CONF_USER. It's feasible to select out relevant entries and fill the dropdown. Anyway, I don't think it's a good idea because I have to do so for each screen.
    Thanks,
    Felix

    Hi all,
    As you know, ALV can save your own view but it's embeded in component SALV_WD_TABLE. And I want to provide such a dropdown on selection screen before searching. Can I reference this dropdown directly?
    I've found out the db tables that store these info wdy_conf_usert and WDY_CONF_USER. It's feasible to select out relevant entries and fill the dropdown. Anyway, I don't think it's a good idea because I have to do so for each screen.
    Thanks,
    Felix

  • Multiple Input Rows In ALV Grid (Editable)

    Hi,
    I have an editable ALV grid and need to have multiple blank rows ready for input. Something similar to what happens when you click the "New Entries" button in SM30 (Table Maintainance).
    There is a local function for appending lines in the ALV grid toolbar but this only allows a single entry.
    I have replaced the local function with my own button (same icon etc) and on user_command event, I am appending several blank lines to my output table.
    However these lines are not being shown on the screen. I have looked through the layout and field catalog but there is no field to allow blank lines to be shown.
    My 2 questions are:
    1. Is there some standard way of entering multiple entries in ALV Grid Editable.
    2. If not then how to allow blank lines to be shown as ready for input.
    Also if someone could suggest a way to do error checking for all entries on the screen especially duplicate entries I will be extremely grateful.
    Many Thanks,
    Preet

    Hi, Preet!
    You can easily do whatever checks you wish. You should declare an event handling method for event DATA_CHANGED and call the ADD_PROTOCOL_ENTRY method of the ER_DATA_CHANGED event parameter (it's an object of the class CL_ALV_CHANGED_DATA_PROTOCOL). You must not forget to set handler for your ALV grid.
    For example, this piece of code checks for all changed fields resulting in error message if they are initial. In short, this makes all the fields obligatory.
    METHODS: on_data_changed FOR EVENT data_changed OF cl_gui_alv_grid IMPORTING er_data_changed.
    SET HANDLER your_object->on_data_changed FOR your_alv_grid.
    METHOD on_data_changed.
    DATA: s_mod_cell TYPE lvc_s_modi.
    LOOP AT er_data_changed->mt_mod_cells INTO s_mod_cell.
        IF s_mod_cell-value IS INITIAL.
    *       issue message 'Make an entry in all required fields'
            CALL METHOD er_data_changed->add_protocol_entry
              EXPORTING i_msgid     = '00'
                        i_msgno     = '055'
                        i_msgty     = 'E'
                        i_fieldname = s_mod_cell-fieldname
                        i_row_id    = s_mod_cell-row_id.
        ENDIF.
    ENDMETHOD.
    Furthermore, if you make your class inherited from CL_GUI_ALV_GRID you can make use of protected attribute MT_OUTTAB which is a data object referencing your output table. Then you can have:
    FIELD-SYMBOLS: <outtab> TYPE STANDARD TABLE.
    ASSIGN me->mt_outtab->* TO <outtab>.
    * do whatever you want with <outtab>
    Hope this helps.
    Kind regards,
    Igor
    P.S. Regarding the blank lines that you need, what's wrong with standard ALV grid buttons "Append row" and "Insert row" which appear whenever the grid is editable (unless you deliberately remove them)? They work just fine with me (just like on SM30). I don't see reason for programatically appending lines to your internal table.

Maybe you are looking for

  • Photos loaded from XML

    i found a great tutorial on how to create a photo gallery that loads the content from an xml file. right now, the code cycles through the pictures, and when it reaches the end it stops. also, when you first launch the gallery (at the beginning/first

  • Having Problems Converting Word Doc to PDF and Retaining Links

    My company recently upgraded company wide to Reader 9 (for Windows). My department develops documentation and we currently use Acrobat Professional 8. Recently we have had several issues where we try to convert a Word 2003 or PowerPoint 2003 doc to P

  • Maintain a Webi schedule outside of BOE

    My requirement is this: A single parameterised webi document needs to link to instances of itself, passing in parameters to input prompts from parent to child.  In order to aid performance, the intention is to schedule the document so that an instanc

  • BT and Java - Btl2Cap Connection (Mobile phone and Digital Pen)

    Hi! First a short Introduction: For a project I have to stream data from Maxell Penit DP201(4.1) to a mobile device (over a midlet). Data Connection is built up over Bluetooth. My Questions are: Is btl2cap the right method for connecting digital pen

  • Adding features to Adobe Connect MP3 Player Extension?

    We have a few feature requests for the Adobe Connect MP3 Player Extension. Could you make it much more slim and compact in all modes? Allow the playlist to contain only 1 file Allow me to show/hide the playlist instead of needing to guess which song