DIfference Between OOPS ALV and WEBDYNPRO FOR ABAP ALV?

Hi to All,
i want some information that What is main difference when we develop ALV Report in OOPS and WEBDYNPRO For ABAP.which is good n in what way it is good?
In the Same way I m also want know that WHICH IS BETTER AMONG WEBDYNPRO FOR JAVA/ABAP.In which way?
Regards,
Ravi K

Thanku for ur valuble Information.
could u give me information regarding OOPS ALV and WEBDYNPRO FOR ABAP ALV?which is better?is there differences?
Edited by: ravi k on Mar 26, 2008 12:23 PM

Similar Messages

  • Diff between BSP and WEBDYNPRO FOR ABAP?

    Hi All,
    can anyone let me know the Difference between BSP's and WEBDYNPRO FOR ABAP.
    Regards,
    Ravi

    Hi Ravi,
    In truth, Web Dynpro contains many of the enhancements than BSPs....like built-in value-help and select options...... they
    will become standard in Web Dynpro. But these can also be added to BSPs also.
    There are several architectural differences between BSP and WDA. WDA has some advanced features but more restrictive framework compared to BSP.
    WDA is stateful only. While BSP supports both stateful and stateless programming models.
    WDA doesn't aloow us to use our own custom HTML, JavaScript or other controls. To provide compatibility the rendering logic is completely hidden from the developer.
    On the other hand, BSP has no such restrictions and allows an extreme level of custom rendering. This makes BSP a perfect platform for applications that require pixel-perfect layout or specialized UI elements.

  • Any difference between webdynpro for java and webdynpro for abap ?

    Hi all:
       I would like to build one small system in EP.
       I can choose to use webdynpro for java and webdynpro for abap.
       I would like to ask any major difference between webdynpro for abap and webdynpro for java ?
       Is fpm supported in webdynpro for abap ?

    Hi,
    see this thread,
    ABAP Vs JAVA WebDynpro
    Regads,
    J.Joe

  • What is the  difference between list display and grid display in alv report

    Hai genious
    i am a new of the abap, i dont know the alv report, i have a small doubt, can u please tell me  what is the main difference between list display and grid display in alv report
    thanks&regards
    chinnu

    Hi ,
    1. For all practical purposes, they are the same.
    2. Some differences:
    a) from abap coding point of view,
    alv list is done with Function modules,
    alv gris can also be done with FM,
    but can also be done using OO concepts.
    b) Alv grid (using oo concept) requires
    designing the screen layout .
    Hence, in one screen, we can show more
    then one alv grid
    (we cannot show more than
    one alv list on one screen)
    c) ALV grid uses ActiveX controls
    present on the Presentation Server.
    Hence, it consumes More Memory
    on the presentation server.
    d) ALV LIST is Display Only.
    Whereas
    ALV Grid Can Be made EDITABLE for entry purpose.
    e) In alv grid, these options are possible,
    but not in alv list.
    without horizontal lines
    without vertical lines
    without cell merging during sorts
    display total lines above the entries
    I hope it helps.
    Regards,
    Mamta
    Edited by: Mamta Verma on Nov 27, 2008 6:41 AM

  • Issue regarding cell action in webdynpro for abap alv

    hello gurus,
           i have one requirement in webdynpro for abap alv.i have one alv table in that i have one coloun employee name.
    for that i have provided F4 help and that is editable field.if i select value from F4 help it is getting value correctly and it is showing properly at the same time it is allowing values entered manually insted of from F4 help.but as per my requiremnet it should not allow any manually entered values.how can i get this functinality. i am not aware indepth od WDA.
    could you go through my isssue and could you revert me some solution.
    thanks in advance.

    Hi,
       I dont think this is possible because when you can change the value using F4 then it would obviously be
       possible to enter manually.
       You can try using a drop down instead because in drop down you cannot enter values manually,
       But this would be good if the values that can be shown in drop down are very low, if the values are more
       then again user will face problems selecting values.
       Else you can try out what srinivas suggested, But dont know whether we can have two cell editors at a time
       inside a single cell of ALV. Please post the answer if you have found any other way to do it.

  • How to make cell editable alv in WebDynpro for ABAP?

    I make Column editable ALV.(See under source code)
    But I can't make Cell editable ALV.
    How to make Cell editable ALV in WebDynpro for ABAP?
    and..how to get changed data?
    DATA: l_value TYPE REF TO cl_salv_wd_config_table.
      l_value = l_ref_interfacecontroller->get_model( ).
    * { EDITABLE
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_input_field     TYPE REF TO cl_salv_wd_uie_input_field,
            lr_column          TYPE REF TO cl_salv_wd_column.
      lr_column_settings ?= l_value.
      lr_column = lr_column_settings->get_column( 'TOTAL_COUNT' ).
      CREATE OBJECT lr_input_field
        EXPORTING
          value_fieldname = 'TOTAL_COUNT'.
      lr_column->set_cell_editor( lr_input_field ).
      DATA: lr_table_settings TYPE REF TO if_salv_wd_table_settings.
      lr_table_settings ?= l_value.
      lr_table_settings->set_read_only( abap_false ).

    the code seems to be correct....but where are you writing it?
    put the code in the wddoinit method and it should work.
    have a look at this article..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1

  • WEBDYNPRO FOR ABAP ALV单元格的颜色问题

    WEBDYNPRO FOR ABAP 的 ALV 的某一个字段的单元格,现在需要把单元格的边框的颜色,改成红色,请问大家有做过的吗?

    看一看:http://wiki.sdn.sap.com/wiki/display/Snippets/ABAPWebDynproALV-ChangeCellColourbasedonContent

  • WDA: TreeByNestingTableColumn and ALV in webdynpro for ABAP

    Hi,
    1) I am trying to implement a tree with nested structure and multiple columns. I am using RecursionNode in the context and UI element TreeByNestingTableColumn. I am not able to figure out how to make a distinction between the key and parent key. In TreeByKeyTableColumn, we use key and parent key to differentiate. Is there any link which explains how to implement TreeByNestingTableColumn in Webdynpro for ABAP? (I got a link for webdynpro for java though).
    2) Can ALV be used to implement a tree structure instead of using Table with TreeByNestingTableColumn or TreeByKeyTableColumn? Then I would be readily able to use ALV features like sort etc. If it can be used is there any link which explains how to do it in Webdynpro for ABAP?

    Hi Srinivasa,
    I can answer the first point. If you use a recursive node and TreeByNestingTableColumn, there is no need to have a rowKey and parentRowKey, since the recursion with the context already defines the hierarchy. As far as I know someone posted a blog that explains how to use the TreeByNestingTableColumn in Web Dynpro Java. I don't have the link available, but this blog would be good place to start. The implementation in WDA and WDJ is pretty much the same here.
    Kind regards,
    Thomas

  • In webdynpro for ABAP  alv table issue

    hello gurus,
                      i am new for webdynpro for ABAP.i strucked at one point at designing time.anybody  could you suggest me on this.
    thanks in advance.
    let me explain my scenario first.
    in my webdynpro for ABAP developement i have one alv table having ten fields.i am featching the data for eight fields from one Ztabale and updating , for rest of two fields we need to fill after displaying output using the respective F4 help. Right now these two fields are in input editable mode.now i am getting the values successfully from F4 help and at the same time it is allowing MANUAL ENTRIES also but as per my requirement it  should not allow  any manual entries . for this i have made these two fields are in readonly mode as like as rest of fields to avoid the MANUAL ENTRIES  but at this time i didnot get any F4 helpfor those two fields.
    so how can i achive my goal in this thing could any one suggest me.
    my final conclusion is we need to get only F4 help values into those two fields . it should not allow any manual values at any point of time.
    best regards,
    babu

    ya hi  harshit,
          my self also used same code in my action part . here i have one table with four fields  carrid , connid , fldate , price.
    for carrid i have created freely programmed search help.but if it is in display mode there is no F4 help in enable mode.
    in context for attribute carrid
    DATA lo_nd_flight TYPE REF TO if_wd_context_node.
      DATA lo_el_flight TYPE REF TO if_wd_context_element.
      DATA ls_flight TYPE wd_this->element_flight.
      DATA lt_flight TYPE wd_this->elements_flight.
    navigate from <CONTEXT> to <FLIGHT> via lead selection
      lo_nd_flight = wd_context->get_child_node( name = wd_this->wdctx_flight ).
      select connid fldate price from sflight into CORRESPONDING FIELDS OF TABLE
        lt_flight UP TO 20 ROWS.
    @TODO handle non existant child
    IF lo_nd_flight IS INITIAL.
    ENDIF.
    get element via lead selection
    lo_el_flight = lo_nd_flight->get_element( ).
    alternative access  via index
    lo_el_flight = lo_nd_flight->get_element( index = 1 ).
    @TODO handle not set lead selection
    IF lo_el_flight IS INITIAL.
    ENDIF.
    get all declared attributes
    lo_el_flight->get_static_attributes(
       IMPORTING
         static_attributes = ls_flight ).
    CALL METHOD lo_nd_flight->bind_table
      EXPORTING
        new_items            = lt_flight
       set_initial_elements = ABAP_TRUE
       index                =
    DATA: lo_cmp_usage TYPE REF TO if_wd_component_usage.
    DATA: lo_interfacecontroller TYPE REF TO iwci_salv_wd_table.
        instantiate ALV component usage if necessary
      lo_cmp_usage = wd_this->wd_cpuse_alv( ).
      IF lo_cmp_usage->has_active_component( ) IS INITIAL.
        lo_cmp_usage->create_component( ).
      ENDIF.
        pass reference to data node to instance of ALV usage
      lo_interfacecontroller = wd_this->wd_cpifc_alv( ).
      lo_interfacecontroller->set_data( r_node_data = lo_nd_flight ).
    Configure ALV
      DATA lr_config TYPE REF TO cl_salv_wd_config_table.
      lr_config = lo_interfacecontroller->get_model( ).
    **declerations
      DATA: lt_columns TYPE salv_wd_t_column_ref,
            ls_columns TYPE salv_wd_s_column_ref,
            lr_input TYPE REF TO cl_salv_wd_uie_input_field,
            name TYPE string,
            lt_node_info TYPE wdr_context_attr_info_map,
            ls_node_info TYPE wdr_context_attribute_info,
            lv_tabix TYPE sy-tabix,
            lr_info TYPE REF TO if_wd_context_node_info.
      TYPES: BEGIN OF ty_name,
              name TYPE string,
             END OF ty_name.
      DATA: lt_name TYPE TABLE OF ty_name,
            ls_name TYPE ty_name.
    **for getting node info
    *Get the context node information
      lr_info = lo_nd_flight->get_node_info( ).
      lt_node_info = lr_info->get_attributes( ).
      LOOP AT lt_node_info INTO ls_node_info.
        CASE ls_node_info-name.
          WHEN 'CARRID'.
            ls_name-name = ls_node_info-name.
            APPEND ls_name TO lt_name.
         WHEN 'REGIONALOFFICER'.
           ls_name-name = ls_node_info-name.
           APPEND ls_name TO lt_name.
         WHEN 'INSPECTORNAME'.
           ls_name-name = ls_node_info-name.
           APPEND ls_name TO lt_name.
        ENDCASE.
      ENDLOOP.
    *Logic for  Table Horizontal Scrolling
      lr_config->if_salv_wd_table_settings~set_visible_row_count( 13 ).
      "  lr_config->if_salv_wd_table_settings~set_width( '1085' ).
      lr_config->if_salv_wd_table_settings~set_width( '100%' ).
      lr_config->if_salv_wd_table_settings~set_scrollable_col_count( 8 ).
      "  lr_config->if_salv_wd_table_settings~set_fixed_table_layout( abap_true ).
      lr_config->if_salv_wd_table_settings~set_first_visible_scroll_col( 'CARRID' ).
      lr_config->if_salv_wd_table_settings~set_cell_action_event_enabled( abap_true ).
    Set the table editable .
      DATA: lr_table_settings TYPE REF TO if_salv_wd_table_settings.
      lr_table_settings ?= lr_config.
      lr_table_settings->set_read_only( abap_false ).
      lr_table_settings->set_read_only( abap_true ).
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lt_string TYPE STANDARD TABLE OF string,
            ld_string TYPE string,
            ld_int TYPE i,
            lv_index TYPE i.
    Make few columns editable and attach inputfield, if permitted.
        DATA lr_input_field TYPE REF TO cl_salv_wd_uie_input_field.
        CLEAR lt_string.
        APPEND 'CARRID' TO lt_string.
        LOOP AT lt_string INTO ld_string.
          lr_column_settings ?= lr_config.
          lr_column = lr_column_settings->get_column( ld_string ).
          CREATE OBJECT lr_input_field
            EXPORTING
              value_fieldname = ld_string.
          lr_input_field->set_read_only( abap_true ).
          lr_column->set_cell_editor( lr_input_field ).
        ENDLOOP.
        CLEAR lt_string.

  • Differences between reports LL01 and LS24 for negative stock

    Dear friends,
    Could you tell me the difference between the reports " Warehouse Activity Monitor" (LL01) and "Stock Per Material" (LS24)..
    When the negative stock option is chosen ,LL01 is not displaying certain materials with the negative stock.However these materials with the negative stock are displayed in the report LS24.
    What could be the reasons?
    Thanks.
    Regards,
    Krishnan.

    Hi
    There are a couple of things to tell you here.
    Firstly LS24 - This shows one material only and you will see where this material is all over the warehouse.
    Secondly there is an alternative if you want to see all materials and that is LX02 and in the st type field put *** and you will see everything in the warehouse and if you sort on the available qty field (descending I think but try both) all of your negatives will come to the top of the screen with the largest negative first.
    Thirdly LL01 This will only show negative stocks for the storage types that have been included in the configuration for this. Also the negatives in LL01 will only appear after the amount of time you have set in the congiguration whereas in LS 24 you will see them immediately.
    So for instabce if you set st type XXX to show negatives after 24 Hours you will not see them in LL01 for 24 Hours but they will be in LS24 AND LX02 immediately.
    This does not mean that LL01 is wrong just that youi need to make some adjustments in the config and be clear as to what you want to see and when.
    I hope that this helps

  • Difference Between Using MVC And SwingUtilities For GUI Component Update

    Hi Guys,
    What are the difference of using the MVC (Model View Controler) pattern to update GUI and using the SwingUtilities of doing the same job?
    Are there any big differences or shortcomings of any?
    Thanks.

    kap wrote:
    Hi Guys,
    What are the difference of using the MVC (Model View Controler) pattern to update GUI and using the SwingUtilities of doing the same job?
    Are there any big differences or shortcomings of any?
    Thanks.Your question is akin to asking, "What's the difference between using a car to get somewhere versus stepping on the gas pedal to do the same job?"
    The use of SwingUtilities to update the "view" only pertains to updating components in a thread-safe manner, it has nothing to do with MVC. MVC would govern when the view gets updated (i.e. after the model changes), while SwingUtilties would be used to specify how the view gets updated.

  • BPM and webdynpro for ABAP

    Dear All,
    I am new to BPM and wanted to understand that is there any linking in Web dynpro for abap and BPM or WD for JAVA can only be used in BPM. Also can somebody help me with the stztart document which tells about transaction and SAP netweaver step by step process for creating SAP BPM application. The BPM workflow, how it is connected to SAP at backend.
    Thanks in Advance!
    Regards
    Naveen

    Hi Naveen,
    Netweaver BPM is shipped as part of Netweaver Composition Environment starting version 7.1 EHP1 and now CE 7.2 is also out. It wont be possible to run on ABAP stack. Also if you want to start learning then you may start with the following links:
    /people/arafat.farooqui/blog/2009/08/05/part-i-an-introduction-to-sap-netweaver-bpm
    http://www.sdn.sap.com/irj/sdn/bpmc
    Hope this helps!!
    Cheers,
    Arafat

  • Differences between Acrobat 8 and 9 for Comparing two document

    Hi,
    We have huge differences in Acrobat 8 and 9 while doing comparing the two document even both the text are identical. Acrobat 8 comparison document is very easy and effective when compare to Acrobat 9.
    I have attached the Acrobat 9 and 8 comparison screenshots.
    Can we have any other method in Acrobat 9 Professional to show exact text mismatch?
    Thanks & Regards,
    Sudhakar

    Can any one help me in this regards?
    Thanks in Advances
    Sudhakar

  • Webdynpro for ABAP ALV问题

    我想在ALV加控制行翻页的,IF_SALV_WD_TABLE_SETTINGS~SET_DISPLAY_EMPTY_ROWS( abap_true ).
    但就是不出来,还是只有旁边的下拉,请教大家怎么做?

    你提到那个ALV的翻页控制行在新版本的Netweaver当中已经被滚动条取代了。SAP是应客户要求改动的。如果你不习惯,可以创建OSS呼吁SAP改回去:-) ,所以设定控制行的相关的方法都失效了。
    如果你非要这个控制行,可以通过设定参数WDLIGHTSPEED和PAGINATOR来实现,但是你将失去大部分Webdynpro新功能,而采用兼容模式运行Webdynpro,严重不推荐。
    建议你要求客户逐渐习惯这个改变。

  • Differences between SAP BO and SAP for Iphone

    Hi,
    Can someone tell me where I can see the relation of the releases between SAP Business one and the SAP BO for Iphone. Now testing, the stock of an item, the Iphone application is tell me that the release of the SAP server is not compatible with this funcitionality and I have to upgrade.
    The point is that I just upgrade the customer, form 2007 to 8.8 PL19, and I don't really know if I only have to upgra the B1i and in which PL, or I have to meka the upgrade of all the components of SAP BO.
    the release of the SAP for Iphone implemented is 1.2.0.
    Thanks,
    Cristian Moreno

    Hi Cristian,
    the recent docu for the App should give you the relevant info ([http://service.sap.com/sapidp/011000358700000483052011E/B1_MobileApp_Guide.pdf|http://service.sap.com/sapidp/011000358700000483052011E/B1_MobileApp_Guide.pdf]).
    These latest functions of Version 1.2.0 (like stock per warehouse) of our SAP Business One Mobile Application require SAP Business One backend on Minor Release 8.81, Patch Level 05.
    For reasons of backward compatibility mentioned system info has been installed.
    regards, peter

Maybe you are looking for

  • Nokia 1020 lumia camera issue (and flashlight X)

    Hello! I do not know this absolutely but I noticed after I downloaded a couple of updates, including an update to Flashlight X, on my nokia 1020 that it suddenly started taking pictures on its own back to back with out stopping. The phone also got wa

  • Getting the email of the first owner of an iphone,

    Im new to  iphone 5S, i bought one from a person over internet, when i get the iphone, i foud it locked by icould, im  not in same country where the iphone is activated, i ask if  possible to contact the first owner of the iphone (by email). Only wha

  • Downloaded New Version of iTunes, been screwed ever since

    I recently upgraded to the new version and ever since I have not been able to connect to the store. Here is what it shows when I ran the network diagnostic thing in the help menu. Please help. Thanks Microsoft Windows XP Home Edition Service Pack 2 (

  • MIRO - Intermediate GL account

    Dear Gurus, In standard MIRO the system passes the following transaction Dr GR/IR account Cr. Vendor Account. I want this transaction to be split two transaction and should go to an intermediate GL account. So the entry should be - 1. DR GR/IR accoun

  • Getting objects on panel to expand proportionatel

    Hey there. I was wondering what I have to do in order to get the various components on my panel to expand in similar proportions when maximised or dragged to a larger frame size. Thanks Dane