Grid problem

Hi,
In the output report iam using pushbuttons in application toolbar.
I am modifying the internal table in PAI but changes are not effecting in the report output because in PBO iam using
CALL METHOD alv_list->set_table_for_first_display
please let me know what is the solution for this.
regrds,
vijay

after changing the internal table you have to call the method refresh_table_display.
call method alv_list->refresh_table_display.

Similar Messages

  • ALV GRID Problem with reading contents

    Hi there! I'm quite new with ABAP and I have some problems with the syntax of it. Maybe I should first describe my aim and then I'll show you my code.
    1. I read contents from two database tables, called 'zbc_dan_registry' and 'zbc_dan_category'.
    'zbc_dan_registry' has 2 columns: name, value.
    zbc_dan_category' has 1 column: category.
    Now I want to have an ALV Grid, that displays the contents of 'zbc_dan_registry' and one additional column with dropdown fields, where the user can select a category for each row. This is, what my code already does.
    Now I want to save the contents of the whole table in a new table 'zbc_dan_registrz' (you see: 'registrz', not 'registry'!) with 3 columns:
    name, category, value.
    My problem is, how can I read the contents of the ALV Grid, with the user selected category for each row, and save them in an internal table? I've tried to adapt the code of "BCALV_EDIT_04", but I don't get it running.
    Some detailled help would be great, you know, I'm really working hard to understand ABAP, but it's really hard for me. Thanks for your support and help!!
    Here's my code so far:
    *& Report  ZBC400_DAN_TESTNO4
    REPORT  ZBC400_DAN_TESTNO4.
    DATA: lt_registrz TYPE TABLE OF zbc_dan_regstrz WITH HEADER LINE,
          lt_category TYPE TABLE OF zbc_dan_category WITH HEADER LINE,
          ls_category TYPE zbc_dan_category, "Struktur Kategorie
          ok_code LIKE sy-ucomm,
          container_r TYPE REF TO cl_gui_custom_container,
          grid_r TYPE REF TO cl_gui_alv_grid,
          gc_custom_control_name TYPE scrfname VALUE 'CONTAINER_REG',
          fieldcat_r TYPE lvc_t_fcat,
          layout_r TYPE lvc_s_layo,
          lt_ddval TYPE lvc_t_drop,
          ls_ddval TYPE lvc_s_drop,
          c TYPE i.
    CLASS lcl_event_receiver DEFINITION DEFERRED.
      DATA g_verifier TYPE REF TO lcl_event_receiver.
      DATA: BEGIN OF gt_outtab OCCURS 0.
        INCLUDE STRUCTURE zbc_dan_regstrz.
        DATA: celltab TYPE lvc_t_styl.
      DATA: END OF gt_outtab.
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
      TYPES: BEGIN OF lt_registrz_key.         "Struktur mit den Schlüsseln der Tabelle 'Registry'
        TYPES:  name TYPE zbc_dan_name,
                value TYPE zbc_dan_value,
                category TYPE zbc_dan_cat.
      TYPES: END OF lt_registrz_key.
      TYPES:  ls_registrz_keys TYPE STANDARD TABLE OF lt_registrz_key,
              ls_registrz_table TYPE STANDARD TABLE OF zbc_dan_regstrz.
      METHODS: get_inserted_rows EXPORTING inserted_rows TYPE ls_registrz_keys.
      METHODS: refresh_delta_tables.
      METHODS: handle_data_changed FOR EVENT data_changed OF cl_gui_alv_grid IMPORTING er_data_changed.
    *  METHODS: get_inserted_rows EXPORTING inserted_rows TYPE registrz_keys.
    *  METHODS: refresh_delta_tables.
      PRIVATE SECTION.
      DATA: inserted_rows TYPE ls_registrz_keys.
      DATA: error_in_data TYPE c.
      METHODS: get_cell_values IMPORTING row_id TYPE int4 pr_data_changed TYPE REF TO cl_alv_changed_data_protocol EXPORTING key TYPE lt_registrz_key.
    ENDCLASS.
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_data_changed.
        DATA: ls_good TYPE lvc_s_modi,
              ls_new TYPE lvc_s_moce.
        error_in_data = space.
        IF error_in_data = 'X'.
          CALL METHOD er_data_changed->display_protocol.
        ENDIF.
      ENDMETHOD.
      METHOD get_cell_values.
        CALL METHOD pr_data_changed->get_cell_value
          EXPORTING i_row_id = row_id i_fieldname = 'NAME'
            IMPORTING e_value = key-name.
        CALL METHOD pr_data_changed->get_cell_value
          EXPORTING i_row_id = row_id i_fieldname = 'VALUE'
            IMPORTING e_value = key-value.
        CALL METHOD pr_data_changed->get_cell_value
          EXPORTING i_row_id = row_id i_fieldname = 'CATEGORY'
            IMPORTING e_value = key-category.
      ENDMETHOD.
      METHOD get_inserted_rows.
        inserted_rows = me->inserted_rows.
      ENDMETHOD.
      METHOD refresh_delta_tables.
        clear me->inserted_rows[].
      ENDMETHOD.
    ENDCLASS.
    START-OF-SELECTION.
        SELECT client name value
          INTO CORRESPONDING FIELDS OF TABLE lt_registrz FROM zbc_dan_regstry.
        SELECT category INTO CORRESPONDING FIELDS OF TABLE lt_category FROM zbc_dan_category.
    CALL SCREEN 0100.
    MODULE user_command_0100 INPUT.
      CASE ok_code.
        WHEN 'BACK'.
          SET SCREEN 0.
          MESSAGE ID 'BC400' TYPE 'S' NUMBER '057'.
        WHEN 'SAVE'.
          PERFORM save_data.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.
    MODULE clear_ok_code OUTPUT.
      CLEAR ok_code.
    ENDMODULE.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'DYNPRO100'.
      SET TITLEBAR 'D0100'.
    ENDMODULE.
    MODULE display_alv OUTPUT.
      PERFORM display_alv.
    ENDMODULE.
    FORM display_alv.
    IF grid_r IS INITIAL.
    *----Creating custom container instance
      CREATE OBJECT container_r
      EXPORTING
        container_name = gc_custom_control_name
      EXCEPTIONS
        cntl_error = 1
        cntl_system_error = 2
        create_error = 3
        lifetime_error = 4
        lifetime_dynpro_dynpro_link = 5
        others = 6.
        IF sy-subrc <> 0.
    *--Exception handling
        ENDIF.
    *----Creating ALV Grid instance
        CREATE OBJECT grid_r
        EXPORTING
          i_parent = container_r
        EXCEPTIONS
          error_cntl_create = 1
          error_cntl_init = 2
          error_cntl_link = 3
          error_dp_create = 4
          others = 5.
          IF sy-subrc <> 0.
    *--Exception handling
          ENDIF.
          CREATE OBJECT g_verifier.
          SET HANDLER g_verifier->handle_data_changed FOR grid_r.
    *----Preparing field catalog.
          PERFORM prepare_field_catalog CHANGING fieldcat_r.
    *----Preparing layout structure
          PERFORM prepare_layout CHANGING layout_r.
    *----Here will be additional preparations
    *--e.g. initial sorting criteria, initial filtering criteria, excluding
    *--functions
          CALL METHOD grid_r->set_table_for_first_display
          EXPORTING
    * I_BUFFER_ACTIVE =
    * I_CONSISTENCY_CHECK =
    * I_STRUCTURE_NAME =
    * IS_VARIANT =
    * I_SAVE =
    * I_DEFAULT = 'X'
            is_layout = layout_r
    * IS_PRINT =
    * IT_SPECIAL_GROUPS =
    * IT_TOOLBAR_EXCLUDING =
    * IT_HYPERLINK =
          CHANGING
            it_outtab = lt_registrz[]
            it_fieldcatalog = fieldcat_r
    * IT_SORT =
    * IT_FILTER =
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error = 2
            too_many_lines = 3
            OTHERS = 4.
          IF sy-subrc <> 0.
    *--Exception handling
          ENDIF.
          ELSE.
            CALL METHOD grid_r->refresh_table_display
    * EXPORTING
    * IS_STABLE =
    * I_SOFT_REFRESH =
          EXCEPTIONS
            finished = 1
            OTHERS = 2.
          IF sy-subrc <> 0.
    *--Exception handling
          ENDIF.
        ENDIF.
        CALL METHOD grid_r->register_edit_event
          EXPORTING
            i_event_id = cl_gui_alv_grid=>mc_evt_enter.
        CALL METHOD grid_r->register_edit_event
          EXPORTING
            i_event_id = cl_gui_alv_grid=>mc_evt_modified.
    ENDFORM.
    FORM prepare_field_catalog CHANGING pt_fieldcat TYPE lvc_t_fcat.
      DATA ls_fcat TYPE lvc_s_fcat.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
      EXPORTING
        i_structure_name = 'ZBC_DAN_REGSTR2'
      CHANGING
        ct_fieldcat = pt_fieldcat[]
      EXCEPTIONS
        inconsistent_interface = 1
        program_error = 2
        OTHERS = 3.
      IF sy-subrc <> 0.
    *--Exception handling
      ENDIF.
      LOOP AT pt_fieldcat INTO ls_fcat.
        CASE ls_fcat-fieldname.
          WHEN 'NAME'.
            ls_fcat-coltext = 'Name'.
            ls_fcat-outputlen = '40'.
            MODIFY pt_fieldcat FROM ls_fcat.
          WHEN 'VALUE'.
            ls_fcat-coltext = 'Wert'.
            ls_fcat-outputlen = '30'.
            MODIFY pt_fieldcat FROM ls_fcat.
          WHEN 'CATEGORY'.
              LOOP AT lt_category into ls_category.
                ls_ddval-handle = 1.
                ls_ddval-value = ls_category-category.
    *            ls_ddval-style = cl_gui_alv_grid=>mc_style_enabled.
                APPEND ls_ddval TO lt_ddval.
             ENDLOOP.
             CALL METHOD grid_r->set_drop_down_table
                EXPORTING it_drop_down = lt_ddval.
            ls_fcat-edit = 'X'.
            ls_fcat-drdn_hndl = '1'.
            ls_fcat-coltext = 'Kategorie'.
            MODIFY pt_fieldcat FROM ls_fcat.
        ENDCASE.
      ENDLOOP.
    ENDFORM.
    FORM prepare_layout CHANGING ps_layout TYPE lvc_s_layo.
      ps_layout-zebra = 'X'.
      ps_layout-grid_title = 'Kategorie zur Registry hinzufügen'.
      ps_layout-smalltitle = 'X'.
    ENDFORM.
    FORM save_data.
      DATA: ls_ins_keys TYPE g_verifier->ls_registrz_keys,
            ls_ins_key TYPE g_verifier->lt_registrz_key,
            ls_registrz TYPE zbc_dan_regstrz,
            ls_outtab LIKE LINE OF gt_outtab,
            lt_instab TYPE TABLE OF zbc_dan_regstrz.
      CALL METHOD g_verifier->get_inserted_rows IMPORTING inserted_rows = ls_ins_keys.
      LOOP AT ls_ins_keys INTO ls_ins_key.
        READ TABLE gt_outtab INTO ls_outtab
        WITH KEY  name = ls_ins_key-name
                  value = ls_ins_key-value
                  category = ls_ins_key-category.
        IF sy-subrc = 0.
          MOVE-CORRESPONDING ls_outtab TO ls_registrz.
          APPEND ls_registrz TO lt_instab.
        ENDIF.
      ENDLOOP.
      INSERT zbc_dan_regstrz FROM TABLE lt_instab.
      CALL METHOD g_verifier->refresh_delta_tables.
      ENDFORM.

    Hi Hans,
    You raised the Question in the Webdynpro ABAP forum. Here its very diffcult to get the answer from this forum. Please close it here and raise the same question in ABAP General Forum there you will get faster and so many anwsers.
    Please close the question here.
    Warm Regards,
    Vijay

  • ALV Grid Problem in WebGUI

    Hi All,
    We've created an ALV grid using classes in R3 and we're testing it in WebGUI.  All of those scenarios are working fine in R3 however the behavior in WebGUI is different.  We're encountering a problem wherein the cellstyles are not being reflected (eg. a particular cell for a particular row should be grayed out if a particular field has this value).  Furthermore, if we enter a value in this field, it should automatically populate values for other fields (eg. column name - PERNR.  Once pernr is entered; column name - NAME should have a value automatically).  Another thing is, the Refresh button is  missing in WebGUI.  One more problem is that the error message for that particular column was not shown.  We're using the add_protocol_entry method, so it should generate a pop-up screen.
    Any solution for all these problems?  Are these problems limitations of the ALV Grid in WebGUI? 
    We'll appreciate all your responses.  Thanks a lot.

    Have a look at example code: BCALV_GRID_01, where they suppress the error by catching it...
    If you are using the ABAP Grid Control (OO object), you can still create the ALV list as a spool listing for the background job.
    The easiest way to do this is to put all the create object statements and method calls for the custom container and ALV grid object inside a subroutine (for example, present_grid).
    All that is required is a simple check of the sy-batch variable to determine if the program is being executed in the foreground or background.
    e.g. if sy-batch is initial.
    call screen 0100.
    else.
    perform present_grid.
    endif.
    In a PBO module of screen 0100, the subroutine present_grid is also performed.
    The set_table_for_first_display method will be invoked in the routine present_grid, however, due to the job being executed in the background, the ALV list output will be written as spool output for the background job.

  • Alv grid problem

    Hi,
    I m getting one problem in alv grid control.
    My o/p is looking like
    prog     xyz
    year      2006
    custno     country     name
    1256     uk     xy
    1563     us     mg
    The o/p is correct but when i press f3 button i got again heading as
    prog     xyz
    year     2006
    Will u tell me what is the problem here. I wanted to when i press f3 it will display my selection screen.
    Plz give me proper solution.

    Hi,
    This occurs because your output for alv is printed twice.
    1st with the header and then with the item.
    Try to print the whole at the same time.
    Regards,
    rajesh.

  • ITS 6.20 patch 18 ALV Grid problems

    Hi,
    We are in the midst of testing the ITS 6.20 patch 18 with EP6 SP12 and we have run into some problems that were not evident with 6.10. 
    First.  With IAC PP_MY_REQUIREMENTS (Requirements Profile) and PP_MY_PROFILEMATCHUP (Profile Matchup), there is now a visible horizontal bar that goes across the whole window.  It can be moved up and down.  This is not there in 6.10.
    Second.  With the new PZ31_EWT (Edit Qualifications) transaction, when you select a qualification on the left and it then appears on the right, the dropdown for the ALV grid does not stay droped down when clicked.  You have to hold the mouse button, and then when you drag over top of the choice that you want, it doesn't select it, BUT, if you use your arrow keys on the keyboard, it changes the value.
    Third.  With PV8I (Internal Training), when viewing the Booking Information in the bottom of the screen, the top line/header of the window is only 1/8 visible.
    Has anyone run into any of these problems before?  Does patch 19 or 20 (when it comes out) solve any of these problems?
    Sorry for all the ranting!!
    Cheers,
    Kevin

    May be try this in ITS forum for a better response.
    Internet Transaction Server (ITS)
    Regards
    Raja

  • Dreamweaver Fluid Grid Problems

      I am having some weird issues since the upgrade to Dreamweaver CC 2014.1.1. I have Dreamweaver installed on an Asus laptop with the following specifications:
    Windows 8.1 64bit
    Intel Core i7-3630QM
    NVIDIA GeForce GTX 670M 3gig
    NVidia Graphics Driver 9.18.13.4752
    24 gig ram
    256 SSD Drive (Program installed on this drive)
    750gb 7200 HD (files installed on this drive)
    The problems I am running into are as follows:
    When resizing the fluid grid in live view, I can select the right part of the div and drag it over to the left. When I try to click the left div and drag it over to the right it will not let me. I have to click to another view (for example from phone view to tablet then back to phone view) in order to drag the div over.
    If I have several pages open and I switch from one page to another the code from previous page is showing until I do a refresh.
    As many others are experiencing, it is slow when I type some text inside the div. Also when I change a CSS property (I have a separate attached CSS file) it takes a few seconds for the result to show in live view.   All in all when dealing with all this, it gets somewhat frustrating.
    I wasn't experiencing any problems like this before this upgrade.
    Any thoughts on what I can do on my end to help with this?

    Personally, I'd just go back to the older version and keep an eye on the forums until Adobe comes up with something. This is becoming much more commonplace with the latest release.
    You can roll back using the Creative Cloud Desktop App by clicking the Apps tab, then scroll down to the Filters and Previous Versions link. That will turn the Install icons into dropdown menus with the available older versions.
    I stopped upgrading DW with CC 2014.0 (last June's release), it has been rock solid for me. That version isn't available through the app though, you would have to download it directly from the link below:
    http://download.adobe.com/pub/adobe/dreamweaver/win/cc/Dreamweaver_14_LS20.exe

  • Fluid Grid problem dreamweaver cc  in IE11

    Site made in dreamweaver cc with fluid grid layout. It looks and works fine in Safari en Google CHrome but the fluid grid does not work in IE11. Someone a solution?  http://www.fvdc.be

    Troubles with the fluid grid not entirely solved.
    The solution was that i imported tables in the Fluid Grid and that was not a good idea!
    At the moment i am one step ahead but still not satisfied with the result.
    The appearance in IE11 looks better, never the less when i reduce the screen size, the layout does not follow all the way.
    Even in Fire Fox, Safari and google chrome.
    There is even an additional problem.
    II do only get one direction right on mobile screens. Vertical or horizontal, but not both.
    In adapting on Dreamweaver, when i set-up one scene size right for horizontal and vertical positioning then the layout of the other screen sizes change as well (in the wrong way)
    In viewing our site you probably understand the problem better then in the explanation in this writing.
    http://www.fvdc.be
    Thanks for all the previous advice and we hope to get an answer to this post!
    Thanks a head, greets from Frank

  • Tabular Grid Problems

    I seems to get endless problems trying to get basic out of the box tabular grids to work. Creating new records are fine but saving updates provide this -
    Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-06550: line 1, column 55: PL/SQL: ORA-00904: "REGION": invalid identifier ORA-06550: line 1, column 18: PL/SQL: SQL Statement ignored ORA-06550: line 1, column 157: PLS-00364: loop index variable 'C2' use is invalid ORA-06550: line 1, column 125: PL/SQL: Statement ignored, update "VDW"."Exec_Region" set "Region#" = :b1, "Region" = :b2
    Error Unable to process update.
    OK
    And delete action provide the following feedback -
    ORA-20001: Error in multi row delete operation: row= 2, ORA-00942: table or view does not exist, delete from "VDW"."EXEC_REGION" where "REGION#" = :p_pk_col
    Error multi row operation failed
    OK
    Does the same for all tables that I tried to rund tabular grids on.
    Anyone seen this before ?
    Edited by: user7116686 on 2010/09/19 12:00 PM

    Hi,
    Is the underlying table in the default parsing schema or some other schema? Looks like the default parsing schema does not have UPDATE and DELETE privilieges to the table.
    Regards,

  • Snap to Grid problem in Illustrator CS4

    I found a weird problem with the "snap to grid" feature in Illustrator CS4 running on MAC OS X Snow Leopard.
    To reproduce it, on my system, it is enough to:
    1. Make sure to have the Snap To Grid enabled (View->Snap to grid)
    2. Draw a rectangle (see BEGIN.JPG)
    3. Select the Direct Selection Tool
    4. Try to increase the width of the rectangle, by dragging one side of the shape (not a single point, but the whole side in a move).
    5. On my system, I see that Illustrator behaves in a wrong way; it is like Illustrator is snapping to a not aligned grid, and the rectangle begins to be distorted (see END.JPG).
    If I try to move a on point at a time, instead of moving one complete side, everything seems to works fine.

    Win Vista 64-bit AI CS4.  Can't seem to reproduce your issue.  I drag on the right side of a rectangle with grid snap on and show grid and it snaps exactly to the grid, not anywhere in between even if I start with a rectangle that was created "not-on-grid".  When it snaps it snaps to distances equal to the grid spacing, though it won't snap to the grid itself.  It's as if it snaps to its own internal grid.  I guess that's a problem in and of itself since once you have grid snapping turned on no matter where the original rectangle was you would like it to snap to the grid lines.
    EDIT:  Now I see how you created the problem--with direct selection (white arrow) as opposed to full selection with bounding box (black arrow).  Black arrow selection snaps to its internal grid while white arrow snaps to rhombus-like snapping.  I guess it's designed to be used with individual points and not with edges.  (AI doesn't have edge-snapping).

  • ALV Grid Problem - User command Back Cancel Exit

    Hi Guys,
                 I was trying to use the ALV grid and my problem is, on the grid display, when i try to hit the back button or exit or cancel, then a blank screen appears and i need to hit either back or other buttons one more time to go back to the selection screen.
                 Is there any thing I am missing here? Please suggest me the solution.
    Thanks in advance,
    Srinivas.

    hi srinivas,
    we have 2 options in this case.
    1) i think ur using EVENTS_GET function module. If u use sometimes we are facing this kind of problem. i think accroding to my knowliege its bug in SAP....
    2) See in debug mode what is the user command for this back button everty time USERCOMMAND FOR BACK BUTTON not 'BACK' .If it ios correct plaese add the code for back button in user command event.
    if u dont want to face that problem remove that events_get fm and write the code manually. i am not sure abt ur code.
    i hope u got the point what i am saying.
    Thanks,
    Maheedhar

  • CS6 grid problem

    when im  using photoshop cs6 I turn on the grid an set the width and height of the grid to be 1 pixel by 1 pixel. However, the grid shows up as what looks like 0.4 of a pixel

    Might be helpful to describe what version you have, what OS you're running it on, and some other info about your system, including video card, disiplay driver version...
    I can't reproduce that.  It shows up a full pixel size for me (I'm running 13.0.1).
    Do you see the same thing if you turn off the grid (View - Show - (uncheck) Grid), and turn on the Pixel Grid?
    Seems to me there were some problems seen with the Eyedropper tool introduced in 13.0.2 and 13.1 where it wouldn't sample properly, seeming to find more than one value inside the same pixel.  I wonder if that could be related.  If it is, I'm sure Adobe knows about it; perhaps the fix is already in the works.
    -Noel

  • UDO...Adding records..grids problems...

    Hi all,
    i developed an UDO bounded to a custom B1 Form, which handles a couple of text fields bounded to user datafields.
    In this form there is also a grid bounded to a DataSource  which takes data from a query. The enabled property of the grid is off thus to only display tabular data.
    The problem is that when i click on new button (to add a new record) the grid becomes automatically cleared.
    The problem is the same if i use a matrix, always bounded to a DataSource , and also if it is bounded to userdatasources.
    Why this ? Is there a workaround ?
    Thanks in advance.
    Best regards.

    Hi Anoop,
    the question i posted is that i don't understand why UDO needs to clear all data in the form, instead to clear only data related to UDO. The grid in the form shows results from a query in another tables, not related with UDO.
    Plus the grid in readonly mode.
    I think it' s only an UDO problem, and SAP should provide the solution.
    Thanks for you answer.
    F.

  • Grid problem in MVC Kendo Grid view

    Hi,
    I have a Problem on Update In Kendo Grid.I have a grid that has "popup" editing.  The problem is that if I click Cancel in the popup dialog,
    the record being edited is deleted..
    And another problem, When i click Delete button but the function will go on Create in server side why this problem.my coding is
       @(Html.Kendo().Grid<Explorer.Models.TdsModel>()
              .Name("termGrid")
              .HtmlAttributes(new { style = "width: 100%; height:550px" })
              .Columns(columns =>
                  columns.Bound(c => c.TDSName).Title("Training Data Set").Width("15%");
                  columns.Bound(c => c.TDSShortName).Title("Short Name").Width("15%");
                  columns.Bound(c => c.CreatorName).Title("Owner").Width("15%");
                  columns.Command(command => { command.Edit(); command.Custom("Delete").Text("<span class='k-icon k-delete'></span>Delete").Click("openWindow"); }).Width(160);
              .ToolBar(toolbar =>
                  toolbar.Create();
              .Editable(editable => editable.Mode(GridEditMode.PopUp).TemplateName("ManageTdsPopup").DisplayDeleteConfirmation(false))
              .Resizable(resize => resize.Columns(true))
              .Sortable()
              .Selectable(selectable => selectable.Mode(GridSelectionMode.Single))
              .Scrollable(scrollable => scrollable.Virtual(true))
              .DataSource(dataSource => dataSource
                  .Ajax()         
                  .Batch(true)
                  .ServerOperation(false)
                      .PageSize(20)
                  .Model(model => model.Id(p => p.Id))
                  .Create("Tds_Create", "Admin")
                  .Update("Tds_Update", "Admin")
                  .Destroy("Tds_Destroy", "Admin")
                  .Read(read => read.Action("GetTds", "Admin")))
              .ColumnResizeHandleWidth(6)
    Karthikn.s

    Hi Karthikeyan,
    In my opinion, this thread is related to ASP.NET forum. So please post thread on that forum for more effective response. Thank you for understanding. Please refer to the following link.
    http://forums.asp.net/.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SAPGUI for JAVA 7.00 rev 5 - ALV grid problem

    Hello all,
    I've created simple program using editable ALV grid to edit custom database table in the dictionary.
    After upgrading to rev 5 I can't delete any row from the grid. After clicking the minus sign on the grid toolbar nothing happens. In the release note for the rev. 5 is written that protected rows can be no longer deleted. But I haven't written any code to protect any row in the grid.
    When run on SAPGUI 7.00 rev 4 or SAPGUI for windows 7.10 it works.
    Thanks for any help.

    Hello Petr,
    both in "BCALV_GRID_EDIT" and in "BCALV_GRID_VERIFY" which we use as testreports for editable ALV grid, I can select a line and delete it using the the "delete line" icon in the grid's toolbar running SAP GUI for Java 7.00 rev 5.
    Can you somehow reproduce the issue with the mentioned reports (playing with the options)?
    Otherwise we would need access to your custom program. Then it would be helpful if you could <a href="http://service.sap.com/message">create a message</a> on component BC-FES-JAV and make your system available to us.
    Best regards
    Rolf-Martin

  • ALV Grid: Problem with errors

    Hi,
      Many of you must have definitely experienced this problem.
    I have some default rows on ALV screen for user to enter data.
    Say field1, field2 are in the fields list. Now if user puts values in field2, I consider that as a change and I validate entire row. Say field1 is mandatory. I show an error on field1 when field2 has been changed by adding protocol entry.
    Now if user changes different row and presses enter, mod_cells does not contain entries related to field1 for first row even though protocol contains errors for field1 on first row. Because of this, first row is not getting validated again.
    I added adding an entry in mod_cells for field1. It does not seem to work.
    Please let me know if you have any solution for this problem.
    Thanks.
    Srinivas.

    Hi Aaron,
    set_selected_cells or so is the method. then user is positioned at the error cell.
    regards,
    Clemens

  • Alv grid problem  quantity zero not displaying

    Hi
    i am displaying quantity fields kwmeng and bmeng in alv, in code am subtracting the two quantities,
    the final subtracted value is displaying in alv when it is >0, when it is equal to zero ,it is displaying blank .
    Thanks
    Srini

    Hi Srinivas,
    See this link, it ll help you.
    Value Display with Currency/Quantity Unit - ALV Grid Control - SAP Library
    Cheers,
    pravin

Maybe you are looking for

  • HP LaserJet P4015TN - Windows 7 cannot find on network

    Several months ago we started to get random print jobs with garbled characters that would come out from time to time.  Over time, these events became more frequent and the number of pages printed out increased as well.  Sometimes a whole try of paper

  • Password Protected PDF Files in Elementary OS

    I have installed Acrobat 9.5.5 on my Elementary OS (Ubuntu base) system but when I try to open a password protected PDF file from my bank Acrobat fails with the error "There was an error opening this document. An updated version of Acrobat is needed

  • TableView - IC WebClient

    Hi,   I have a tableview to display records in a view.   When I click to next page and select a row. The Tableview is refresh and go back to first page.   Is there any method to hold that page? So that whenever I select what ever row, it refresh but

  • Why does my mouse pointer change from a hand to a downward facing arrow sometimes?

    why does my mouse pointer change from a hand to a downward facing arrow sometimes?

  • Editing text in web dynpro

    hi, how can we edit text(bold the text) dynamically and not through properties in web dynpro?